@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==========================================
   DESIGN SYSTEM VARIABLES & RESET
   ========================================== */
:root {
  --color-primary: #6E2B2B;        /* Deep Oxblood/Temple tone */
  --color-accent: #B8912F;         /* Aged Brass/Gold */
  --color-bg: #FAF4EA;             /* Warm Ivory */
  --color-bg-alt: #F4EBE0;         /* Slightly darker Warm Ivory */
  --color-text-primary: #2A2422;   /* Charcoal */
  --color-text-secondary: #8C8479; /* Incense-smoke grey */
  --color-success: #6B7A5E;        /* Muted Sage */
  --color-border: #E5DDD0;         /* Light warm grey */
  
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
  --max-width: 1280px;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
}

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

/* ==========================================
   COMMON COMPONENTS
   ========================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.btn-primary:hover {
  background-color: var(--color-accent);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--color-accent);
  color: var(--color-bg);
}

.btn-gold:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Star rating utility */
.rating-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-accent);
  font-size: 0.875rem;
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background-color: var(--color-accent);
}

.section-title p {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  font-style: italic;
  font-family: var(--font-display);
  margin-top: 0.5rem;
}

/* ==========================================
   ROUTING VIEWS (SPA-like Toggling)
   ========================================== */
.view {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.view.active {
  display: block;
  opacity: 1;
}

/* ==========================================
   GLOBAL HEADER & NAVIGATION
   ========================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

/* Homepage-specific header override at scroll 0 for transparent hero overlap */
.on-home .header-nav:not(.scrolled) .menu-link {
  color: rgba(250, 244, 234, 0.9);
}

.on-home .header-nav:not(.scrolled) .menu-link::after {
  background-color: var(--color-accent);
}

.on-home .header-nav:not(.scrolled) .menu-link:hover {
  color: var(--color-accent);
}

.on-home .header-nav:not(.scrolled) .menu-link.active {
  color: var(--color-accent);
}

.on-home .header-nav:not(.scrolled) .nav-btn {
  color: rgba(250, 244, 234, 0.9);
}

.on-home .header-nav:not(.scrolled) .nav-btn:hover {
  color: var(--color-accent);
}

/* Make header logo pure white/ivory on homepage transparent header for visibility */
.on-home .header-nav:not(.scrolled) .logo-wrapper img {
  filter: grayscale(1) invert(1) brightness(1.2);
}

.header-nav.scrolled {
  background-color: rgba(250, 244, 234, 0.95); /* Ivory with glassmorphism */
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(42, 36, 34, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo-wrapper img {
  height: 48px;
  transition: var(--transition-smooth);
}

.header-nav.scrolled .logo-wrapper img {
  height: 40px;
}

.main-menu {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.menu-item {
  position: relative;
}

.menu-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-primary);
  padding: 1.8rem 0;
  display: inline-block;
  transition: var(--transition-fast);
  position: relative;
}

.menu-link::after {
  content: '';
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-link:hover {
  color: var(--color-primary);
}

.menu-link:hover::after, .menu-link.active::after {
  width: 100%;
}

.menu-link.active {
  color: var(--color-primary);
}

/* Fragrance-First Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 800px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(42, 36, 34, 0.08);
  display: grid;
  grid-template-columns: repeat(3, 1fr) 240px;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-col h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}

.mega-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mega-col ul a {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.mega-col ul a:hover {
  color: var(--color-primary);
  padding-left: 4px;
}

.mega-promo {
  background-color: var(--color-bg-alt);
  padding: 1.5rem;
  border-left: 2px solid var(--color-accent);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mega-promo p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* Nav Icons Group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-btn {
  color: var(--color-text-primary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-btn:hover {
  color: var(--color-primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--color-accent);
  color: var(--color-bg);
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--color-text-primary);
}

@media (max-width: 992px) {
  .main-menu {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }
}

/* ==========================================
   HOMEPAGE: HERO SECTION WITH SMOKE EFFECT
   ========================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #1e1614; /* Deep backup for high contrast logo/text */
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
    rgba(22, 16, 14, 0.98) 0%, 
    rgba(22, 16, 14, 0.88) 35%, 
    rgba(22, 16, 14, 0.3) 70%, 
    rgba(22, 16, 14, 0.7) 100%);
  z-index: 2;
}

/* Dark gradient to make transparent navigation menu items stand out */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: linear-gradient(to bottom, rgba(22, 16, 14, 0.7) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* Anchors the incense burner subject to the right margin */
}

/* SVG smoke drift animation container */
.smoke-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.smoke-cloud {
  opacity: 0.08;
  animation: float-smoke 30s infinite linear;
}

.smoke-cloud-2 {
  opacity: 0.05;
  animation: float-smoke 45s infinite linear reverse;
  animation-delay: -10s;
}

@keyframes float-smoke {
  0% {
    transform: translate3d(0, 50px, 0) scale(1) rotate(0deg);
  }
  50% {
    transform: translate3d(20px, -50px, 0) scale(1.1) rotate(10deg);
  }
  100% {
    transform: translate3d(0, -150px, 0) scale(1.2) rotate(20deg);
  }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 650px;
  color: var(--color-bg);
  padding-top: 80px; /* offset header */
}

.hero-est-badge {
  display: inline-block;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  background: rgba(184, 145, 47, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-divider {
  width: 80px;
  height: 2px;
  background-color: var(--color-accent);
  margin: 1.5rem 0 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-content h1 {
  color: var(--color-bg);
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--color-border);
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Staggered slide up animation for Hero Load */
.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: hero-reveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes hero-reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
}

/* ==========================================
   HOMEPAGE: HERITAGE TIMELINE RIBBON
   ========================================== */
.timeline-section {
  background-color: #2E1414; /* Deep mahogany/oxblood backplate */
  color: var(--color-bg);
  padding: 6rem 0;
  overflow: hidden;
  border-bottom: 4px solid var(--color-accent);
  position: relative;
}

/* Subtle luxury textured background pattern for timeline section */
.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(184, 145, 47, 0.05) 0%, transparent 70%),
              radial-gradient(circle at 80% 70%, rgba(184, 145, 47, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 5;
}

.timeline-header h3 {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.timeline-header p {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.timeline-container-vertical {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

/* Central timeline line */
.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom, 
    rgba(184, 145, 47, 0.1) 0%, 
    var(--color-accent) 15%, 
    var(--color-accent) 85%, 
    rgba(184, 145, 47, 0.1) 100%);
  z-index: 1;
}

/* Timeline alternating rows */
.timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  width: 100%;
}

.timeline-row:nth-child(even) {
  flex-direction: row-reverse;
}

/* Spacious, balanced grid card column */
.timeline-col-card {
  width: 44%;
  background: rgba(250, 244, 234, 0.02); /* Ivory semi-trans */
  border: 1px solid rgba(184, 145, 47, 0.15);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  z-index: 5;
}

/* Card inner titles */
.timeline-col-card h4 {
  font-size: 1.25rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.timeline-col-card p {
  font-size: 0.875rem;
  color: var(--color-border);
  line-height: 1.6;
  margin: 0;
}

/* Representative Illustrative Icon medallion inside cards */
.timeline-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(184, 145, 47, 0.08);
  border: 1px solid rgba(184, 145, 47, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  flex-shrink: 0;
}

.timeline-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  transition: stroke 0.4s ease;
}

/* Spacer column to push layouts */
.timeline-col-spacer {
  width: 44%;
}

/* Center circle medallion year badge */
.timeline-center-badge {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-color: #2E1414;
  border: 2px solid rgba(184, 145, 47, 0.4);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.timeline-center-year {
  color: var(--color-bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  transition: color 0.4s ease;
}

/* Active Highlight triggers (from Scroll observer or hover) */
.timeline-row:hover .timeline-col-card, .timeline-row.active .timeline-col-card {
  background: rgba(250, 244, 234, 0.07);
  border-color: var(--color-accent);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(184, 145, 47, 0.18);
}

.timeline-row:hover .timeline-card-icon, .timeline-row.active .timeline-card-icon {
  background: var(--color-accent);
  color: #2E1414;
  transform: rotate(360deg);
}

.timeline-row:hover .timeline-card-icon svg, .timeline-row.active .timeline-card-icon svg {
  stroke: #2E1414;
}

.timeline-row:hover .timeline-center-badge, .timeline-row.active .timeline-center-badge {
  background-color: var(--color-accent);
  border-color: #FAF4EA;
  box-shadow: 0 0 25px rgba(184, 145, 47, 0.8), 0 4px 15px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%) scale(1.12);
}

.timeline-row:hover .timeline-center-year, .timeline-row.active .timeline-center-year {
  color: #2E1414;
}

/* Mobile responsive timeline collapse */
@media (max-width: 768px) {
  .timeline-container-vertical {
    padding: 2rem 1.25rem;
  }
  
  .timeline-line {
    left: 20px;
    transform: none;
    background: linear-gradient(to bottom, 
      rgba(184, 145, 47, 0.1) 0%, 
      var(--color-accent) 15%, 
      var(--color-accent) 85%, 
      rgba(184, 145, 47, 0.1) 100%);
  }

  .timeline-row {
    flex-direction: column !important;
    align-items: flex-start;
    margin-bottom: 3.5rem;
  }

  .timeline-col-card {
    width: 100%;
    margin-left: 35px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .timeline-col-spacer {
    display: none;
  }

  .timeline-center-badge {
    left: 20px;
    top: 20px;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
  }

  .timeline-center-year {
    font-size: 0.9rem;
  }

  .timeline-row:hover .timeline-center-badge, .timeline-row.active .timeline-center-badge {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ==========================================
   HOMEPAGE: SHOP BY FRAGRANCE / CATEGORY
   ========================================== */
.category-section {
  padding: 6rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  background-color: #222;
  border-radius: 12px;
}

.category-img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-card:hover .category-img {
  transform: scale(1.04);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(42, 36, 34, 0.85) 0%, rgba(42, 36, 34, 0.2) 60%, rgba(42, 36, 34, 0.1) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  color: var(--color-bg);
}

.category-card h3 {
  color: var(--color-bg);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.category-card h3 span {
  font-family: var(--font-body);
  display: inline-block;
  position: relative;
}

.category-card h3 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.category-card:hover h3 span::after {
  width: 100%;
}

.category-card p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    height: 300px;
  }
}

/* ==========================================
   PRODUCT CARDS (Homepage + PLP grids)
   ========================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem 1.8rem;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg);
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-border);
  box-shadow: 0 15px 35px rgba(110, 43, 43, 0.08);
}

.product-card-top {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background-color: var(--color-bg-alt);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-card-top {
  border-color: var(--color-accent);
}

.product-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  z-index: 5;
}

.product-card-badge.badge-sale {
  background-color: var(--color-accent);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card-img.img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-card-img.img-hover {
  opacity: 1;
  transform: scale(1.04);
}

.product-card:hover .product-card-img:not(.img-hover) {
  transform: scale(1.04);
}

/* Quick Add Button Reveal */
.quick-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(184, 145, 47, 0.96); /* Aged brass/gold panel */
  color: var(--color-bg);
  text-align: center;
  padding: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 10;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
}

.quick-add-btn:hover {
  background-color: var(--color-primary); /* Morphs to oxblood on hover */
}

.product-card:hover .quick-add-btn {
  transform: translateY(0);
}

.product-card-info {
  padding: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-primary);
  transition: var(--transition-fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card-title:hover {
  color: var(--color-primary);
}

.product-card-price {
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-card-price .price-old {
  color: var(--color-text-secondary);
  text-decoration: line-through;
  font-weight: 400;
  font-size: 0.85rem;
}

.product-card-price .price-new {
  color: var(--color-primary);
}

/* ==========================================
   HOMEPAGE: BESTSELLERS & TRUST BLOCKS
   ========================================== */
.bestsellers-section {
  padding: 6rem 0;
  background-color: var(--color-bg-alt);
}

/* Why Liberty Trust Block */
.trust-section {
  padding: 6rem 0;
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.trust-card:hover {
  transform: translateY(-5px);
}

.trust-icon-wrapper {
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.trust-icon-wrapper svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-accent);
  stroke-width: 1.5;
  fill: none;
  stroke-dasharray: 200;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 2s ease-out, transform 0.3s ease, filter 0.3s ease;
}

.trust-card:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(184, 145, 47, 0.4));
}

.trust-card.animate svg {
  animation: draw-icon 1.5s forwards ease-out;
}

@keyframes draw-icon {
  from {
    stroke-dashoffset: 200;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.trust-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ==========================================
   HOMEPAGE: TESTIMONIAL CAROUSEL
   ========================================== */
.testimonial-section {
  padding: 6rem 0;
  background-color: var(--color-bg-alt);
  overflow: hidden;
}

.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 2rem;
}

.testimonial-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide {
  min-width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--color-primary);
  line-height: 1.4;
  margin-bottom: 2rem;
}

.testimonial-author {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--color-text-primary);
}

.testimonial-prod {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin-top: 0.2rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--color-primary);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .testimonial-quote {
    font-size: 1.5rem;
  }
}

/* ==========================================
   HOMEPAGE: FAQ ACCORDION
   ========================================== */
.faq-section {
  padding: 6rem 0;
  background-color: var(--color-bg);
}

.faq-container {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-primary);
}

.faq-icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--color-accent);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 0 1.5rem;
}

