/* ===== CSS Variables ===== */
:root {
    /* Colors - Enhanced Premium Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.5);
    --secondary: #ec4899;
    --secondary-glow: rgba(236, 72, 153, 0.5);
    --accent: #f59e0b;
    --accent-glow: rgba(245, 158, 11, 0.5);
    --success: #10b981;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Neutrals */
    --bg-primary: #0f0f23;
    --bg-secondary: #1a1a2e;
    --bg-tertiary: #16213e;
    --bg-card: rgba(26, 26, 46, 0.8);

    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-tertiary: #71717a;

    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Shadows - Premium Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.4);
    --shadow-glow-secondary: 0 0 40px rgba(236, 72, 153, 0.4);
    --shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--secondary));
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon-btn {
    position: relative;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-icon-btn:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(15, 15, 35, 0.9);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 1.5rem;
    font-weight: 800;
    cursor: pointer;
}

.logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: rgba(26, 26, 46, 0.9);
    border-radius: 8px;
    padding: 4px;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #ffffff;
    /* White */
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -150px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(calc(0px + var(--mouse-x, 0) * 30px), calc(0px + var(--mouse-y, 0) * 30px)) scale(1);
    }

    33% {
        transform: translate(calc(30px + var(--mouse-x, 0) * 30px), calc(-30px + var(--mouse-y, 0) * 30px)) scale(1.1);
    }

    66% {
        transform: translate(calc(-20px + var(--mouse-x, 0) * 30px), calc(20px + var(--mouse-y, 0) * 30px)) scale(0.9);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    opacity: 0;
    /* Start hidden */
    animation: fadeInUp 0.8s ease-out forwards;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    opacity: 0;
    /* Start hidden */
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    /* 0.2s delay */
}

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--primary-light), var(--secondary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradientShift 6s ease infinite;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--spacing-xl);
    animation: slideUp 0.6s ease-out 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-2xl);
    animation: slideUp 0.6s ease-out 0.6s backwards;
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.6s ease-out 0.8s backwards;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid transparent;
    border-radius: 50px;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-glow), var(--secondary-glow));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
    z-index: -1;
}

.feature-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4), 0 0 40px rgba(99, 102, 241, 0.2);
}

.feature-highlight:hover::before {
    opacity: 0.15;
}

/* Unique styling for each badge */
.feature-highlight:nth-child(1) {
    border-image: linear-gradient(135deg, #818cf8, #6366f1) 1;
}

.feature-highlight:nth-child(1):hover {
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5), 0 0 50px rgba(99, 102, 241, 0.3);
}

.feature-highlight:nth-child(2) {
    border-image: linear-gradient(135deg, #10b981, #059669) 1;
}

.feature-highlight:nth-child(2):hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5), 0 0 50px rgba(16, 185, 129, 0.3);
}

.feature-highlight:nth-child(3) {
    border-image: linear-gradient(135deg, #f59e0b, #d97706) 1;
}

.feature-highlight:nth-child(3):hover {
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5), 0 0 50px rgba(245, 158, 11, 0.3);
}

.feature-high.logo-icon {
    width: 50px;
    /* Increased size for better visibility */
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5));
    /* Adds a neon glow */
    border-radius: 8px;
    /* Keep radius for rounded corners on the square image */
}

.feature-highlight-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 15px currentColor);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 15px currentColor);
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 25px currentColor);
    }
}

.feature-highlight:nth-child(1) .feature-highlight-icon {
    color: #818cf8;
}

.feature-highlight:nth-child(2) .feature-highlight-icon {
    color: #10b981;
}

.feature-highlight:nth-child(3) .feature-highlight-icon {
    color: #f59e0b;
}

.feature-highlight-text {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Hero Product Showcase ===== */
.hero-products {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    /* Moved behind content but in front of background */
}

.product-wrapper {
    position: absolute;
    max-width: 280px;
    width: 25vw;
    height: auto;
    z-index: 1;
}

.product-wrapper-1 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

.product-wrapper-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
}

