  /* ===== CUSTOM STYLES ===== */

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
  }

  /* Selection color */
  ::selection {
    background-color: #f9c2cc;
    color: #3d141a;
  }

  /* ===== NAVBAR ===== */
  #navbar {
    background: transparent;
  }

  #navbar.scrolled {
    background: rgba(255, 252, 248, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(123, 45, 59, 0.08);
  }

  #navbar.scrolled .nav-link {
    color: #5c1f2a;
  }

  #navbar.scrolled .font-display {
    color: #7B2D3B;
  }

  /* ===== HERO GEOMETRIC SHAPES ===== */
  .hero-geo {
    animation: float 8s ease-in-out infinite;
  }

  .hero-geo:nth-child(2) { animation-delay: -2s; animation-duration: 10s; }
  .hero-geo:nth-child(3) { animation-delay: -4s; animation-duration: 7s; }
  .hero-geo:nth-child(4) { animation-delay: -1s; animation-duration: 9s; }
  .hero-geo:nth-child(5) { animation-delay: -3s; animation-duration: 11s; }
  .hero-geo:nth-child(6) { animation-delay: -5s; animation-duration: 8s; }

  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-12px) rotate(2deg); }
    66% { transform: translateY(6px) rotate(-1deg); }
  }

  /* ===== SCROLL REVEAL ===== */
  /* Default state: fully visible (progressive enhancement) */
  .reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  /* Animated state applied by JS only */
  @media (prefers-reduced-motion: no-preference) {
    .reveal.reveal-animate {
      opacity: 0;
      transform: translateY(30px);
    }
    .reveal.reveal-animate.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ===== MOBILE MENU ===== */
  #mobile-menu {
    animation: slideDown 0.25s ease;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ===== PRODUCT CARDS ===== */
  .reveal {
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      opacity: 0;
      transform: translateY(24px);
    }
    .reveal.revealed {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Staggered delays for product grid */
  #products .reveal:nth-child(1) { transition-delay: 0s; }
  #products .reveal:nth-child(2) { transition-delay: 0.08s; }
  #products .reveal:nth-child(3) { transition-delay: 0.16s; }
  #products .reveal:nth-child(4) { transition-delay: 0.24s; }
  #products .reveal:nth-child(5) { transition-delay: 0.32s; }
  #products .reveal:nth-child(6) { transition-delay: 0.40s; }

  /* ===== BUTTON HOVER EFFECTS ===== */
  a:hover {
    transition: all 0.2s ease;
  }

  /* ===== SCROLLBAR ===== */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: #fffcf8;
  }
  ::-webkit-scrollbar-thumb {
    background: #f9c2cc;
    border-radius: 4px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #f4919e;
  }