.faq-content p {
  color: var(--color-text-primary);
  font-size: 0.95rem;
  padding-bottom: 1.5rem;
  line-height: 1.6;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* ==========================================
   PRODUCT LISTING PAGE (PLP) VIEWS
   ========================================== */
.plp-banner {
  height: 240px;
  position: relative;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-bg);
  margin-top: 80px; /* Offset header */
  overflow: hidden;
}

.plp-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(110, 43, 43, 0.7);
  z-index: 1;
}

.plp-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plp-banner-content {
  position: relative;
  z-index: 2;
}

.plp-banner h1 {
  color: var(--color-bg);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.plp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}

@media (max-width: 992px) {
  .plp-layout {
    grid-template-columns: 1fr;
  }
}

/* Sidebar Filters */
.filter-sidebar {
  border-right: 1px solid var(--color-border);
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .filter-sidebar {
    display: none; /* Collapsed under bottom sheet on mobile, let's toggle with class */
    border: none;
    padding: 0;
  }
  .filter-sidebar.mobile-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 200;
    padding: 2rem;
    overflow-y: auto;
  }
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  color: var(--color-text-primary);
  cursor: pointer;
}

.filter-label input[type="checkbox"] {
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

/* PLP Top Controls */
.plp-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.active-filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  color: var(--color-text-primary);
}