.product-box {
    width: 100%;
    height: auto;
    border-radius: 30px;
    mix-blend-mode: screen;
    transition: all 0.4s ease;
    opacity: 1;
    /* Float animation inside wrapper */
    animation: floatProduct 8s ease-in-out infinite;
    animation-delay: 1s;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.product-box:hover {
    filter: brightness(1.2) drop-shadow(0 30px 60px rgba(99, 102, 241, 0.4));
    /* No scale on hover to avoid conflicting with float */
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate(-100px, -50%);
    }

    to {
        opacity: 0.9;
        transform: translate(0, -50%);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate(100px, -50%);
    }

    to {
        opacity: 0.9;
        transform: translate(0, -50%);
    }
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(2deg);
    }

    50% {
        transform: translateY(-40px) rotate(-2deg);
    }

    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-wrapper {
        opacity: 0.4;
        /* Fade them out on smaller screens so text is readable */
        max-width: 200px;
    }

    .product-wrapper-1 {
        left: 2%;
    }

    .product-wrapper-2 {
        right: 2%;
    }
}

/* Mobile Product Styles */
.mobile-hero-products {
    display: none;
}

@media (max-width: 768px) {
    .hero-products {
        display: none;
        /* Hide desktop floating products */
    }

    .mobile-hide {
        display: none !important;
        /* Hide Learn More button */
    }

    .mobile-hero-products {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 100px;
        /* Slightly reduced from 120px to fit better with new padding */
        width: 100%;
        padding-bottom: 40px;
        /* Add some bottom padding for better scroll feel */
    }

    .mobile-product-img {
        width: 45%;
        max-width: 150px;
        height: auto;
        border-radius: 20px;
        mix-blend-mode: screen;
        animation: floatProduct 8s infinite ease-in-out;
    }

    .mobile-product-img:nth-child(2) {
        animation-delay: 0.5s;
        /* Reduced from 2s to make it start sooner */
    }

    .hero {
        padding-top: 140px;
        /* Push content down to avoid navbar overlap */
        align-items: flex-start;
        /* Start from top + padding, don't center vertically */
        height: auto;
        /* Allow growth */
        min-height: 100vh;
    }

    .hero-content {
        padding-bottom: 60px;
        /* Ensure space at bottom */
    }



    .product-box {
        max-width: 120px;
        opacity: 0.7;
    }

    .product-box-1 {
        left: -3%;
        top: 60%;
    }

    .product-box-2 {
        right: -3%;
        top: 40%;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark), var(--secondary));
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 20px var(--primary-glow);
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 40px var(--primary-glow), 0 0 60px var(--primary-glow);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-20deg);
    animation: shiny 3s infinite;
}

@keyframes shiny {
    0% {
        left: -100%;
    }

    10% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Products Section ===== */
/* ===== Products Section ===== */
.products-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary));
    position: relative;
    overflow: hidden;
}

/* Add a subtle glow/blob behind the section header */
.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, var(--primary-glow), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-xl), 0 0 40px var(--primary-glow);
}

.product-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s infinite;
}

.product-card:hover::after {
    opacity: 0.15;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.product-image {
    width: 100%;
    height: 250px;
    /* Increased height */
    position: relative;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.875rem;
}

.product-plans {
    margin-bottom: var(--spacing-md);
}

.plan-select {
    width: 100%;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.plan-select:hover,
.plan-select:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    outline: none;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    /* Fallback */
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    margin-top: 10px;
    display: block;
    /* Ensure it takes space */
}

.price-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    -webkit-text-fill-color: var(--text-secondary);
    /* Override gradient for hint */
}

/* Product Meta Badges */
.product-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.meta-tag {
    font-size: 0.85rem;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.plan-tag {
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #e0e7ff;
}

.validity-tag {
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #d1fae5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== About Section ===== */
/* ===== Why Choose Vexzo Section ===== */
.about-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
    /* Subtle dark mesh gradient background */
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.08), transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.08), transparent 40%);
}

.about-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: var(--spacing-xl);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Feature Icon Styling */
.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Specific Icon Colors & Glows */
.icon-rocket svg {
    stroke: #6366f1;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
}

.feature-card:hover .icon-rocket {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.3);
}

.icon-shield svg {
    stroke: #10b981;
    filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4));
}

