/* ========================================
       CSS Variables & Reset
    ======================================== */
    :root {
      --primary: #2563EB;
      --primary-dark: #1D4ED8;
      --primary-light: #DBEAFE;
      --secondary: #3B82F6;
      --secondary-dark: #2563EB;
      --secondary-light: #EFF6FF;
      --background: #FFFFFF;
      --foreground: #1D1D1F;
      --muted: #86868B;
      --muted-light: #A1A1A6;
      --border: #E5E5EA;
      --accent: #F5F5F7;
      --star: #EAB308;
      --star-light: #FEF3C7;
      --error: #DC2626;
      --success: #059669;
      --gold: #2563EB;
      --gold-light: #DBEAFE;
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-2xl: 32px;
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
      --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.15);
      --transition: 0.3s ease;
      --max-width: 1200px;
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

      /* Type scale (modular 1.25) */
      --text-xs: 0.75rem;
      --text-sm: 0.875rem;
      --text-base: 1rem;
      --text-lg: 1.25rem;
      --text-xl: 1.5rem;
      --text-2xl: 1.75rem;
      --text-3xl: 2.25rem;
      --text-4xl: 2.75rem;
      --text-5xl: 3.5rem;

      /* Line heights */
      --leading-none: 1;
      --leading-tight: 1.15;
      --leading-snug: 1.3;
      --leading-normal: 1.5;
      --leading-relaxed: 1.7;

      /* Letter spacing */
      --tracking-tight: 0;
      --tracking-normal: 0;
      --tracking-wide: 0.04em;

      /* Spacing scale */
      --space-xs: 4px;
      --space-sm: 8px;
      --space-md: 16px;
      --space-lg: 24px;
      --space-xl: 32px;
      --space-2xl: 48px;
      --space-3xl: 64px;
      --space-4xl: 80px;
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

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

    body {
      font-family: var(--font-sans);
      background: var(--background);
      color: var(--foreground);
      line-height: var(--leading-relaxed);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

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

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

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
    }

    ul {
      list-style: none;
    }

    input {
      font-family: inherit;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 16px;
    }

    /* ========================================
       Utility Classes
    ======================================== */
    .section {
      padding: var(--space-xl) 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: var(--space-lg);
    }

    .section-title h2 {
      font-family: var(--font-serif);
      font-size: var(--text-2xl);
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
      color: var(--foreground);
    }

    .section-title p {
      margin-top: var(--space-sm);
      color: var(--muted);
      font-size: var(--text-base);
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    .skip-link {
      position: absolute;
      top: -100%;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1000;
      padding: 8px 16px;
      background: var(--primary);
      color: #fff;
      font-size: var(--text-sm);
      font-weight: 600;
      border-radius: 0 0 var(--radius-sm) var(--radius-sm);
      text-decoration: none;
      transition: top 0.2s;
    }
    .skip-link:focus {
      top: 0;
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    /* ========================================
       Premium Glassmorphism & Decorations
    ======================================== */
    .glass {
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .glass-card {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.4);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    }

    .gold-border {
      position: relative;
    }

    .gold-border::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.3));
      z-index: -1;
    }

    .star-divider {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: var(--space-md) 0;
    }

    .star-divider::before,
    .star-divider::after {
      content: '';
      flex: 1;
      max-width: 80px;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
    }

    .star-divider::after {
      background: linear-gradient(to left, transparent, var(--gold));
    }

    .star-divider .deco-star {
      color: var(--gold);
      font-size: 0.625rem;
      opacity: 0.6;
      margin: 0 2px;
    }

    .frame-corner {
      position: relative;
    }

    .frame-corner::before,
    .frame-corner::after {
      content: '✦';
      position: absolute;
      font-size: 0.5rem;
      color: var(--gold);
      opacity: 0.3;
    }

    .frame-corner::before {
      top: 8px;
      left: 8px;
    }

    .frame-corner::after {
      bottom: 8px;
      right: 8px;
    }

    .gold-text {
      color: var(--gold);
    }

    .serif {
      font-family: var(--font-serif);
    }

    /* ========================================
       Buttons
    ======================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
      padding: 12px 24px;
      border-radius: var(--radius-md);
      font-size: var(--text-base);
      font-weight: 600;
      transition: all var(--transition);
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .btn-primary {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }

    .btn-secondary {
      background: var(--secondary);
      color: #fff;
      box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
    }

    .btn-secondary:hover {
      background: var(--secondary-dark);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    }

    .btn-outline {
      border: 2px solid var(--primary);
      color: var(--primary);
      background: transparent;
    }

    .btn-outline:hover {
      background: var(--primary);
      color: #fff;
    }

    .btn-sm {
      padding: var(--space-sm) var(--space-md);
      font-size: var(--text-sm);
    }

    .btn-lg {
      padding: 14px 32px;
      font-size: var(--text-base);
    }

    /* ===========================
       TOP MARQUEE
    ============================ */
    .top-marquee{
      width:100%;
      height:38px;
      background:#001a4d;
      overflow:hidden;
      display:flex;
      align-items:center;
      position:relative;
      white-space:nowrap;
      user-select:none;
    }

    .sticky-header {
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .marquee-track{
      display:flex;
      width:max-content;
      animation:marquee 28s linear infinite;
    }

    .top-marquee:hover .marquee-track{
      animation-play-state:paused;
    }

    .marquee-track .marquee-text{
      display:flex;
      align-items:center;
      flex-shrink:0;
      color:#fff;
      font-family:Inter, Arial,Helvetica,sans-serif;
      font-size:var(--text-sm);
      font-weight:500;
      letter-spacing:.2px;
      line-height:38px;
    }

    .marquee-track .marquee-sep{
      display:flex;
      align-items:center;
      flex-shrink:0;
      color:#fff;
      font-size:var(--text-sm);
      line-height:38px;
      padding:0 var(--space-lg);
    }

    @keyframes marquee{
      from{ transform:translateX(0); }
      to{ transform:translateX(-50%); }
    }

    @media (max-width:768px){
      .top-marquee{ height:34px; }
      .marquee-track .marquee-text{ font-size:var(--text-xs); line-height:34px; }
      .marquee-track .marquee-sep{ font-size:var(--text-xs); line-height:34px; padding:0 18px; }
      .delivery-marquee{ padding:6px 0; }
      .delivery-marquee-item{ font-size:var(--text-xs); padding:0 var(--space-lg); }
      .delivery-marquee-item i{ font-size:16px; }
    }

    @media (max-width:480px){
      .container{ padding:0 16px; }
      .hero-content{ padding:var(--space-lg) var(--space-md); gap:var(--space-sm); }
      .hero-content h1{ font-size:var(--text-3xl); }
      .hero-content p{ font-size:var(--text-sm); }
      .cat-card{ min-width:160px; max-width:180px; }
      .cat-card .info{ padding:var(--space-sm) 12px; gap:8px; }
      .cat-card .info h3{ font-size:var(--text-sm); }
      .cat-card .icon{ width:36px; height:36px; font-size:var(--text-base); }
      .cat-card .shop-btn{ padding:4px var(--space-sm); font-size:10px; }
      .hero-image img{ aspect-ratio:auto; height:300px; object-fit:cover; }
      .footer-grid{ gap:20px; }
      .brand-text{ font-size:var(--text-sm); }
      .fp-wall{ padding:14px; min-height:240px; }
      .fp-sidebar{ gap:var(--space-md); }
      .fp-sizes{ grid-template-columns:repeat(3,1fr); gap:6px; }
      .fp-size-btn{ padding:8px 6px; font-size:var(--text-xs); }
      .fp-upload-zone{ padding:var(--space-md); }
      .fp-layout{ gap:var(--space-md); }
      .video-card{ min-width:280px; max-width:320px; }
      .section{ padding:var(--space-2xl) 0; }
      .section-title{ margin-bottom:var(--space-lg); }
      .section-title h2{ font-size:var(--text-xl); letter-spacing:var(--tracking-normal); }
      .section-title p{ font-size:var(--text-sm); }
      .contact-map iframe{ height:200px; }
      .cat-scroll{ gap:var(--space-sm); }
      .community-grid{ gap:var(--space-sm); }
    }
  
    /* ========================================
       Header / Navigation
    ======================================== */
    .header {
      border-bottom: 1px solid transparent;
      transition: all var(--transition);
      background: var(--background);
    }

    .header.scrolled {
      border-bottom-color: var(--border);
      box-shadow: var(--shadow-sm);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      gap: var(--space-md);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }

    .logo img {
      display: block;
      height: 28px;
      width: auto;
    }

    .brand-text {
      font-family: var(--font-serif);
      font-size: var(--text-base);
      font-weight: 700;
      white-space: nowrap;
      letter-spacing: var(--tracking-tight);
    }
    .brand-text .primary {
      color: var(--primary);
    }
    .brand-text .secondary {
      color: var(--foreground);
    }

    .header-nav {
      display: none;
      gap: var(--space-xs);
    }

    .header-nav a {
      padding: var(--space-sm) 14px;
      border-radius: var(--radius-sm);
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--muted);
      transition: all var(--transition);
    }

    .header-nav a:hover {
      background: var(--accent);
      color: var(--foreground);
    }

    .whatsapp-btn {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      font-size: var(--text-sm);
      font-weight: 600;
      white-space: nowrap;
      background: #25D366;
      color: #fff;
      text-decoration: none;
      transition: all var(--transition);
      flex-shrink: 0;
    }

    .whatsapp-btn .wa-text {
      display: none;
    }

    .whatsapp-btn:hover {
      background: #20BD5A;
      transform: translateY(-1px);
      color: #fff;
    }

    .menu-toggle {
      display: flex;
      margin-left: 4px;
    }

    /* Mobile Nav */
    .mobile-nav {
      display: none;
      border-top: 1px solid var(--border);
      background: var(--background);
      padding: 8px 0;
    }

    .mobile-nav.open {
      display: block;
    }

    .mobile-nav a {
      display: block;
      padding: 12px var(--space-md);
      font-size: var(--text-sm);
      font-weight: 500;
      color: var(--muted);
      border-radius: var(--radius-sm);
      transition: all var(--transition);
    }

    .mobile-nav a:hover {
      background: var(--accent);
      color: var(--foreground);
    }

    .mobile-nav .mobile-wa {
      color: #25D366;
      font-weight: 600;
    }

    /* ========================================
       Scroll to Top
    ======================================== */
    .scroll-top-btn {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      z-index: 99;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: all 0.3s ease;
      cursor: pointer;
      border: none;
    }

    .scroll-top-btn.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-xl);
    }

    .scroll-top-btn:active {
      transform: translateY(0);
    }

    .scroll-top-btn:hover i {
      transform: translateY(-1px);
    }

    /* ========================================
       Hero Section
    ======================================== */
    .hero {
      padding: 0;
    }

    .hero-inner {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), var(--accent), rgba(59, 130, 246, 0.06));
    }

    .hero-slide {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0;
      text-align: center;
    }

    .hero-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
      max-width: 100%;
      padding: var(--space-xl) 20px 20px;
    }

    .hero-content h1 {
      font-family: var(--font-serif);
      font-size: var(--text-3xl);
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
      line-height: var(--leading-tight);
      color: var(--foreground);
    }

    .hero-content h1 .gold-text {
      color: var(--gold);
    }

    .hero-content p {
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: 1.45;
      max-width: 320px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      justify-content: center;
    }

    .hero-actions .btn-lg {
      padding: var(--space-sm) var(--space-md);
      font-size: var(--text-sm);
    }

    .hero-image {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }

    .hero-image img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .hero-controls {
      position: absolute;
      bottom: 16px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: var(--space-sm);
    }

    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.2);
      transition: all var(--transition);
      cursor: pointer;
    }

    .hero-dot.active {
      width: 28px;
      border-radius: 4px;
      background: var(--primary);
    }

    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      display: none;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
      transition: all 0.25s ease;
      color: var(--foreground);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .hero-arrow:hover {
      background: #fff;
      box-shadow: var(--shadow-lg);
      transform: translateY(-50%) scale(1.08);
    }

    .hero-arrow:active {
      transform: translateY(-50%) scale(0.95);
    }

    .hero-arrow.prev {
      left: 16px;
    }

    .hero-arrow.next {
      right: 16px;
    }

    /* ========================================
       Best Sellers
    ======================================== */
    .best-sellers-header {
      margin-bottom: var(--space-lg);
    }

    .best-sellers-header .header-left {
      text-align: center;
    }

    .best-sellers-header h2 {
      font-family: var(--font-serif);
      font-size: var(--text-xl);
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
    }

    .scroll-btns {
      display: none;
      gap: 8px;
    }

    .scroll-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--background);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
      color: var(--foreground);
    }

    .scroll-btn:hover {
      background: var(--accent);
    }

    .scroll-btn:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 2px;
    }

    .products-scroll {
      display: flex;
      gap: var(--space-md);
      overflow-x: auto;
      padding-bottom: var(--space-sm);
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .products-scroll::-webkit-scrollbar {
      height: 6px;
    }

    .products-scroll::-webkit-scrollbar-track {
      background: var(--accent);
      border-radius: 3px;
    }

    .products-scroll::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 3px;
    }

    /* Delivery Marquee */
    .delivery-marquee{
      width:100%;
      overflow:hidden;
      background:var(--success);
      padding:8px 0;
      position:relative;
    }
    .delivery-marquee-track{
      display:flex;
      width:max-content;
      animation: deliveryMarquee 28s linear infinite;
    }
    .delivery-marquee-item{
      display:flex;
      align-items:center;
      gap:var(--space-sm);
      flex-shrink:0;
      padding:0 40px;
      color:#fff;
      font-family:Inter, Arial, Helvetica, sans-serif;
      font-size:var(--text-sm);
      font-weight:600;
      letter-spacing:.3px;
      white-space:nowrap;
    }
    .delivery-marquee-item svg{
      flex-shrink:0;
    }
    @keyframes deliveryMarquee{
      from{ transform:translateX(0); }
      to{ transform:translateX(-50%); }
    }

    /* ========================================
       Frame Previewer
    ======================================== */
    .fp-section {
      background: var(--accent);
    }
    .fp-layout {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }
    .fp-wall {
      flex: 1;
      background:
        repeating-linear-gradient(
          0deg,
          #e8e0d6 0px, #e8e0d6 2px,
          transparent 2px, transparent 8px
        ),
        repeating-linear-gradient(
          90deg,
          #e8e0d6 0px, #e8e0d6 2px,
          transparent 2px, transparent 8px
        ),
        linear-gradient(135deg, #f5f0ea, #eaddd2);
      border-radius: var(--radius-lg);
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      min-height: 300px;
    }
    .fp-wall::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.25) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(0,0,0,0.04) 0%, transparent 50%);
      pointer-events: none;
    }
    .fp-hanger {
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px;
      height: 20px;
      background: #888;
      border-radius: 2px;
    }
    .fp-hanger::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 50%;
      transform: translateX(-50%);
      width: 12px;
      height: 3px;
      background: #666;
      border-radius: 2px;
    }
    .fp-frame-wrap {
      position: relative;
      max-width: 100%;
      max-height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .fp-frame {
      position: relative;
      padding: 18px;
      background: linear-gradient(145deg, #3a3028, #2a221c);
      border-radius: 4px;
      box-shadow:
        0 2px 4px rgba(0,0,0,0.3),
        0 8px 24px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .fp-mat {
      width: 100%;
      height: 100%;
      position: relative;
      background: #f5f0ea;
      padding: 14px;
      border-radius: 2px;
      box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .fp-photo-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      background: #e8e0d6;
      border-radius: 1px;
      color: #999;
      font-size: var(--text-sm);
      text-align: center;
      padding: var(--space-lg);
    }
    .fp-photo-placeholder i {
      font-size: 2rem;
      color: #bbb;
      margin-bottom: var(--space-sm);
    }
    .fp-sidebar {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }
    .fp-label {
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--muted);
      letter-spacing: var(--tracking-wide);
      text-transform: uppercase;
      margin-bottom: var(--space-sm);
    }
    .fp-sizes {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
      gap: var(--space-sm);
    }
    .fp-size-btn {
      padding: var(--space-sm) var(--space-md);
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--background);
      font-weight: 600;
      font-size: var(--text-sm);
      text-align: center;
      transition: all var(--transition);
      cursor: pointer;
      color: var(--foreground);
    }
    .fp-size-btn:hover {
      border-color: var(--primary);
      background: var(--primary-light);
    }
    .fp-size-btn.active {
      border-color: var(--primary);
      background: var(--primary);
      color: #fff;
      box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    }
    .fp-size-btn .fp-price {
      display: block;
      font-weight: 400;
      font-size: var(--text-xs);
      color: var(--muted);
      margin-top: 2px;
    }
    .fp-size-btn.active .fp-price {
      color: rgba(255,255,255,0.8);
    }
    .fp-upload-zone {
      border: 2px dashed var(--border);
      border-radius: var(--radius-md);
      padding: var(--space-lg);
      text-align: center;
      cursor: pointer;
      transition: all var(--transition);
      background: var(--background);
    }
    .fp-upload-zone:hover,
    .fp-upload-zone.dragover {
      border-color: var(--primary);
      background: var(--primary-light);
    }
    .fp-upload-zone i {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: var(--space-sm);
      display: block;
    }
    .fp-upload-zone p {
      font-size: var(--text-sm);
      color: var(--muted);
    }
    .fp-wa-btn {
      width: 100%;
      padding: 14px;
      border-radius: var(--radius-md);
      background: #25D366;
      color: #fff;
      font-weight: 700;
      font-size: var(--text-base);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
      transition: all var(--transition);
      cursor: pointer;
      border: none;
    }
    .fp-wa-btn:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(37,211,102,0.35);
    }
    .fp-wa-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
      transform: none;
    }
    .fp-wa-btn i {
      font-size: 1.2rem;
    }
    .fp-photo-wrap {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      cursor: grab;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-color: #eee;
      border-radius: 1px;
      touch-action: none;
    }
    .fp-photo-wrap:active {
      cursor: grabbing;
    }
    .fp-photo-wrap.has-photo {
      background-color: #ddd;
    }
    .fp-cancel-side {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .fp-cancel-side .fp-filename {
      flex: 1;
      font-size: var(--text-xs);
      color: var(--muted);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .fp-cancel-btn {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--error);
      color: #fff;
      border: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--transition);
      font-size: 0.8rem;
      opacity: 0.85;
    }
    .fp-cancel-btn:hover {
      opacity: 1;
      transform: scale(1.12);
    }
    .fp-zoom-row {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    .fp-zoom-btn {
      width: 34px;
      height: 34px;
      border-radius: var(--radius-md);
      border: 2px solid var(--border);
      background: var(--background);
      color: var(--foreground);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--transition);
      font-size: 1rem;
      font-weight: 600;
    }
    .fp-zoom-btn:hover {
      border-color: var(--primary);
      background: var(--primary-light);
    }
    .fp-zoom-btn.fp-zoom-reset {
      width: auto;
      padding: 0 12px;
      font-size: var(--text-xs);
    }
    .fp-zoom-level {
      min-width: 36px;
      text-align: center;
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--foreground);
    }
    .fp-orient-btn {
      width: 100%;
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      padding: var(--space-sm) var(--space-md);
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--background);
      color: var(--foreground);
      font-weight: 600;
      font-size: var(--text-sm);
      cursor: pointer;
      transition: all var(--transition);
    }
    .fp-orient-btn:hover {
      border-color: var(--primary);
      background: var(--primary-light);
    }
    .fp-orient-btn.landscape {
      border-color: var(--primary);
      background: var(--primary-light);
    }
    .fp-orient-icon {
      font-size: 1.1rem;
      transition: transform var(--transition);
    }
    .fp-orient-btn.landscape .fp-orient-icon {
      transform: rotate(90deg);
    }
    .fp-name-input {
      width: 100%;
      padding: 10px 14px;
      border: 2px solid var(--border);
      border-radius: var(--radius-md);
      font-size: var(--text-sm);
      font-family: var(--font-sans);
      transition: all var(--transition);
      outline: none;
      background: var(--background);
      color: var(--foreground);
    }
    .fp-name-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
    }
    .fp-name-input::placeholder {
      color: var(--muted-light);
    }
    .fp-wa-note {
      font-size: var(--text-xs);
      color: var(--muted);
      text-align: center;
      line-height: var(--leading-normal);
      margin-top: -8px;
    }
    .fp-wa-note i {
      color: #25D366;
      margin-right: 4px;
    }
    .fp-wa-note strong {
      color: var(--foreground);
    }

    @media (min-width: 768px) {
      .fp-layout {
        flex-direction: row;
        align-items: flex-start;
      }
      .fp-wall {
        min-height: 400px;
        padding: var(--space-2xl);
        position: sticky;
        top: 100px;
      }
      .fp-sidebar {
        min-width: 280px;
        max-width: 340px;
      }
      .fp-sizes {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (min-width: 1024px) {
      .fp-wall {
        min-height: 460px;
      }
    }

    /* Product Card */
    .product-card {
      min-width: 260px;
      max-width: 280px;
      background: var(--background);
      border-radius: var(--radius-lg);
      padding: var(--space-md);
      box-shadow: var(--shadow-sm);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      scroll-snap-align: start;
      flex-shrink: 0;
      border: 1px solid var(--border);
      position: relative;
    }

    .product-card::before {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: calc(var(--radius-lg) + 1px);
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent, rgba(37, 99, 235, 0.08));
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }

    .product-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
      border-color: rgba(37, 99, 235, 0.2);
    }

    .product-card:hover::before {
      opacity: 1;
    }

    .product-image-wrap {
      position: relative;
      aspect-ratio: 2 / 3;
      border-radius: var(--radius-md);
      overflow: hidden;
      background: var(--accent);
      margin-bottom: 12px;
    }

    .product-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .product-card:hover .product-image-wrap img {
      transform: scale(1.05);
    }

    .product-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      padding: 4px 8px;
      border-radius: 6px;
      background: var(--error);
      color: #fff;
      font-size: var(--text-xs);
      font-weight: 700;
    }

    .product-wishlist {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
      color: var(--muted-light);
    }

    .product-wishlist:hover {
      color: var(--error);
      background: rgba(239, 68, 68, 0.1);
    }

    .product-wishlist.active {
      color: var(--error);
      background: rgba(239, 68, 68, 0.1);
    }

    .product-shop-btn {
      display: block;
      width: 100%;
      margin-top: var(--space-sm);
      padding: 8px;
      border-radius: var(--radius-md);
      background: #25D366;
      color: #fff;
      font-weight: 600;
      font-size: var(--text-xs);
      text-align: center;
      text-decoration: none;
      transition: all var(--transition);
      border: none;
      cursor: pointer;
    }
    .product-shop-btn:hover {
      background: #1da851;
      transform: translateY(-1px);
    }

    .product-name {
      font-family: var(--font-serif);
      font-size: var(--text-sm);
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: var(--space-xs);
    }

    .product-price {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
      margin-bottom: 6px;
    }

    .product-price .current {
      font-size: var(--text-lg);
      font-weight: 700;
      color: var(--primary);
    }

    .product-price .original {
      font-size: var(--text-sm);
      color: var(--muted-light);
      text-decoration: line-through;
    }

    .product-rating {
      display: flex;
      align-items: center;
      gap: var(--space-xs);
    }

    .product-rating .stars {
      display: flex;
      gap: 1px;
    }

    .product-rating .fa-star {
      font-size: var(--text-xs);
      color: var(--border);
    }

    .product-rating .fa-star.filled {
      color: var(--star);
      filter: drop-shadow(0 0 2px rgba(234, 179, 8, 0.3));
    }

    .product-rating .count {
      font-size: var(--text-xs);
      color: var(--muted);
    }

    /* ========================================
       Personalized Banner
    ======================================== */
    .promo-banner {
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), var(--accent), rgba(59, 130, 246, 0.06));
      padding: 40px var(--space-lg);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-xl);
      text-align: center;
    }

    .promo-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .promo-content h2 {
      font-family: var(--font-serif);
      font-size: var(--text-2xl);
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
      line-height: 1.2;
    }

    .promo-content p {
      font-size: var(--text-base);
      color: var(--muted);
      line-height: var(--leading-relaxed);
      max-width: 480px;
    }

    .promo-image {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 1;
    }

    .promo-image img {
      width: 100%;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }

    /* ========================================
       Categories
    ======================================== */
    .cat-scroll {
      display: flex;
      gap: var(--space-md);
      overflow-x: auto;
      padding-bottom: var(--space-sm);
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }
    .cat-scroll::-webkit-scrollbar {
      height: 6px;
    }
    .cat-scroll::-webkit-scrollbar-track {
      background: var(--accent);
      border-radius: 3px;
    }
    .cat-scroll::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 3px;
    }

    .cat-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      background: var(--background);
      border: 1px solid var(--border);
      min-width: 220px;
      max-width: 240px;
      flex-shrink: 0;
      scroll-snap-align: start;
    }

    .cat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(37, 99, 235, 0.15);
    }

    .cat-card img {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .cat-card:hover img {
      transform: scale(1.05);
    }

    .cat-card .info {
      padding: var(--space-md) 20px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .cat-card .icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.02));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: var(--text-lg);
      border: 1px solid rgba(37, 99, 235, 0.1);
    }

    .cat-card .info h3 {
      font-family: var(--font-serif);
      font-size: var(--text-base);
      font-weight: 600;
      flex: 1;
    }

    .cat-card .shop-btn {
      padding: 6px var(--space-md);
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      font-size: var(--text-xs);
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: all var(--transition);
      white-space: nowrap;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
    }

    .cat-card .shop-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }

    /* ========================================
       Community - Video Reels Carousel
    ======================================== */
    .community-grid {
      display: flex;
      gap: var(--space-md);
      overflow-x: auto;
      padding-bottom: 12px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .community-grid::-webkit-scrollbar {
      height: 6px;
    }

    .community-grid::-webkit-scrollbar-track {
      background: var(--accent);
      border-radius: 3px;
    }

    .community-grid::-webkit-scrollbar-thumb {
      background: var(--border);
      border-radius: 3px;
    }

    .video-card {
      min-width: 280px;
      max-width: 320px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--accent);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      scroll-snap-align: start;
      flex-shrink: 0;
    }

    .video-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: rgba(37, 99, 235, 0.15);
    }

    .video-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      background: #000;
    }

    .video-wrap iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .community-scroll-btns {
      display: none;
      gap: 8px;
    }

    .community-scroll-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--background);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--transition);
      color: var(--foreground);
      cursor: pointer;
    }

    .community-scroll-btn:hover {
      background: var(--accent);
    }

    .community-scroll-header {
      display: flex;
      justify-content: flex-end;
      margin-bottom: 12px;
    }

    /* ========================================
       About Section
    ======================================== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-xl);
      align-items: center;
    }
    .about-content {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }
    .about-content h2 {
      font-family: var(--font-serif);
      font-size: var(--text-2xl);
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
    }
    .about-content h2 .gold-text {
      color: var(--gold);
    }
    .about-content p {
      color: var(--muted);
      line-height: var(--leading-relaxed);
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--space-md);
      margin-top: var(--space-sm);
    }
    .about-stat {
      text-align: center;
      padding: var(--space-md);
      background: var(--background);
      border-radius: var(--radius-md);
      border: 1px solid var(--border);
    }
    .about-stat .num {
      font-family: var(--font-serif);
      font-size: var(--text-2xl);
      font-weight: 700;
      color: var(--primary);
    }
    .about-stat .label {
      font-size: var(--text-xs);
      color: var(--muted);
      margin-top: var(--space-xs);
    }
    @media (min-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
      }
      .about-stats {
        grid-template-columns: repeat(4, 1fr);
      }
      .about-stat .num {
        font-size: var(--text-3xl);
      }
    }

    /* ========================================
       FAQ Section
    ======================================== */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: var(--space-sm);
    }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--background);
      overflow: hidden;
      transition: box-shadow var(--transition);
    }
    .faq-item:hover {
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--space-md);
      padding: var(--space-md) var(--space-lg);
      font-size: var(--text-base);
      font-weight: 600;
      color: var(--foreground);
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--font-sans);
      transition: background var(--transition);
    }
    .faq-question:hover {
      background: var(--accent);
    }
    .faq-question .faq-icon {
      flex-shrink: 0;
      font-size: var(--text-sm);
      color: var(--primary);
      transition: transform var(--transition);
    }
    .faq-item.open .faq-question .faq-icon {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
    }
    .faq-answer p {
      padding: 0 var(--space-lg) var(--space-md);
      font-size: var(--text-sm);
      color: var(--muted);
      line-height: var(--leading-relaxed);
    }

    /* ========================================
       Contact Section
    ======================================== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-xl);
    }
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }
    .contact-info h2 {
      font-family: var(--font-serif);
      font-size: var(--text-2xl);
      font-weight: 700;
      letter-spacing: var(--tracking-tight);
    }
    .contact-info > p {
      color: var(--muted);
    }
    .contact-details {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }
    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: var(--space-md);
    }
    .contact-detail i {
      width: 20px;
      color: var(--primary);
      font-size: var(--text-lg);
      margin-top: 2px;
    }
    .contact-detail div {
      flex: 1;
    }
    .contact-detail .cd-label {
      font-size: var(--text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: var(--tracking-wide);
      color: var(--muted);
    }
    .contact-detail .cd-value {
      font-size: var(--text-base);
      color: var(--foreground);
    }
    .contact-detail .cd-value a {
      color: var(--primary);
    }
    .contact-detail .cd-value a:hover {
      text-decoration: underline;
    }
    .contact-map {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      width: 100%;
      min-height: 280px;
    }
    .contact-map iframe {
      width: 100%;
      height: 100%;
      min-height: 280px;
      border: 0;
      display: block;
    }
    @media (min-width: 768px) {
      .contact-grid {
        grid-template-columns: 1fr 1fr;
      }
      .contact-map {
        min-height: 350px;
      }
      .contact-map iframe {
        min-height: 350px;
      }
    }
    ======================================== */
    .footer .logo {
      font-family: var(--font-serif);
      font-size: var(--text-lg);
      font-weight: 700;
      text-decoration: none;
    }
    .footer .logo .primary {
      color: var(--primary);
    }
    .footer .logo .secondary {
      color: var(--foreground);
    }

    .footer {
      border-top: 1px solid var(--border);
      background: var(--accent);
      padding: 40px 0 var(--space-lg);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-lg);
    }

    @media (max-width:767px){
      .footer-grid .footer-brand {
        grid-column: 1 / -1;
      }
      .footer-grid > div:last-child {
        grid-column: 1 / -1;
      }
    }

    .footer-brand p {
      font-size: var(--text-sm);
      color: var(--muted);
      margin-top: 12px;
      max-width: 320px;
    }

    .footer-social {
      display: flex;
      gap: var(--space-sm);
      margin-top: var(--space-md);
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: var(--radius-md);
      background: var(--background);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
    }

    .footer-social a:hover {
      background: var(--primary);
      color: #fff;
    }

    .footer h3 {
      font-size: var(--text-xs);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: var(--tracking-wide);
      color: var(--foreground);
      margin-bottom: var(--space-md);
    }

    .footer ul li {
      margin-bottom: 10px;
    }

    .footer ul a {
      font-size: var(--text-sm);
      color: var(--muted);
      transition: color var(--transition);
    }

    .footer ul a:hover {
      color: var(--foreground);
    }

    .newsletter-form {
      display: flex;
      gap: var(--space-sm);
    }

    .newsletter-form input {
      flex: 1;
      min-width: 0;
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      background: var(--background);
      font-size: var(--text-sm);
      outline: none;
      transition: border-color var(--transition);
    }

    .newsletter-form input:focus {
      border-color: var(--primary);
    }

    .newsletter-form button {
      padding: 10px 14px;
      border-radius: var(--radius-md);
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }

    .newsletter-form button:hover {
      background: var(--primary-dark);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      margin-top: var(--space-lg);
      border-top: 1px solid var(--border);
      font-size: var(--text-xs);
      color: var(--muted);
    }

    /* ========================================
       Entrance Animations
    ======================================== */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       Responsive Breakpoints
    ======================================== */

    /* Tablet (768px) */
    @media (min-width: 768px) {
      .container {
        padding: 0 var(--space-lg);
      }

      .section {
        padding: var(--space-2xl) 0;
      }

      .section-title h2 {
        font-size: var(--text-3xl);
      }

      .best-sellers-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .best-sellers-header .header-left {
        text-align: left;
      }

      .scroll-btns {
        display: flex;
      }

      .community-scroll-btns {
        display: flex;
      }

      .header-inner {
        height: 72px;
      }

      .header-nav {
        display: flex;
      }

      .menu-toggle {
        display: none;
      }

      .whatsapp-btn {
        width: auto;
        height: auto;
        padding: 8px 16px;
        border-radius: 999px;
      }
      .whatsapp-btn .wa-text {
        display: inline;
      }

      .hero {
        padding: 16px;
      }

      .hero-inner {
        border-radius: var(--radius-xl);
      }

      .hero-slide {
        flex-direction: row;
        padding: var(--space-3xl) var(--space-2xl);
        text-align: left;
        gap: 40px;
        align-items: center;
        min-height: 420px;
      }

      .hero-content {
        padding: 0;
        max-width: 400px;
        gap: var(--space-md);
      }

      .hero-content h1 {
        font-size: var(--text-4xl);
      }

      .hero-content p {
        font-size: var(--text-sm);
      }

      .hero-actions {
        justify-content: flex-start;
        gap: 12px;
      }

      .hero-actions .btn-lg {
        padding: 14px var(--space-xl);
        font-size: var(--text-base);
      }

      .hero-image {
        flex: 1;
        max-width: 480px;
        height: auto;
      }

      .hero-image img {
        border-radius: var(--radius-lg);
        aspect-ratio: 4 / 3;
        height: auto;
        object-fit: cover;
      }

      .hero-arrow {
        display: flex;
      }

      .promo-banner {
        flex-direction: row;
        padding: var(--space-2xl) 40px;
        text-align: left;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Laptop (1024px) */
    @media (min-width: 1024px) {
      .section-title h2 {
        font-size: var(--text-3xl);
      }

      .hero-content h1 {
        font-size: var(--text-5xl);
      }

      .hero-content p {
        font-size: var(--text-base);
      }

      .hero-image {
        max-width: 560px;
      }

      .hero-slide {
        min-height: 480px;
      }

      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
      }
    }

    /* Desktop (1440px) */
    @media (min-width: 1440px) {
      .container {
        padding: 0 var(--space-xl);
      }

      .hero-slide {
        padding: var(--space-4xl) var(--space-3xl);
        min-height: 520px;
      }

      .promo-banner {
        padding: 56px var(--space-2xl);
      }
    }

    /* Reduced Motion */
    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }

      .fade-up {
        opacity: 1;
        transform: none;
      }
    }