.filter-chip button {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1;
}

.filter-chip button:hover {
  color: var(--color-primary);
}

/* Grid Reflow Animation */
.product-grid-plp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: opacity 0.2s ease;
}

@media (max-width: 1200px) {
  .product-grid-plp {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .product-grid-plp {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PRODUCT DETAIL PAGE (PDP) VIEWS
   ========================================== */
.pdp-section {
  margin-top: 80px; /* Offset header */
  padding: 4rem 0;
}

.pdp-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 4rem;
}

@media (max-width: 992px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* Gallery styles */
.pdp-gallery {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

.pdp-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pdp-thumbnail {
  width: 60px;
  height: 60px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition-fast);
}

.pdp-thumbnail.active, .pdp-thumbnail:hover {
  opacity: 1;
  border-color: var(--color-primary);
}

.pdp-main-image {
  flex-grow: 1;
  aspect-ratio: 1;
  max-width: 400px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-bg-alt);
  overflow: hidden;
  position: relative;
}

.pdp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-out;
  transform-origin: center center;
}

@media (max-width: 576px) {
  .pdp-gallery {
    flex-direction: column-reverse;
  }
  .pdp-thumbnails {
    flex-direction: row;
  }
}

/* PDP Info Details Panel */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pdp-brand-fact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(184, 145, 47, 0.1);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 4px;
  align-self: flex-start;
}

