
      /* ===== CSS RESET & VARIABLES ===== */
      *,
      *::before,
      *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      :root {
        --primary: #6366f1;
        --primary-light: #818cf8;
        --primary-dark: #4f46e5;
        --accent: #6366f1;
        --accent-light: #a5b4fc;
        --surface: #ffffff;
        --surface-alt: #f8fafc;
        --surface-dark: #0f172a;
        --text: #1e293b;
        --text-muted: #64748b;
        --text-light: #f1f5f9;
        --border: #e2e8f0;
        --gradient-hero: linear-gradient(
          135deg,
          #0f172a 0%,
          #1a1a2d 40%,
          #1e224a 100%
        );
        --gradient-accent: linear-gradient(135deg, #6366f1, #818cf8);
        --gradient-warm: linear-gradient(135deg, #3b82f6, #6366f1);
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
        --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
        --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 20px;
        --radius-xl: 28px;
      }

      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }

      body {
        font-family:
          "Inter",
          system-ui,
          -apple-system,
          sans-serif;
        color: var(--text);
        background: var(--surface);
        line-height: 1.6;
        overflow-x: hidden;
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      img {
        max-width: 100%;
        display: block;
      }

      /* ===== UTILITY ===== */
      .container {
        max-width: 1240px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* ===== SCROLL ANIMATIONS ===== */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition:
          opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-left {
        opacity: 0;
        transform: translateX(-60px);
        transition:
          opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-left.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-right {
        opacity: 0;
        transform: translateX(60px);
        transition:
          opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-right.visible {
        opacity: 1;
        transform: translateX(0);
      }
      .reveal-scale {
        opacity: 0;
        transform: scale(0.9);
        transition:
          opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-scale.visible {
        opacity: 1;
        transform: scale(1);
      }
      .stagger-1 {
        transition-delay: 0.1s;
      }
      .stagger-2 {
        transition-delay: 0.2s;
      }
      .stagger-3 {
        transition-delay: 0.3s;
      }
      .stagger-4 {
        transition-delay: 0.4s;
      }
      .stagger-5 {
        transition-delay: 0.5s;
      }
      .stagger-6 {
        transition-delay: 0.6s;
      }

      /* ===== NAVBAR ===== */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(226, 232, 240, 0.6);
        transition: all 0.4s ease;
      }
      .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow-md);
      }
      .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
      }
      .navbar-logo {
        display: flex;
        align-items: center;
      }
      .navbar-logo img {
        height: 44px;
        width: auto;
      }
      .navbar-links {
        display: flex;
        align-items: center;
        gap: 4px;
        list-style: none;
        white-space: nowrap;
      }
      .navbar-links > li {
        position: relative;
      }
      .navbar-links > li > a {
        padding: 8px 14px;
        border-radius: 100px;
        font-weight: 500;
        font-size: 0.88rem;
        color: var(--text);
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .navbar-links > li > a svg.chevron {
        width: 14px;
        height: 14px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
      }
      .navbar-links > li:hover > a svg.chevron {
        transform: rotate(180deg);
      }
      .navbar-links > li > a:hover,
      .navbar-links > li:hover > a {
        color: var(--primary);
        background: rgba(99, 102, 241, 0.06);
      }

      /* Dropdown */
      .dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        min-width: 220px;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 100;
        white-space: nowrap;
      }
      .dropdown::before {
        content: "";
        position: absolute;
        top: -8px;
        left: 0;
        right: 0;
        height: 8px;
      }
      .navbar-links > li:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
      }
      .dropdown a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 20px;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--text);
        transition: all 0.25s ease;
        border-radius: 0;
      }
      .dropdown a:hover {
        background: rgba(99, 102, 241, 0.06);
        color: var(--primary);
        padding-left: 24px;
      }
      .dropdown a svg {
        width: 16px;
        height: 16px;
        color: var(--text-muted);
        flex-shrink: 0;
        transition: color 0.25s ease;
      }
      .dropdown a:hover svg {
        color: var(--primary);
      }
      .navbar-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }
      .navbar-search {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        border: 1.5px solid var(--border);
        border-radius: 100px;
        background: var(--surface-alt);
        transition: all 0.3s ease;
        cursor: pointer;
      }
      .navbar-search:hover,
      .navbar-search:focus-within {
        border-color: var(--primary-light);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
      }
      .navbar-search input {
        border: none;
        outline: none;
        background: transparent;
        font-size: 0.85rem;
        width: 130px;
        color: var(--text);
        font-family: inherit;
      }
      .navbar-search svg {
        width: 16px;
        height: 16px;
        color: var(--text-muted);
        flex-shrink: 0;
      }
      .icon-btn {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 100px;
        font-size: 0.88rem;
        font-weight: 500;
        color: var(--text-muted);
        transition: all 0.3s ease;
        cursor: pointer;
        background: none;
        border: none;
        font-family: inherit;
      }
      .icon-btn:hover {
        color: var(--primary);
        background: rgba(99, 102, 241, 0.06);
      }
      .icon-btn svg {
        width: 18px;
        height: 18px;
      }
      .btn-cart {
        background: var(--gradient-accent);
        color: #fff !important;
        padding: 8px 20px;
        font-weight: 600;
      }
      .btn-cart:hover {
        background: var(--gradient-warm);
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
      }
      .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
      }
      .mobile-menu-btn svg {
        width: 26px;
        height: 26px;
        color: var(--text);
      }

      /* ===== HERO ===== */
      .hero {
        position: relative;
        min-height: 90vh;
        display: flex;
        align-items: center;
        background: var(--gradient-hero);
        overflow: hidden;
        padding-top: 72px;
        padding-bottom: 40px;
      }
      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 80% 60% at 70% 40%,
            rgba(99, 102, 241, 0.3) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 60% 50% at 20% 80%,
            rgba(6, 182, 212, 0.2) 0%,
            transparent 60%
          );
        pointer-events: none;
      }
      /* Animated floating orbs */
      .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        animation: orbFloat 8s ease-in-out infinite;
      }
      .hero-orb-1 {
        width: 500px;
        height: 500px;
        background: rgba(99, 102, 241, 0.25);
        top: -10%;
        right: -5%;
        animation-delay: 0s;
      }
      .hero-orb-2 {
        width: 350px;
        height: 350px;
        background: rgba(6, 182, 212, 0.2);
        bottom: -5%;
        left: 10%;
        animation-delay: -3s;
      }
      .hero-orb-3 {
        width: 200px;
        height: 200px;
        background: rgba(249, 115, 22, 0.15);
        top: 30%;
        left: 40%;
        animation-delay: -5s;
      }
      @keyframes orbFloat {
        0%,
        100% {
          transform: translate(0, 0) scale(1);
        }
        33% {
          transform: translate(30px, -20px) scale(1.05);
        }
        66% {
          transform: translate(-20px, 15px) scale(0.95);
        }
      }

      /* Grid pattern overlay */
      .hero-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
        mask-image: radial-gradient(
          ellipse at center,
          black 30%,
          transparent 80%
        );
        -webkit-mask-image: radial-gradient(
          ellipse at center,
          black 30%,
          transparent 80%
        );
      }

      .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
        position: relative;
        z-index: 2;
        padding-top: 20px;
        padding-bottom: 20px;
      }
      .hero-content {
        color: var(--text-light);
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px 6px 8px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 500;
        margin-bottom: 16px;
        backdrop-filter: blur(10px);
        animation: fadeInDown 0.8s ease-out;
      }
      .hero-badge-dot {
        width: 8px;
        height: 8px;
        background: #34d399;
        border-radius: 50%;
        animation: pulse 2s ease-in-out infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
          transform: scale(1);
        }
        50% {
          opacity: 0.6;
          transform: scale(1.3);
        }
      }
      @keyframes fadeInDown {
        from {
          opacity: 0;
          transform: translateY(-20px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero h1 {
        font-family: "Space Grotesk", sans-serif;
        font-size: clamp(2.5rem, 5vw, 3.8rem);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 16px;
        animation: fadeInUp 0.8s ease-out 0.2s both;
      }
      .hero h1 .gradient-text {
        background: linear-gradient(
          135deg,
          var(--accent-light),
          var(--primary-light)
        );
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
      }
      .hero p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: rgba(241, 245, 249, 0.75);
        max-width: 520px;
        margin-bottom: 24px;
        animation: fadeInUp 0.8s ease-out 0.4s both;
      }
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      .hero-buttons {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeInUp 0.8s ease-out 0.6s both;
      }
      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        background: var(--gradient-accent);
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 100px;
        border: none;
        cursor: pointer;
        font-family: inherit;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
      }
      .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
      }
      .btn-primary svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
      }
      .btn-primary:hover svg {
        transform: translateX(3px);
      }
      .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 32px;
        background: transparent;
        color: #fff;
        font-weight: 600;
        font-size: 1rem;
        border-radius: 100px;
        border: 1.5px solid rgba(255, 255, 255, 0.25);
        cursor: pointer;
        font-family: inherit;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
      }
      .btn-outline:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.4);
        transform: translateY(-2px);
      }

      /* Hero featured product card */
      .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: fadeInUp 1s ease-out 0.5s both;
      }
      .hero-card {
        position: relative;
        background: rgba(255, 255, 255, 0.07);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: 20px;
        width: 100%;
        max-width: 460px;
        box-shadow: var(--shadow-xl);
        overflow: hidden;
      }
      .hero-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-accent);
      }
      .hero-card-image {
        width: 100%;
        height: 390px;
        background: linear-gradient(135deg, #1e224a, #6366f1);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 16px;
        position: relative;
        overflow: hidden;
      }
      .hero-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin-top: 100px;
      }
      .hero-card-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(99, 102, 241, 0.2),
          rgba(240, 126, 128, 0.2)
        );
      }
      .hero-card-image-placeholder {
        font-size: 3.5rem;
        z-index: 1;
      }
      .hero-card-label {
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        padding: 4px 12px;
        background: var(--gradient-warm);
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        border-radius: 100px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
      }
      .hero-card h3 {
        font-family: "Space Grotesk", sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 6px;
      }
      .hero-card p {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 16px;
      }
      .hero-card-price {
        display: flex;
        align-items: baseline;
        gap: 8px;
        margin-bottom: 16px;
      }
      .price-current {
        font-family: "Space Grotesk", sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: var(--accent-light);
      }
      .price-original {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: line-through;
      }
      .hero-card-btn {
        width: 100%;
        padding: 14px;
        background: var(--gradient-accent);
        color: #fff;
        font-weight: 600;
        font-size: 0.95rem;
        border-radius: var(--radius-sm);
        border: none;
        cursor: pointer;
        font-family: inherit;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
      }
      .hero-card-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
      }

      /* Floating side cards */
      .hero-float-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-md);
        padding: 14px 18px;
        animation: float 6s ease-in-out infinite;
        display: flex;
        align-items: center;
        gap: 12px;
        z-index: 3;
        color: #fff;
        font-size: 0.85rem;
        white-space: nowrap;
      }
      .hero-float-card svg {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
      }
      .float-1 {
        top: -10%;
        right: -40px;
        animation-delay: 0s;
      }
      .float-2 {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 4px 12px;
        background: rgba(99, 102, 241, 0.15);
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--accent-light);     
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-12px);
        }
      }

      /* ===== STATS BAR ===== */
      .stats-bar {
        padding: 40px 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        position: relative;
        z-index: 2;
      }
      .stats-bar .container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
      }
      .stat-item {
        text-align: center;
        padding: 16px;
      }
      .stat-number {
        font-family: "Space Grotesk", sans-serif;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 4px;
      }
      .stat-label {
        font-size: 0.88rem;
        color: var(--text-muted);
        font-weight: 500;
      }

      /* ===== SECTION COMMON ===== */
      .section {
        padding: 100px 0;
      }
      .section-header {
        text-align: center;
        max-width: 640px;
        margin: 0 auto 60px;
      }
      .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 16px;
        background: rgba(99, 102, 241, 0.06);
        color: var(--primary);
        font-weight: 600;
        font-size: 0.82rem;
        border-radius: 100px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 16px;
      }
      .section-title {
        font-family: "Space Grotesk", sans-serif;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 16px;
        color: var(--text);
      }
      .section-subtitle {
        font-size: 1.05rem;
        color: var(--text-muted);
        line-height: 1.7;
      }

      /* ===== CATEGORIES ===== */
      .categories-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .category-card {
        position: relative;
        padding: 32px 24px;
        border-radius: var(--radius-lg);
        background: var(--surface);
        border: 1.5px solid var(--border);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        cursor: pointer;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .category-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
      }
      .category-card:hover::before {
        transform: scaleX(1);
      }
      .category-card:hover {
        border-color: var(--primary-light);
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
      }
      .category-icon {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-md);
        background: linear-gradient(
          135deg,
          rgba(99, 102, 241, 0.08),
          rgba(240, 126, 128, 0.08)
        );
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: all 0.4s ease;
      }
      .category-card:hover .category-icon {
        background: var(--gradient-accent);
        transform: scale(1.05);
      }
      .category-card:hover .category-icon svg {
        color: #fff;
      }
      .category-icon svg {
        width: 24px;
        height: 24px;
        color: var(--primary);
        transition: color 0.4s ease;
      }
      .category-card h3 {
        font-weight: 600;
        font-size: 1rem;
        color: var(--text);
      }
      .category-card p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
      }

      /* ===== PRODUCTS ===== */
      .products-section {
        background: var(--surface-alt);
      }
      .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
      .product-card {
        background: var(--surface);
        border-radius: var(--radius-lg);
        overflow: hidden;
        border: 1px solid var(--border);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
      }
      .product-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: transparent;
      }
      .product-card-image {
        height: auto;
        min-height: 220px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
      }
      .product-card-image img {
        width: auto;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        max-height: 240px;
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
      }
      .product-card-image .placeholder-bg {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        position: relative;
      }
      .product-card-image .placeholder-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.15;
      }
      .product-badge {
        position: absolute;
        top: 14px;
        left: 14px;
        padding: 4px 12px;
        border-radius: 100px;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        z-index: 2;
      }
      .badge-hot {
        background: var(--gradient-warm);
        color: #fff;
      }
      .badge-new {
        background: linear-gradient(135deg, #10b981, #059669);
        color: #fff;
      }
      .badge-sale, .badge-default {
        background: linear-gradient(135deg, #8b5cf6, #6d28d9);
        color: #fff;
      }
      .product-card-body {
        padding: 24px;
      }
      .product-card-category {
        font-size: 0.78rem;
        color: var(--primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 8px;
      }
      .product-card-body h3 {
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 8px;
        color: var(--text);
        line-height: 1.3;
      }
      .product-card-body p {
        font-size: 0.88rem;
        color: var(--text-muted);
        margin-bottom: 18px;
        line-height: 1.6;
      }
      .product-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .product-price {
        font-family: "Space Grotesk", sans-serif;
        font-size: 1.35rem;
        font-weight: 700;
        color: var(--primary-dark);
      }
      .product-card-btn {
        padding: 10px 22px;
        background: var(--gradient-accent);
        color: #fff;
        border: none;
        border-radius: 100px;
        font-weight: 600;
        font-size: 0.85rem;
        cursor: pointer;
        font-family: inherit;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .product-card-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
      }

      /* ===== FEATURED / PROMO ===== */
      .promo {
        position: relative;
        overflow: hidden;
      }
      .promo-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        border-radius: var(--radius-xl);
        overflow: hidden;
        background: var(--gradient-hero);
        position: relative;
        min-height: 400px;
      }
      .promo-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse at 70% 50%,
          rgba(99, 102, 241, 0.3),
          transparent 70%
        );
        pointer-events: none;
      }
      .promo-content {
        padding: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
        color: #fff;
      }
      .promo-content .section-tag {
        background: rgba(255, 255, 255, 0.12);
        color: var(--accent-light);
        width: fit-content;
      }
      .promo-content h2 {
        font-family: "Space Grotesk", sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 16px;
      }
      .promo-content p {
        font-size: 1.05rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.7;
        margin-bottom: 32px;
        max-width: 440px;
      }
      .promo-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        padding: 40px;
      }
      .promo-placeholder {
        width: 280px;
        height: 320px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 5rem;
        animation: float 6s ease-in-out infinite;
      }

      /* ===== ABOUT US ===== */
      .about-section {
        position: relative;
        overflow: hidden;
      }
      .about-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(99, 102, 241, 0.04);
        bottom: -150px;
        left: -150px;
        pointer-events: none;
      }
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
      .about-image {
        position: relative;
      }
      .about-image-main {
        width: 100%;
        height: 420px;
        background: var(--gradient-hero);
        border-radius: var(--radius-xl);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 6rem;
        position: relative;
        overflow: hidden;
      }
      .about-image-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: relative;
        z-index: 1;
      }
      .about-image-main::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(99, 102, 241, 0.15),
          transparent 60%
        );
      }
      .about-experience-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: var(--surface);
        border-radius: var(--radius-lg);
        padding: 20px 28px;
        box-shadow: var(--shadow-lg);
        text-align: center;
        z-index: 2;
      }
      .about-experience-badge .big-num {
        font-family: "Space Grotesk", sans-serif;
        font-size: 2.4rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
      }
      .about-experience-badge span {
        font-size: 0.82rem;
        color: var(--text-muted);
        font-weight: 500;
      }
      .about-content h2 {
        font-family: "Space Grotesk", sans-serif;
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        font-weight: 800;
        line-height: 1.15;
        margin-bottom: 20px;
      }
      .about-content h2 .highlight {
        color: var(--primary);
      }
      .about-content .lead {
        font-size: 1.08rem;
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 28px;
      }
      .about-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 32px;
      }
      .about-feature {
        display: flex;
        gap: 16px;
        align-items: flex-start;
      }
      .about-feature-icon {
        width: 44px;
        height: 44px;
        border-radius: var(--radius-sm);
        background: rgba(99, 102, 241, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .about-feature-icon svg {
        width: 20px;
        height: 20px;
        color: var(--primary);
      }
      .about-feature div h4 {
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 4px;
      }
      .about-feature div p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
      }

      /* ===== HOW IT WORKS ===== */
      .how-section {
        background: var(--surface-alt);
      }
      .how-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        position: relative;
      }
      .how-grid::before {
        content: "";
        position: absolute;
        top: 52px;
        left: 13%;
        right: 13%;
        height: 2px;
        background: var(--border);
        z-index: 0;
      }
      .how-step {
        text-align: center;
        position: relative;
        z-index: 1;
      }
      .how-step-num {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--gradient-accent);
        color: #fff;
        font-family: "Space Grotesk", sans-serif;
        font-weight: 700;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        position: relative;
      }
      .how-step-num::after {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 2px solid rgba(99, 102, 241, 0.2);
      }
      .how-step h3 {
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 8px;
      }
      .how-step p {
        font-size: 0.85rem;
        color: var(--text-muted);
        line-height: 1.6;
        max-width: 220px;
        margin: 0 auto;
      }

      /* ===== REVIEWS ===== */
      .reviews-section {
        position: relative;
        overflow: hidden;
      }
      .reviews-section::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(99, 102, 241, 0.04);
        top: -100px;
        left: -100px;
        pointer-events: none;
      }
      .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
      .review-card {
        background: var(--surface);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 32px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        position: relative;
      }
      .review-card::before {
        content: "\201C";
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 4rem;
        font-family: Georgia, serif;
        color: rgba(99, 102, 241, 0.1);
        line-height: 1;
        pointer-events: none;
      }
      .review-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-light);
      }
      .review-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 16px;
      }
      .review-stars svg {
        width: 16px;
        height: 16px;
        color: #f59e0b;
        fill: #f59e0b;
      }
      .review-card blockquote {
        font-size: 0.92rem;
        color: var(--text);
        line-height: 1.7;
        margin-bottom: 20px;
        font-style: italic;
      }
      .review-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .review-avatar {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.9rem;
        color: #fff;
        flex-shrink: 0;
      }
      .review-author-info strong {
        display: block;
        font-size: 0.88rem;
        font-weight: 600;
      }
      .review-author-info span {
        font-size: 0.78rem;
        color: var(--text-muted);
      }

      /* ===== WHY CHOOSE US ===== */
      .why-section {
        background: var(--surface-dark);
        color: var(--text-light);
        position: relative;
        overflow: hidden;
      }
      .why-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 50% 60% at 20% 50%,
            rgba(99, 102, 241, 0.12) 0%,
            transparent 70%
          ),
          radial-gradient(
            ellipse 40% 40% at 80% 80%,
            rgba(240, 126, 128, 0.08) 0%,
            transparent 60%
          );
        pointer-events: none;
      }
      .why-section .section-tag {
        background: rgba(255, 255, 255, 0.1);
        color: var(--accent-light);
      }
      .why-section .section-title {
        color: #fff;
      }
      .why-section .section-subtitle {
        color: rgba(255, 255, 255, 0.6);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        position: relative;
        z-index: 2;
      }
      .why-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-lg);
        padding: 36px 28px;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        text-align: center;
      }
      .why-card:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-6px);
        border-color: rgba(99, 102, 241, 0.3);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      }
      .why-card-icon {
        width: 60px;
        height: 60px;
        border-radius: var(--radius-md);
        background: var(--gradient-accent);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
      }
      .why-card-icon svg {
        width: 26px;
        height: 26px;
        color: #fff;
      }
      .why-card h3 {
        font-weight: 700;
        font-size: 1.05rem;
        margin-bottom: 10px;
        color: #fff;
      }
      .why-card p {
        font-size: 0.88rem;
        color: rgba(255, 255, 255, 0.55);
        line-height: 1.7;
      }

      /* ===== BRANDS / TRUST BAR ===== */
      .trust-bar {
        background: var(--surface-alt);
        padding: 48px 0;
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      .trust-bar .container {
        text-align: center;
      }
      .trust-bar p {
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--text-muted);
        font-weight: 600;
        margin-bottom: 28px;
      }
      .trust-logos {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 48px;
        flex-wrap: wrap;
      }
      .trust-logo {
        font-family: "Space Grotesk", sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--text-muted);
        opacity: 0.5;
        transition: opacity 0.3s ease;
      }
      .trust-logo:hover {
        opacity: 0.8;
      }

      /* ===== CTA / NEWSLETTER ===== */
      .cta-section {
        background: var(--surface-alt);
        position: relative;
        overflow: hidden;
      }
      .cta-section::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(99, 102, 241, 0.06);
        top: -100px;
        right: -100px;
        pointer-events: none;
      }
      .cta-card {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }
      .cta-card h2 {
        font-family: "Space Grotesk", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 12px;
      }
      .cta-card p {
        color: var(--text-muted);
        margin-bottom: 32px;
        font-size: 1.05rem;
      }
      .cta-form {
        display: flex;
        gap: 12px;
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
      }
      .cta-form input {
        flex: 1;
        padding: 14px 24px;
        border: 1.5px solid var(--border);
        border-radius: 100px;
        font-size: 0.95rem;
        font-family: inherit;
        outline: none;
        transition: all 0.3s ease;
        background: var(--surface);
      }
      .cta-form input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
      }

      /* ===== FOOTER ===== */
      .footer {
        background: var(--surface-dark);
        color: var(--text-light);
        padding: 80px 0 0;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 60px;
      }
      .footer-brand {
        max-width: 280px;
      }
      .footer-brand .navbar-logo {
        margin-bottom: 16px;
      }
      .footer-brand p {
        font-size: 0.9rem;
        color: rgba(241, 245, 249, 0.5);
        line-height: 1.7;
        margin-bottom: 24px;
      }
      .footer-socials {
        display: flex;
        gap: 12px;
      }
      .footer-socials a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
      }
      .footer-socials a:hover {
        background: var(--gradient-accent);
        border-color: transparent;
        color: #fff;
        transform: translateY(-2px);
      }
      .footer-socials svg {
        width: 18px;
        height: 18px;
      }
      .footer-col h4 {
        font-weight: 600;
        font-size: 0.92rem;
        margin-bottom: 20px;
        color: #fff;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }
      .footer-col li a {
        font-size: 0.88rem;
        color: rgba(241, 245, 249, 0.5);
        transition: all 0.3s ease;
      }
      .footer-col li a:hover {
        color: var(--accent-light);
        padding-left: 4px;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 16px;
      }
      .footer-bottom p {
        font-size: 0.82rem;
        color: rgba(241, 245, 249, 0.35);
      }
      .footer-bottom-links {
        display: flex;
        gap: 24px;
      }
      .footer-bottom-links a {
        font-size: 0.82rem;
        color: rgba(241, 245, 249, 0.35);
        transition: color 0.3s ease;
      }
      .footer-bottom-links a:hover {
        color: var(--accent-light);
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 1024px) {
        .hero .container {
          grid-template-columns: 1fr;
          text-align: center;
        }
        .hero p {
          margin-left: auto;
          margin-right: auto;
        }
        .hero-buttons {
          justify-content: center;
        }
        .hero-visual {
          margin-top: 20px;
        }
        .hero-float-card {
          display: none;
        }
        .categories-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .products-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .promo-card {
          grid-template-columns: 1fr;
        }
        .promo-visual {
          padding: 20px 40px 40px;
        }
        .about-grid {
          grid-template-columns: 1fr;
          gap: 40px;
        }
        .about-experience-badge {
          right: 20px;
        }
        .how-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .how-grid::before {
          display: none;
        }
        .reviews-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
      }

      @media (max-width: 768px) {
        .navbar-links,
        .navbar-search {
          display: none;
        }
        .mobile-menu-btn {
          display: block;
        }
        .hero {
          min-height: auto;
          padding: 120px 0 60px;
        }
        .hero h1 {
          font-size: 2rem;
        }
        .stats-bar .container {
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
        }
        .stat-number {
          font-size: 1.6rem;
        }
        .categories-grid {
          grid-template-columns: 1fr;
        }
        .products-grid {
          grid-template-columns: 1fr;
        }
        .promo-content {
          padding: 32px;
        }
        .promo-content h2 {
          font-size: 1.6rem;
        }
        .about-grid {
          text-align: center;
        }
        .about-content .lead {
          font-size: 0.95rem;
        }
        .about-features {
          align-items: center;
        }
        .about-feature {
          flex-direction: column;
          text-align: center;
          align-items: center;
        }
        .how-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .how-grid::before {
          display: none;
        }
        .reviews-grid {
          grid-template-columns: 1fr;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .cta-form {
          flex-direction: column;
        }
        .footer-grid {
          grid-template-columns: 1fr;
          gap: 28px;
        }
        .footer-bottom {
          flex-direction: column;
          text-align: center;
        }
      }

      @media (max-width: 480px) {
        .hero-card {
          padding: 20px;
        }
        .hero-buttons {
          flex-direction: column;
        }
        .btn-primary,
        .btn-outline {
          width: 100%;
          justify-content: center;
        }
      }

      /* ===== MARQUEE / TICKER ===== */
      .ticker {
        overflow: hidden;
        background: var(--gradient-accent);
        padding: 12px 0;
        position: relative;
        z-index: 2;
      }
      .ticker-track {
        display: flex;
        gap: 48px;
        animation: ticker 25s linear infinite;
        width: max-content;
      }
      .ticker-item {
        white-space: nowrap;
        font-weight: 600;
        font-size: 0.88rem;
        color: #fff;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .ticker-item span {
        color: rgba(255, 255, 255, 0.5);
      }
      @keyframes ticker {
        0% {
          transform: translateX(0);
        }
        100% {
          transform: translateX(-50%);
        }
      }

      /* ===== BACK-TO-TOP ===== */
      .back-to-top {
        position: fixed;
        bottom: 32px;
        right: 32px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--gradient-accent);
        color: #fff;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
        z-index: 999;
      }
      .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .back-to-top:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
      }
      .back-to-top svg {
        width: 22px;
        height: 22px;
      }

      /* ===== TYPEWRITER ===== */
      .typewriter-text {
        border-right: 2px solid var(--accent-light);
        animation: blink-caret 0.75s step-end infinite;
        display: inline;
      }
      @keyframes blink-caret {
        50% {
          border-color: transparent;
        }
      }

      /* ===== PARTICLE CANVAS ===== */
      #particles-canvas {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 1;
      }

      /* ===== PARALLAX LAYERS ===== */
      [data-parallax] {
        will-change: transform;
        transition: transform 0.1s linear;
      }

      /* ===== 3D MOUSE-TRACKING HERO CARD ===== */
      .hero-visual {
        perspective: 1200px;
      }
      .hero-card {
        transform-style: preserve-3d;
        will-change: transform;
        transition:
          transform 0.15s ease-out,
          box-shadow 0.3s ease;
      }
      .hero-card:hover {
        box-shadow:
          0 25px 60px rgba(0, 0, 0, 0.35),
          0 0 60px rgba(99, 102, 241, 0.15);
      }
      .hero-card .hero-card-image,
      .hero-card h3,
      .hero-card p,
      .hero-card-price,
      .hero-card-btn {
        transform: translateZ(30px);
      }
      .hero-card-label {
        transform: translateZ(50px);
      }

      /* ===== ENHANCED MOTION ANIMATIONS ===== */
      @keyframes shimmer {
        0% {
          background-position: -200% 0;
        }
        100% {
          background-position: 200% 0;
        }
      }
      @keyframes gentleBounce {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
      }
      @keyframes rotateIn {
        from {
          opacity: 0;
          transform: rotate(-8deg) scale(0.9);
        }
        to {
          opacity: 1;
          transform: rotate(0) scale(1);
        }
      }
      @keyframes slideInBlur {
        from {
          opacity: 0;
          transform: translateY(30px);
          filter: blur(8px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
          filter: blur(0);
        }
      }
      @keyframes scaleReveal {
        from {
          opacity: 0;
          transform: scale(0.85);
        }
        to {
          opacity: 1;
          transform: scale(1);
        }
      }
      @keyframes glowPulse {
        0%,
        100% {
          box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
        }
        50% {
          box-shadow: 0 0 40px rgba(99, 102, 241, 0.3);
        }
      }

      /* Reveal with blur */
      .reveal-blur {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(8px);
        transition:
          opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
          filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-blur.visible {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }

      /* Reveal rotate */
      .reveal-rotate {
        opacity: 0;
        transform: rotate(-5deg) translateY(40px);
        transition:
          opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
          transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .reveal-rotate.visible {
        opacity: 1;
        transform: rotate(0) translateY(0);
      }

      /* Card hover lift with glow */
      .category-card,
      .product-card,
      .review-card,
      .why-card {
        transition:
          all 0.4s cubic-bezier(0.16, 1, 0.3, 1),
          box-shadow 0.4s ease;
      }

      /* Btn ripple shimmer on hover */
      .btn-primary::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.6s ease;
        pointer-events: none;
      }
      .btn-primary {
        position: relative;
        overflow: hidden;
      }
      .btn-primary:hover::after {
        left: 120%;
      }

      /* Section tag bounce on visible */
      .section-tag {
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      .visible .section-tag,
      .reveal.visible .section-tag {
        animation: gentleBounce 0.6s ease 0.3s;
      }

      /* Floating glow for how-step-num */
      .how-step-num {
        animation: glowPulse 3s ease-in-out infinite;
      }

      /* Hero grid parallax movement overlay */
      .hero-grid {
        transition: transform 0.3s ease-out;
      }

      /* Smooth counter number pop */
      .stat-number {
        transition: transform 0.3s ease;
      }
      .stat-item:hover .stat-number {
        transform: scale(1.1);
      }

      /* Footer social icons spin on hover */
      .footer-socials a:hover svg {
        animation: rotateIn 0.4s ease;
      }

      /* Product image zoom on hover */
      .product-card-image img,
      .product-card-image .placeholder-bg {
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      }
      .product-card:hover .product-card-image img,
      .product-card:hover .product-card-image .placeholder-bg {
        transform: scale(1.06);
      }

      /* About image float */
      .about-image-main {
        animation: float 8s ease-in-out infinite;
      }

      /* Promo placeholder enhanced float */
      .promo-placeholder {
        animation:
          float 5s ease-in-out infinite,
          glowPulse 4s ease-in-out infinite;
      }

      /* Trust logos subtle slide */
      .trust-logo {
        transition:
          opacity 0.3s ease,
          transform 0.3s ease;
      }
      .trust-logo:hover {
        transform: translateY(-3px);
      }

      /* Hero float cards enhanced */
      .hero-float-card {
        transition:
          transform 0.3s ease,
          box-shadow 0.3s ease;
      }
      .hero-float-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      }

      /* ===== MOBILE NAV ===== */
.mobile-menu-btn {
    position: relative;
    z-index: 1102;
}

.mobile-menu-btn .icon-close {
    display: none;
}

.mobile-menu-btn.is-open .icon-open {
    display: none;
}

.mobile-menu-btn.is-open .icon-close {
    display: block;
}

.mobile-nav {
    position: fixed;
    inset: 72px 0 0 0;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.mobile-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav__panel {
    position: relative;
    z-index: 1;
    height: calc(100dvh - 72px);
    overflow-y: auto;
    background: #ffffff;
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    transform: translateY(-16px);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 18px 18px 28px;
}

.mobile-nav.is-open .mobile-nav__panel {
    transform: translateY(0);
}

.mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.mobile-nav__logo img {
    height: 40px;
    width: auto;
}

.mobile-nav__search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    background: var(--surface-alt);
    margin-bottom: 18px;
}

.mobile-nav__search svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.mobile-nav__search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.95rem;
}

.mobile-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav__item {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.mobile-nav__row {
    display: flex;
    align-items: center;
    min-height: 58px;
}

.mobile-nav__link {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 16px 18px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.98rem;
}

.mobile-nav__toggle {
    width: 58px;
    height: 58px;
    border: 0;
    border-left: 1px solid var(--border);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: background 0.25s ease, color 0.25s ease;
}

.mobile-nav__toggle:hover {
    background: rgba(99, 102, 241, 0.06);
    color: var(--primary);
}

.mobile-nav__toggle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.28s ease;
}

.mobile-nav__item.is-open .mobile-nav__toggle svg {
    transform: rotate(180deg);
}

.mobile-nav__submenu {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    background: linear-gradient(to bottom, #fff, #f8fafc);
}

.mobile-nav__submenu > * {
    overflow: hidden;
}

.mobile-nav__item.is-open .mobile-nav__submenu {
    grid-template-rows: 1fr;
}

.mobile-nav__submenu a {
    display: block;
    padding: 12px 18px 12px 24px;
    font-size: 0.93rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.mobile-nav__submenu a:hover {
    background: rgba(99, 102, 241, 0.06);
    color: var(--primary);
    padding-left: 28px;
}

.mobile-nav__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 18px;
}

.mobile-action-card {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.mobile-action-card--primary {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
}

body.mobile-menu-open {
    overflow: hidden;
}

#lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 9998;
}

#lightbox-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 574px;
  height: 270px;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

#lightbox-popup .inner {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

#lightbox-popup.newsletter-pop .inner iframe {
  display: block;
  width: 100%;
  height: 270px;
  border: 0;
  background: #fff;
}

#lightbox-popup .close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: all 0.2s ease;
}

