        :root { 
            --coral-pink: #FF5C8D; 
            --ocean-blue: #00BFFF; 
            --soft-white: #FFFFFF; 
            --charcoal: #111111; 
            --sand-beige: #F9F6F1; 
        }
        body { font-family: 'Inter', sans-serif; background-color: var(--soft-white); color: var(--charcoal); scroll-behavior: smooth; overflow-x: hidden; }
        .font-serif { font-family: 'Cormorant Garamond', serif; }
        
        /* Navigation Transitions */
        .page-view { display: none; opacity: 0; transition: opacity 0.6s ease-in-out; }
        .page-view.active { display: block; opacity: 1; }

        .nav-scrolled { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(15px); padding: 1rem 2rem !important; border-bottom: 1px solid rgba(0,0,0,0.05); }

        /* Cart & Sidebars */
        .sidebar { 
            position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 450px; 
            background: white; z-index: 500; transform: translateX(100%); 
            transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            box-shadow: -20px 0 60px rgba(0,0,0,0.1);
        }
        .sidebar.open { transform: translateX(0); }

        /* Overlay Modals */
        .modal-overlay { 
            position: fixed; inset: 0; z-index: 600; background: rgba(255,255,255,0.98); 
            display: none; overflow-y: auto; padding: 5vh 5vw;
        }
        .modal-overlay.active { display: block; animation: fadeIn 0.4s ease; }

        @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

        /* Content Blocks */
        .reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
        .reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }

        .btn-coral { background: var(--coral-pink); color: white; transition: all 0.4s; }
        .btn-coral:hover { background: #e04a78; transform: scale(1.02); }

        .article-card:hover img { transform: scale(1.05); }
        .article-card img { transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1); }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .font-serif { font-size: 3.5rem !important; line-height: 1 !important; }
            .hero-title { font-size: 4.5rem !important; }
            nav { padding: 1rem !important; }
        }
/* --- NAVIGATION BASE --- */
#main-nav {
  background-color: transparent;
  transition: all 0.5s ease;
  z-index: 100;
}

/* Change nav on scroll */
#main-nav.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  color: #111;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Desktop nav links */
#main-nav .nav-link {
  transition: color 0.3s ease;
}

/* Hamburger button for mobile */
#menu-btn {
  display: none;
  cursor: pointer;
}

#menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Mobile menu overlay */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.9);
  z-index: 50;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

#mobile-menu a, #mobile-menu button {
  font-size: 1.5rem;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
}

#mobile-menu a:hover, #mobile-menu button:hover {
  color: #FF5C8D;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {
  /* Hide desktop nav links */
  #main-nav .lg\\:flex {
    display: none !important;
  }

  /* Show hamburger */
  #menu-btn {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  /* Show mobile menu when active */
  #mobile-menu.active {
    display: flex;
  }
}

/* OPTIONAL: change hamburger to X when open */
#menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#menu-btn.open span:nth-child(2) {
  opacity: 0;
}

#menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