.feature-card:hover .icon-shield {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.icon-wallet svg {
    stroke: #f59e0b;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.feature-card:hover .icon-wallet {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.3);
}

.icon-support svg {
    stroke: #ec4899;
    filter: drop-shadow(0 0 10px rgba(236, 72, 153, 0.4));
}

.feature-card:hover .icon-support {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
}


.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Animation Delays for cards */
.feature-card:nth-child(1) {
    animation: fadeInUp 0.5s ease-out 0.1s both;
}

.feature-card:nth-child(2) {
    animation: fadeInUp 0.5s ease-out 0.2s both;
}

.feature-card:nth-child(3) {
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.feature-card:nth-child(4) {
    animation: fadeInUp 0.5s ease-out 0.4s both;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.contact-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.contact-card p {
    color: var(--text-secondary);
}

/* ===== Footer ===== */
/* ===== Footer ===== */
.footer {
    background: #000000;
    /* Solid black as per reference */
    padding: 60px 0 30px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle top border */
}

/* Main Grid: Brand | Quick Links | Policies */
.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.brand-desc {
    color: #a0a0a0;
    margin-top: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-column {
    flex: 1;
    min-width: 150px;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-column a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

/* Legal Section */
.footer-legal-section {
    margin-top: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.footer-legal-section h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-legal-section p {
    color: #a0a0a0;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.legal-disclaimer {
    max-width: 600px;
    line-height: 1.5;
    color: #888 !important;
    font-size: 0.85rem !important;
}

/* Bottom Section */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.founder-text {
    color: #888;
    margin-top: 5px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand,
    .footer-column {
        width: 100%;
    }
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    max-width: 420px;
    width: 100%;
    animation: modalSlideUp 0.3s ease-out;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.order-summary {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
}

.order-summary h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.summary-item.total {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-weight: 500;
    font-size: 0.8rem;
}

.form-group input {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group small {
    color: var(--text-tertiary);
    font-size: 0.7rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Modal Mobile Adjustments - Ultra Compact */
    .modal {
        padding: 2px;
        align-items: flex-start;
    }

    .modal-content {
        padding: 10px;
        max-width: 100%;
        max-height: 98vh;
        overflow-y: auto;
        margin-top: 5px;
    }

    .modal-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding-right: 30px;
        line-height: 1.2;
    }

    .modal-close {
        width: 26px;
        height: 26px;
        font-size: 1rem;
        top: 6px;
        right: 6px;
    }

    .order-summary {
        padding: 6px 8px;
        margin-bottom: 8px;
    }

    .order-summary h3 {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .summary-item {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    .summary-item.total {
        font-size: 0.95rem;
        margin-top: 6px;
        padding-top: 6px;
    }

    .checkout-form {
        gap: 8px;
    }

    .form-group {
        gap: 3px;
    }

    .form-group label {
        font-size: 0.7rem;
        font-weight: 500;
    }

    .form-group input {
        padding: 6px 8px;
        font-size: 16px;
        /* Prevent zoom on iOS */
    }

    .form-group small {
        font-size: 0.6rem;
        margin-top: 2px;
    }

    .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        margin-top: 4px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Navbar */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0 !important;
        display: flex !important;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-link::after {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.discount-badge {
    background: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .modal-content {
        padding: var(--spacing-md);
    }
}

/* ===== Hero Decorations - Rising Bubbles ===== */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bubbles-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bubbles-container span {
    position: relative;
    width: 15px;
    height: 15px;
    background: #4fc3dc;
    margin: 0 4px;
    border-radius: 50%;
    box-shadow: 0 0 0 10px #4fc3dc44, 0 0 50px #4fc3dc, 0 0 100px #4fc3dc;
    animation: bubbleAnimate 15s linear infinite;
    animation-duration: calc(125s / var(--i));
    opacity: 0;
    /* Start invisible */
}

.bubbles-container span:nth-child(even) {
    background: #ff2d75;
    box-shadow: 0 0 0 10px #ff2d7544, 0 0 50px #ff2d75, 0 0 100px #ff2d75;
}

@keyframes bubbleAnimate {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bubbles-container span {
        width: 10px;
        height: 10px;
        margin: 0 2px;
        box-shadow: 0 0 0 5px #4fc3dc44, 0 0 20px #4fc3dc;
    }

    .bubbles-container span:nth-child(even) {
        box-shadow: 0 0 0 5px #ff2d7544, 0 0 20px #ff2d75;
    }
}

/* ===== Hero Stats (Social Proof) ===== */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    margin-top: 20px;
    opacity: 0;
    animation: slideUp 0.6s ease-out 1s backwards, fadeInUp 0.8s ease-out 1s forwards;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Hero Stats Icons */
.stat-icon-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Product Image Hover - Premium Lift Effect */
.details-image {
    perspective: 1000px;
    transition: transform 0.5s ease;
}

.details-image img {
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy feel */
    will-change: transform, box-shadow;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.details-image:hover img {
    transform: translateY(-15px) scale(1.02);
    /* Explicit lift up */
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(99, 102, 241, 0.2);
    /* Colored glow */
    border-color: rgba(255, 255, 255, 0.3);
}

/* Badge Pulse */
.product-badges .badge:last-child {
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 15px 0 rgba(16, 185, 129, 0.2);
        transform: scale(1.05);
    }
}

/* Meta Tag Hover */
.meta-tag {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-tag:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Price Glow */
@keyframes priceGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        transform: scale(1);
    }

    50% {
        text-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
        transform: scale(1.02);
    }
}

.details-price {
    animation: priceGlow 3s infinite ease-in-out;
    display: inline-block;
    /* Required for transform */
}

.stat-users {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.stat-star {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.stat-shield {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Hover Effects */
.stat-item:hover .stat-users {
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
    transform: scale(1.05);
}

.stat-item:hover .stat-star {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    transform: scale(1.05) rotate(5deg);
}

.stat-item:hover .stat-shield {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .bubbles-container span {
        width: 10px;
        height: 10px;
        margin: 0 2px;
        box-shadow: 0 0 0 5px #4fc3dc44, 0 0 20px #4fc3dc;
    }

    .bubbles-container span:nth-child(even) {
        box-shadow: 0 0 0 5px #ff2d7544, 0 0 20px #ff2d75;
    }

    .hero-stats {
        display: none;
        /* Hide on mobile as requested, or stack if preferred later */
    }
}

/* Skeleton Loading for Product Cards */
.skeleton {
    background: #1f2937;
    animation: skeletonPulse 2s infinite ease-in-out;
    border-radius: 8px;
}

@keyframes skeletonPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.product-card-skeleton {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    /* Match product image height */
    background: #1f2937;
}

.skeleton-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.skeleton-title {
    height: 24px;
    width: 80%;
}

.skeleton-text {
    height: 16px;
    width: 60%;
}

.skeleton-badges {
    display: flex;
    gap: 10px;
}

.skeleton-badge {
    height: 20px;
    width: 60px;
    border-radius: 50px;
}

.skeleton-price {
    height: 32px;
    width: 40%;
    margin-top: auto;
    /* Push to bottom */
}

.skeleton-btn {
    height: 40px;
    width: 100%;
    margin-top: 15px;
}

/* ===== Skeleton Loader - Product Details ===== */
.details-skeleton-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.skeleton-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    /* Square-ish */
    border-radius: 20px;
    background: #252540;
    position: relative;
    overflow: hidden;
}

.skeleton-shimmer {
    position: relative;
    overflow: hidden;
    background: #252540;
}

.skeleton-shimmer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: shimmer 1.5s infinite;
    transform: translateX(-100%);
}

.skeleton-info-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skeleton-line {
    border-radius: 4px;
    background: #252540;
}

.skeleton-title {
    height: 60px;
    width: 80%;
    border-radius: 8px;
}

.skeleton-price {
    height: 50px;
    width: 30%;
    border-radius: 8px;
}

.skeleton-badges-row {
    display: flex;
    gap: 10px;
}

.skeleton-badge {
    height: 30px;
    width: 120px;
    border-radius: 50px;
}

.skeleton-desc-line {
    height: 16px;
    width: 100%;
    margin-bottom: 5px;
}

.skeleton-desc-line.short {
    width: 70%;
}

.skeleton-btn {
    height: 56px;
    width: 100%;
    border-radius: 12px;
    margin-top: 20px;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@media (max-width: 768px) {
    .details-skeleton-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .skeleton-img-box {
        aspect-ratio: 16/9;
    }
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-bottom: 15px;
}

.price-row {
    display: flex;
    align-items: center;
    /* Aligns the strikethrough price with the big price nicely */
    gap: 12px;
}

.original-price-tag {
    color: #94a3b8;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.selling-price-tag {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.discount-bar {
    background: linear-gradient(90deg, #ff4d94, #6366f1);
    /* Pink to Blue Mix */
    color: white;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(255, 77, 148, 0.4);
    text-transform: uppercase;
}