/* the X */
#lightbox-popup .close::before,
#lightbox-popup .close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #111827; /* change to #7e89f8 if you want */
  transform-origin: center;
}

/* rotate to form X */
#lightbox-popup .close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

#lightbox-popup .close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* hover */
#lightbox-popup .close:hover {
  background: #f3f4f6;
  transform: scale(1.05);
}

@media (max-width: 640px) {
  #lightbox-popup {
    width: 92vw;
    height: auto;
  }

  #lightbox-popup.newsletter-pop .inner iframe {
    height: 60vh;
  }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        height: 72px;
        gap: 12px;
    }

    .navbar-actions {
        display: none;
    }

    .navbar-logo img {
        height: 38px;
    }

    .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(99, 102, 241, 0.06);
        transition: background 0.25s ease, transform 0.25s ease;
    }

    .mobile-menu-btn:hover {
        background: rgba(99, 102, 241, 0.12);
    }

    .mobile-menu-btn:active {
        transform: scale(0.97);
    }
}

@media (max-width: 480px) {
    .mobile-nav__panel {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-nav__actions {
        grid-template-columns: 1fr;
    }

    .mobile-nav__link {
        font-size: 0.95rem;
    }

    .mobile-nav__submenu a {
        font-size: 0.9rem;
    }
}
    