/* ==========================================================================
   NINEOX — LUXURY MAROON × IVORY HERITAGE DESIGN SYSTEM
   Brand Direction: "Luxury Maroon × Ivory Heritage"
   Primary: #7A0C20, #8E1028, #5A0717
   Neutrals: Ivory #F7F3EC, Warm Cream #EFE8DC, Champagne #D8C5A5, Soft Taupe #B8AA98, Charcoal #211D1B
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-primary: #7A0C20;
  --color-primary-dark: #5A0717;
  --color-primary-light: #8E1028;
  --color-ivory: #F7F3EC;
  --color-cream: #EFE8DC;
  --color-champagne: #D8C5A5;
  --color-champagne-light: #EDE3D0;
  --color-taupe: #B8AA98;
  --color-charcoal: #211D1B;
  --color-charcoal-muted: #564244;
  --color-border: #E2D7C7;
  --color-white: #FFFFFF;
}

/* Base resets & typography */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
  position: relative;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--color-ivory);
  color: var(--color-charcoal);
}

h1, h2, h3, .font-serif-luxury {
  font-family: 'Playfair Display', Georgia, serif;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.font-sans-ui {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-track {
  background: var(--color-ivory);
}
::-webkit-scrollbar-thumb {
  background: #D8C5A5;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Luxury Color Classes */
.bg-ivory { background-color: var(--color-ivory); }
.bg-cream { background-color: var(--color-cream); }
.bg-champagne { background-color: var(--color-champagne); }
.bg-burgundy-primary { background-color: var(--color-primary); }
.bg-burgundy-dark { background-color: var(--color-primary-dark); }
.bg-burgundy-light { background-color: var(--color-primary-light); }
.bg-charcoal { background-color: var(--color-charcoal); }

.text-burgundy { color: var(--color-primary); }
.text-burgundy-light { color: var(--color-primary-light); }
.text-champagne { color: var(--color-champagne); }
.text-taupe { color: var(--color-taupe); }
.text-charcoal { color: var(--color-charcoal); }

.border-burgundy { border-color: var(--color-primary); }
.border-champagne { border-color: var(--color-champagne); }
.border-cream-dark { border-color: var(--color-border); }

/* Header Glass Backdrop */
.header-glass {
  background-color: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Luxury Buttons */
.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border: 1px solid var(--color-champagne);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  padding: 1rem 2.2rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(122, 12, 32, 0.35);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(122, 12, 32, 0.5);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  padding: 1rem 2.2rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0;
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  border: 1px solid rgba(216, 197, 165, 0.7);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  padding: 1rem 2.2rem;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border-radius: 0;
}

.btn-glass:hover {
  background: #FFFFFF;
  color: var(--color-charcoal);
  border-color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   FLOATING LUXURY HEADER & FULL-SCREEN HERO
   ========================================================================== */

/* Floating Header Overlay */
.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: linear-gradient(180deg, rgba(21, 18, 17, 0.85) 0%, rgba(21, 18, 17, 0.4) 60%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-overlay.header-scrolled {
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #E2D7C7;
  box-shadow: 0 10px 30px rgba(33, 29, 27, 0.08);
}

/* Light / Dark Header text and elements */
.header-overlay .nav-link-item {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
}
.header-overlay .nav-link-item:hover {
  color: #D8C5A5;
}
.header-overlay .header-icon-btn {
  color: #FFFFFF;
  transition: color 0.3s ease;
}
.header-overlay .header-icon-btn i {
  color: #D8C5A5;
  transition: color 0.3s ease;
}
.header-overlay .header-nav-border {
  border-color: rgba(255, 255, 255, 0.15);
}
.header-overlay .header-logo-light {
  display: block;
}
.header-overlay .header-logo-dark {
  display: none;
}

/* When Scrolled State */
.header-overlay.header-scrolled .nav-link-item {
  color: #211D1B;
}
.header-overlay.header-scrolled .nav-link-item:hover {
  color: #7A0C20;
}
.header-overlay.header-scrolled .nav-link-item.active-nav {
  color: #7A0C20;
  border-bottom-color: #7A0C20;
}
.header-overlay.header-scrolled .header-icon-btn {
  color: #211D1B;
}
.header-overlay.header-scrolled .header-icon-btn i {
  color: #7A0C20;
}

/* ==========================================================================
   OFFICIAL LOGO PRESENTATION & CRISP VISIBILITY
   ========================================================================== */

.header-brand-logo {
  height: 3rem;
  max-height: 3.75rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(122, 12, 32, 0.08));
  image-rendering: -webkit-optimize-contrast;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 640px) {
  .header-brand-logo {
    height: 3.5rem;
  }
}

/* ==========================================================================
   MASTER ARTISANS & ATELIER TEAM SHOWCASE
   ========================================================================== */

.artisan-card {
  background: #FFFFFF;
  border: 1px solid #D8C5A5;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.artisan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -10px rgba(122, 12, 32, 0.12);
  border-color: #7A0C20;
}

.artisan-portrait-frame {
  position: relative;
  overflow: hidden;
  background: #211D1B;
}

.artisan-portrait-frame img {
  filter: grayscale(20%) contrast(105%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.artisan-card:hover .artisan-portrait-frame img {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.06);
}

.artisan-craft-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #5A0717;
  color: #F7F3EC;
  border: 1px solid #D8C5A5;
  font-family: 'Cinzel', serif;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}
.header-overlay.header-scrolled .header-nav-border {
  border-color: rgba(226, 215, 199, 0.8);
}
.header-overlay.header-scrolled .header-logo-light {
  display: none;
}
.header-overlay.header-scrolled .header-logo-dark {
  display: block;
}

/* ==========================================================================
   CINEMATIC FULL-BLEED FULL-SCREEN HERO SLIDER
   ========================================================================== */

.hero-fullscreen-module {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: calc(100vh - 138px);
  height: calc(100dvh - 138px);
  min-height: 560px;
  overflow: hidden;
  background-color: #211D1B;
}

@media (max-width: 1024px) {
  .hero-fullscreen-module {
    height: calc(100vh - 110px);
    height: calc(100dvh - 110px);
    min-height: 520px;
  }
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 10;
}

/* Cinematic Background Image with Ken Burns Zoom */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

/* Cinematic Vignette Overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(21, 18, 17, 0.88) 0%, 
    rgba(21, 18, 17, 0.65) 45%, 
    rgba(21, 18, 17, 0.3) 75%, 
    rgba(21, 18, 17, 0.5) 100%
  );
  z-index: 2;
}

/* Staggered Text Animations for Active Slide */
.hero-slide .hero-elem {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-elem-1 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.hero-slide.active .hero-elem-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.hero-slide.active .hero-elem-3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.hero-slide.active .hero-elem-4 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.hero-slide.active .hero-elem-5 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/* Slider Controls - Luxury Circular Glassmorphism Chevrons */
.hero-nav-arrow {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  background: rgba(33, 29, 27, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(216, 197, 165, 0.6);
  color: #F7F3EC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  outline: none;
}

.hero-nav-arrow i {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-nav-arrow:hover {
  background: linear-gradient(135deg, #7A0C20 0%, #5A0717 100%);
  color: #FFFFFF;
  border-color: #D8C5A5;
  box-shadow: 0 0 20px rgba(216, 197, 165, 0.4), 0 12px 32px rgba(122, 12, 32, 0.55);
}

#hero-prev-btn:hover {
  transform: translateX(-4px) scale(1.06);
}

#hero-prev-btn:hover i {
  transform: translateX(-2px);
}

#hero-next-btn:hover {
  transform: translateX(4px) scale(1.06);
}

#hero-next-btn:hover i {
  transform: translateX(2px);
}

.hero-progress-line {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #7A0C20, #D8C5A5);
  width: 0%;
  transition: width 0.1s linear;
}

.hero-tab-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.4s ease;
  padding: 0.5rem 0.25rem;
}

.hero-tab-indicator.active {
  opacity: 1;
}

.hero-tab-indicator.active div {
  width: 2.5rem !important;
  background-color: #D8C5A5 !important;
}

.hero-tab-indicator.active span:first-child {
  color: #D8C5A5 !important;
}

/* Scroll To Explore Indicator */
.scroll-indicator-pulse {
  animation: scrollBounce 2.2s infinite ease-in-out;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ==========================================================================
   HIGH-FASHION EDITORIAL PRODUCT CARDS & HOVER EFFECTS
   ========================================================================== */

.editorial-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #EFE8DC;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.editorial-card:hover {
  border-color: #D8C5A5;
  box-shadow: 0 20px 40px -15px rgba(122, 12, 32, 0.08);
  transform: translateY(-4px);
}

/* Image Container */
.editorial-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background-color: #F7F3EC;
  min-height: 240px;
}

.bestseller-spotlight-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: #F7F3EC;
  min-height: 380px;
}

/* Primary Image */
.editorial-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Secondary / Hover Image */
.editorial-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-card:hover .editorial-img-hover,
.bestseller-spotlight-card:hover .editorial-img-hover {
  opacity: 1;
  transform: scale(1.05);
}

.editorial-card:hover .editorial-img-main,
.bestseller-spotlight-card:hover .editorial-img-main {
  transform: scale(1.05);
}

/* Floating Quick Action Overlay */
.editorial-actions-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(33, 29, 27, 0.9) 0%, rgba(33, 29, 27, 0.5) 70%, transparent 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  gap: 0.5rem;
  z-index: 15;
}