.pdp-title {
  font-size: 2.5rem;
  line-height: 1.15;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.pdp-price-row .price-old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--color-text-secondary);
  font-weight: 400;
}

/* Fragrance Note Breakdown style (similar to Sadhna) */
.fragrance-notes-card {
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  border-radius: 2px;
}

.fragrance-notes-card h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.notes-scale {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.note-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: 0.875rem;
}

.note-label {
  font-weight: 600;
  color: var(--color-primary);
}

.note-val {
  color: var(--color-text-primary);
}

/* Add to Cart Panel */
.pdp-add-panel {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.qty-selector {
  display: inline-flex;
  border: 1px solid var(--color-border);
  align-items: center;
}

.qty-btn {
  width: 40px;
  height: 48px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-input {
  width: 40px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
}

.btn-add-to-cart {
  flex-grow: 1;
  height: 48px;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-add-to-cart.success {
  background-color: var(--color-success);
}

/* PDP accordions */
.pdp-accordions {
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.pdp-accordion-item {
  border-bottom: 1px solid var(--color-border);
}

.pdp-accordion-trigger {
  width: 100%;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pdp-accordion-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.pdp-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pdp-accordion-content p {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  padding-bottom: 1.25rem;
  line-height: 1.6;
}

.pdp-accordion-item.active .pdp-accordion-icon {
  transform: rotate(45deg);
}

/* ==========================================
   MINI-CART DRAWER
   ========================================== */
.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 36, 34, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  box-shadow: -5px 0 30px rgba(42, 36, 34, 0.15);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer-header h3 {
  font-size: 1.25rem;
}

.cart-drawer-close {
  font-size: 1.5rem;
  color: var(--color-text-secondary);
  transition: var(--transition-fast);
}

.cart-drawer-close:hover {
  color: var(--color-primary);
}

.cart-drawer-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-empty-message {
  text-align: center;
  color: var(--color-text-secondary);
  margin-top: 4rem;
  font-style: italic;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer-overlay.active .cart-item {
  opacity: 1;
  transform: translateX(0);
}

.cart-drawer-overlay.active .cart-item:nth-child(1) { transition-delay: 0.05s; }
.cart-drawer-overlay.active .cart-item:nth-child(2) { transition-delay: 0.1s; }
.cart-drawer-overlay.active .cart-item:nth-child(3) { transition-delay: 0.15s; }
.cart-drawer-overlay.active .cart-item:nth-child(4) { transition-delay: 0.2s; }
.cart-drawer-overlay.active .cart-item:nth-child(5) { transition-delay: 0.25s; }

.cart-item-img {
  width: 80px;
  height: 80px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 500;
}

.cart-item-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
}

.cart-item-remove {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

.cart-item-remove:hover {
  color: var(--color-primary);
}

.cart-drawer-footer {
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-alt);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.cart-checkout-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--color-primary);
  color: var(--color-bg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.cart-checkout-btn:hover {
  background-color: var(--color-accent);
}

/* ==========================================
   GLOBAL FOOTER
   ========================================== */
.main-footer {
  background-color: #221A18; /* Dark charcoal/brown */
  color: var(--color-bg);
  padding: 5rem 0 2rem;
  border-top: 3px solid var(--color-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-col img {
  max-width: 180px;
  filter: grayscale(1) invert(1) brightness(1.2); /* Turns logo text white for contrast on dark footer background, preserving logo detail */
}

.footer-logo-col p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-col h4 {
  color: var(--color-accent);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col ul a {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

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

.newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.newsletter-input {
  flex-grow: 1;
  background-color: rgba(250, 244, 234, 0.08);
  border: 1px solid rgba(250, 244, 234, 0.2);
  padding: 0.75rem 1rem;
  color: var(--color-bg);
  font-size: 0.875rem;
}

.newsletter-btn {
  background-color: var(--color-accent);
  color: var(--color-bg);
  padding: 0 1.5rem;
  font-weight: 600;
}

.newsletter-btn:hover {
  background-color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 244, 234, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-secondary);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================
   SCROLL REVEAL UTILITY
   ========================================== */
.reveal-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   MOBILE NAVIGATION DRAWER & FILTER STYLES
   ========================================== */
/* Mobile Navigation Drawer styles */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -280px; /* Start hidden on the left */
  width: 280px;
  height: 100vh;
  background-color: var(--color-bg); /* Warm Ivory */
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 250; /* Above regular header */
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 2rem 1.5rem;
}

.mobile-nav-drawer.open {
  transform: translateX(280px); /* Slide in */
}

/* Backdrop for Mobile Menu */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(42, 36, 34, 0.5);
  backdrop-filter: blur(4px);
  z-index: 240;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.mobile-nav-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-nav-close {
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0;
}

.mobile-nav-links a {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-primary);
  display: block;
  transition: var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

/* Mobile Filter button on PLP */
.mobile-filter-btn {
  display: none; /* Hidden on desktop */
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-primary);
  cursor: pointer;
  border-radius: 4px;
}

.mobile-filter-header {
  display: none; /* Hidden on desktop */
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
}

.mobile-filter-header h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .mobile-filter-btn {
    display: inline-flex;
  }
  .mobile-filter-header {
    display: flex;
  }
}

/* ==========================================
   REDUCED MOTION SUPPORT
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  .smoke-overlay, .smoke-cloud, .smoke-cloud-2 {
    display: none !important;
    animation: none !important;
  }
  .animate-slide-up {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .trust-card.animate svg {
    animation: none !important;
    stroke-dashoffset: 0 !important;
  }
  * {
    transition-duration: 0s !important;
    animation-duration: 0s !important;
  }
}