.editorial-card:hover .editorial-actions-bar,
.bestseller-spotlight-card:hover .editorial-actions-bar {
  opacity: 1;
  transform: translateY(0);
}

/* Wishlist Heart Button */
.editorial-wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(226, 215, 199, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.25s ease;
  color: #211D1B;
  cursor: pointer;
}

.editorial-wishlist-btn:hover {
  background: #FFFFFF;
  border-color: #7A0C20;
  transform: scale(1.1);
  color: #7A0C20;
  box-shadow: 0 4px 12px rgba(122, 12, 32, 0.2);
}

/* ==========================================================================
   BEST SELLERS LUXURY SPOTLIGHT & RANKED ARCHIVE
   ========================================================================== */

.bestseller-spotlight-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #D8C5A5;
  box-shadow: 0 16px 40px -12px rgba(122, 12, 32, 0.12);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bestseller-spotlight-card:hover {
  border-color: #7A0C20;
  box-shadow: 0 24px 60px -15px rgba(122, 12, 32, 0.25);
  transform: translateY(-3px);
}

.bestseller-rank-badge {
  background: #5A0717;
  color: #D8C5A5;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 10px;
  border: 1px solid #D8C5A5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.bestseller-rank-badge-gold {
  background: linear-gradient(135deg, #7A0C20 0%, #5A0717 100%);
  color: #FFFFFF;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 6px 14px;
  border: 1.5px solid #D8C5A5;
  box-shadow: 0 4px 16px rgba(90, 7, 23, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bestseller-tab-btn {
  cursor: pointer;
  outline: none;
}

.bestseller-tab-btn:hover:not(.active) {
  background: #F7F3EC;
  border-color: #7A0C20;
  color: #7A0C20;
}

/* Luxury Badges */
.luxury-badge {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: #7A0C20;
  color: #FFFFFF;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.luxury-badge-champagne {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  background: #D8C5A5;
  color: #211D1B;
  border-radius: 0;
}

/* Category Filter Story Pill */
.category-story-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1.1rem;
  background: #FFFFFF;
  border: 1px solid #E2D7C7;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #211D1B;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
}

.category-story-pill:hover, .category-story-pill.active {
  background: #7A0C20;
  border-color: #7A0C20;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 12, 32, 0.2);
}

.category-story-pill .pill-count {
  font-size: 0.625rem;
  opacity: 0.75;
  padding: 0.1rem 0.35rem;
  background: rgba(0, 0, 0, 0.08);
}

.category-story-pill.active .pill-count {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* Glass Header */
.header-glass {
  background: rgba(247, 243, 236, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Floating Luxury Search Modal */
#luxury-search-modal {
  position: fixed;
  inset: 0;
  background: rgba(21, 18, 17, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Toast Notifications Container */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.luxury-toast {
  pointer-events: auto;
  background: #211D1B;
  color: #F7F3EC;
  border-left: 3px solid #8E1028;
  padding: 1rem 1.25rem;
  min-width: 320px;
  max-width: 440px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  animation: slideInToast 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  font-size: 0.875rem;
}

@keyframes slideInToast {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast-fadeout {
  animation: fadeOutToast 0.3s forwards ease-in;
}

@keyframes fadeOutToast {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Modal Overlay */
.modal-backdrop {
  background-color: rgba(33, 29, 27, 0.7);
  backdrop-filter: blur(6px);
}

/* Accordion */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0, 1, 0, 1);
}

.accordion-item.active .accordion-content {
  max-height: 1000px;
  transition: max-height 0.45s ease-in-out;
}

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

/* Filter Dropdown Popovers */
.filter-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: #FFFFFF;
  border: 1px solid #D8C5A5;
  box-shadow: 0 16px 32px rgba(33, 29, 27, 0.15);
  z-index: 40;
  min-width: 220px;
  padding: 1rem;
}

.filter-dropdown-wrapper.open .filter-dropdown-menu {
  display: block;
  animation: fadeInDrop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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