/** Shopify CDN: Minification failed

Line 2794:0 Unexpected "}"

**/
/* ===================================================
   DOSSIER LUXURY FRAGRANCE SHOPIFY THEME - THEME.CSS
   Design System & Styling Tokens
   =================================================== */

:root {
  --color-primary: #212121;
  --color-secondary: #4a4a4a;
  --color-accent-gold: #CDB087;
  --color-accent-gold-dark: #b59567;
  --color-sale-coral: #EF776A;
  --color-sale-coral-dark: #d85c4f;
  --color-bg-ivory: #FAF8F5;
  --color-surface-card: #FFFFFF;
  --color-border: #EBEBEB;
  --color-border-dark: #D3D4DD;
  --color-text-muted: #727272;
  --color-white: #FFFFFF;
  --color-black: #111111;

  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-drawer: -4px 0 30px rgba(0, 0, 0, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --header-height: 70px;
  --announcement-height: 40px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-ivory);
  color: var(--color-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
}

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

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

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

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--color-black);
  line-height: 1.2;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-gold-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--color-secondary);
  font-size: 1.05rem;
  max-width: 700px;
}

.text-gold { color: var(--color-accent-gold); }
.text-coral { color: var(--color-sale-coral); }
.text-green { color: #108A00; }
.text-center { text-align: center; }
.max-w-600 { max-width: 600px; margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.py-5 { padding: 3rem 0; }

/* Buttons & Badges */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-black);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.primary-btn:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.primary-btn.gold-btn {
  background-color: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: var(--color-white);
}

.primary-btn.gold-btn:hover {
  background-color: var(--color-accent-gold-dark);
  border-color: var(--color-accent-gold-dark);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--color-border-dark);
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  border-color: var(--color-black);
  transform: translateY(-2px);
}

.tertiary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--color-white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.tertiary-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.badge-sale {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-mini {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  background-color: var(--color-sale-coral);
  color: var(--color-white);
}

.badge-mini.gold {
  background-color: var(--color-accent-gold);
}

.badge-mini.coral {
  background-color: var(--color-sale-coral);
}

.badge-hot {
  background-color: var(--color-sale-coral);
  color: var(--color-white);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  margin-left: 4px;
}

.badge-pill {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

/* ===================================================
   ANNOUNCEMENT BAR
   =================================================== */

.announcement-bar {
  background-color: var(--color-sale-coral);
  color: var(--color-white);
  font-size: 0.825rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 300;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.announcement-left, .announcement-center, .announcement-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sale-highlight {
  font-weight: 500;
}

.countdown-widget {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-accent);
  font-weight: 700;
}

.time-block {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 24px;
  text-align: center;
}

.link-btn-white {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 2px 6px;
}

/* ===================================================
   SITE HEADER & NAVIGATION
   =================================================== */

#shopify-section-header,
.shopify-section-header,
.site-header {
  position: sticky;
  top: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid #EBEBEB;
  z-index: 1000;
  transition: all 0.3s ease;
  height: 56px;
  width: 100% !important;
  max-width: 100% !important;
  display: block;
}

.header-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 32px !important;
  height: 56px !important;
  box-sizing: border-box !important;
  gap: 24px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  color: #111111;
  margin-right: 28px;
}

.dossier-logo-svg {
  width: 108px;
  height: 22px;
  display: block;
}

.brand-logo-img {
  width: auto;
  max-width: var(--logo-width-desktop, 140px);
  max-height: 38px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-wordmark-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  line-height: 1;
}

.brand-wordmark-title {
  font-family: var(--font-heading, 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.03em;
  color: #111111;
  text-transform: lowercase;
  line-height: 1.05;
  margin: 0;
  padding: 0;
}

.brand-wordmark-sub {
  font-family: var(--font-accent, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #A68A68;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
  padding: 0;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #212121;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition: all 0.2s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-link:hover {
  color: #EF776A;
  background-color: #FAFAFA;
}

.nav-item.is-open > .nav-link,
.about-dropdown-item.is-open > .nav-link {
  color: #EF776A;
}

.chevron-svg {
  width: 7px;
  height: 5px;
  transition: transform 0.2s ease;
  margin-top: 1px;
}

.nav-item.is-open > .nav-link .chevron-svg,
.about-dropdown-item.is-open .chevron-svg {
  transform: rotate(180deg);
}

/* Labor Day Sale Link */
.nav-sale-link {
  color: #EF776A !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

.nav-sale-link .tag-svg {
  color: #EF776A;
  width: 13px;
  height: 13px;
}

/* AI Scent Finder Pill */
.ai-finder-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.ai-finder-badge {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EF776A 0%, #E86052 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}

.ai-finder-badge svg {
  width: 10px;
  height: 10px;
}

/* Far Right Corner Utility Group: Search + ABOUT + Account + Cart */
.header-right-cluster {
  display: flex !important;
  align-items: center !important;
  gap: 24px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
}

.header-search-capsule {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F7F5F4;
  border-radius: 23px;
  padding: 0 16px;
  width: 400px;
  height: 38px;
  border: 1px solid #EBE7E2;
  transition: width 0.3s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  margin: 0 4px;
}

.header-search-capsule:focus-within {
  width: 460px;
  background-color: #FFFFFF;
  border-color: #212121;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.about-link {
  font-family: var(--font-accent, 'Inter', sans-serif);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #212121;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.about-link:hover {
  color: #EF776A !important;
  background-color: #FAFAFA;
}

.header-search-capsule input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13.5px;
  color: #212121;
  width: 100%;
  font-family: inherit;
}

.header-search-capsule input::placeholder {
  color: #707070;
}

.search-submit-icon {
  background: none;
  border: none;
  color: #212121;
  padding: 0;
  margin-left: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Predictive Search Live Dropdown */
.predictive-search-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 100%;
  min-width: 360px;
  max-height: 400px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 8px 0;
}

.predictive-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none;
  color: #111111;
  transition: background-color 0.15s ease;
}

.predictive-item:hover {
  background-color: #f8f8f8;
}

.predictive-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  background-color: #f0f0f0;
  flex-shrink: 0;
}

.predictive-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.predictive-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.predictive-price {
  font-size: 12.5px;
  color: #666666;
  margin-top: 2px;
}

.predictive-view-all {
  display: block;
  padding: 10px 16px;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
  transition: background-color 0.15s ease;
}

.predictive-view-all:hover {
  background: #f0f0f0;
}

.predictive-no-results {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: #777777;
}

.about-dropdown-item {
  position: relative;
  display: flex;
  align-items: center;
}

.about-link {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #212121;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
}

.dropdown-menu-simple {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #EBEBEB;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 300;
}

.about-dropdown-item.is-open .dropdown-menu-simple {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-simple a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  color: #212121;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.dropdown-menu-simple a:hover {
  background-color: #FAF8F5;
  color: #EF776A;
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #212121;
  text-decoration: none;
  background: none;
  border: none;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-icon-link:hover {
  color: #EF776A;
  background-color: #FAFAFA;
}

.cart-bag-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bag-count-badge {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 700;
  color: #212121;
  line-height: 1;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  color: #212121;
  cursor: pointer;
}

/* Mega Menu Dropdown */
.megamenu-panel {
  position: fixed;
  top: 56px;
  left: 0;
  width: 100vw;
  max-width: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAE6E1;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  padding: 22px 28px 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(4px);
  z-index: 500;
  box-sizing: border-box;
}

.nav-item.has-megamenu.is-open .megamenu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.megamenu-inner-grid {
  display: flex;
  gap: 56px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  padding: 0 12px;
  box-sizing: border-box;
}

.megamenu-visual-card {
  display: flex;
  flex-direction: column;
}

.megamenu-thumb-link {
  text-decoration: none;
  display: block;
}

.megamenu-img-wrap {
  width: 100%;
  height: 82px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #FAF6F0;
  margin-bottom: 8px;
  border: 1px solid #EAE6E1;
}

.megamenu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.megamenu-thumb-link:hover .megamenu-img-wrap img {
  transform: scale(1.05);
}

.megamenu-thumb-label {
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #212121;
  line-height: 1.2;
  display: inline-block;
  transition: color 0.15s ease;
}

.megamenu-thumb-link:hover .megamenu-thumb-label {
  color: #EF776A;
}

.megamenu-links-col {
  display: flex;
  flex-direction: column;
}

.megamenu-col-heading {
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #111111;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  padding: 0;
}

.megamenu-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.megamenu-links-list li a {
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #333333;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease;
}

.megamenu-links-list li a:hover {
  color: #EF776A;
}

.megamenu-col h3.megamenu-title {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.4rem;
}

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

.subnav-list a {
  font-size: 0.9rem;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.subnav-list a:hover {
  color: var(--color-sale-coral);
  transform: translateX(3px);
}

.family-tags .family-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.family-dot.gourmand { background-color: #D9822B; }
.family-dot.floral { background-color: #E26D9B; }
.family-dot.woody { background-color: #8C6239; }
.family-dot.fresh { background-color: #29B6F6; }
.family-dot.amber { background-color: #EF776A; }

.visual-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-col.flex-row {
  flex-direction: row;
}

.megamenu-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.megamenu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.megamenu-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-caption {
  padding: 0.75rem;
}

.card-caption h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-caption span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}


/* ===================================================
   LUXURY MOBILE DRAWER NAVIGATION
   =================================================== */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 99998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: min(88vw, 360px);
  height: 100vh;
  height: 100dvh;
  background-color: #FFFFFF;
  border-right: 1px solid #ECE7E1;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.25);
  z-index: 100000;
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.mobile-drawer.active {
  left: 0;
}

/* Hide mobile drawer completely on desktop screens */
@media (min-width: 992px) {
  .mobile-drawer,
  .mobile-drawer-overlay,
  .mobile-menu-btn {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
    left: -100% !important;
  }
}

.mobile-drawer-header {
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F0ECE6;
  background-color: #FFFFFF;
}

.mobile-drawer-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mobile-drawer-logo {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 800;
  text-transform: lowercase;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: #111111;
  line-height: 1.1;
}

.mobile-drawer-sublogo {
  font-family: var(--font-accent, sans-serif);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9E8569;
  text-transform: uppercase;
}

.close-drawer-btn {
  background: #FAF8F5;
  border: 1px solid #EBE6DF;
  width: 34px;
  height: 34px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111111;
  transition: all 0.2s ease;
}

.close-drawer-btn:hover {
  background-color: #111111;
  color: #FFFFFF;
  border-color: #111111;
}

/* Mobile Drawer Search Bar */
.mobile-drawer-search-wrap {
  padding: 0.75rem 1.35rem;
  border-bottom: 1px solid #F4F0E8;
  background: #FAF8F5;
}

.mobile-drawer-search-form {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.mobile-search-icon {
  position: absolute;
  left: 10px;
  color: #8C847B;
  pointer-events: none;
}

.mobile-drawer-search-input {
  width: 100%;
  padding: 0.55rem 0.85rem 0.55rem 2.1rem;
  background: #FFFFFF;
  border: 1px solid #E5DFD7;
  border-radius: 0;
  font-size: 0.82rem;
  font-family: inherit;
  color: #111111;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

.mobile-drawer-search-input:focus {
  border-color: #111111;
}

/* Drawer Scrollable Area */
.mobile-drawer-scrollable {
  flex: 1;
  overflow-y: auto;
  padding: 1.15rem 1.35rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-group {
  display: flex;
  flex-direction: column;
}

.mobile-nav-group-title {
  font-family: var(--font-accent, sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999086;
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

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

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.62rem 0.65rem;
  border-radius: 0;
  color: #1F1D1B;
  font-family: var(--font-accent, sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: #FAF8F5;
  color: #000000;
  border-color: #F0ECE6;
}

.mobile-nav-icon-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-chevron {
  color: #B5AEA5;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.mobile-nav-link:hover .nav-chevron {
  transform: translateX(2px);
  color: #111111;
}

.mobile-nav-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 0.04em;
  border-radius: 0;
  text-transform: uppercase;
  background: #111111;
  color: #FFFFFF;
  margin-left: auto;
  margin-right: 8px;
}

.mobile-nav-badge.gold {
  background: #FAF0E4;
  color: #946C38;
  border: 1px solid #ECD9C6;
}

.mobile-nav-badge.coral {
  background: #FEECEB;
  color: #E26958;
  border: 1px solid #FCD4CF;
}

.mobile-nav-badge.discount {
  background: #EBF7EE;
  color: #207241;
  border: 1px solid #D1EEDB;
}

/* Mobile VIP Card */
.mobile-drawer-vip-card {
  background: #111111;
  color: #FFFFFF;
  padding: 1.15rem 1.15rem;
  border-radius: 0;
  border: 1px solid #222222;
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.vip-card-badge {
  font-family: var(--font-accent, sans-serif);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #CDB087;
  text-transform: uppercase;
}

.vip-card-title {
  font-family: var(--font-accent, sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.3;
}

.vip-card-desc {
  font-family: var(--font-body, sans-serif);
  font-size: 0.74rem;
  color: #B0A89F;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.mobile-vip-cta-btn {
  background: #FFFFFF;
  color: #111111;
  border: none;
  border-radius: 0;
  padding: 0.72rem 1rem;
  font-family: var(--font-accent, sans-serif);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 100%;
}

.mobile-vip-cta-btn:hover {
  background: #FAF8F5;
  transform: translateY(-1px);
}

/* Trust footer */
.mobile-drawer-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-accent, sans-serif);
  font-size: 0.68rem;
  font-weight: 600;
  color: #9C948B;
  margin-top: 0.25rem;
  text-align: center;
}

/* ===================================================
   HERO BANNER (FULL BLEED WITH BOTTOM LOCKUP)
   =================================================== */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #111111;
  display: flex;
  align-items: flex-end;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}

.hero-sale-lockup-wrapper {
  position: absolute;
  top: 45%;
  transform: none;
  left: 48px;
  z-index: 20;
  width: 100%;
  max-width: 760px;
}

/* Text alignment / positioning variants */
.hero-sale-lockup-wrapper.hero-align-center,
.hero-bottom-controls.hero-align-center {
  left: 50% !important;
  right: auto;
  transform: translateX(-50%);
  text-align: center;
  align-items: center;
}

.hero-sale-lockup-wrapper.hero-align-right,
.hero-bottom-controls.hero-align-right {
  left: auto !important;
  right: 48px;
  text-align: right;
  align-items: flex-end;
}

.hero-align-center .hero-btn-row,
.hero-align-right .hero-btn-row {
  justify-content: center;
}

.hero-align-right .hero-btn-row {
  justify-content: flex-end;
}

/* Standalone Product Image */
.hero-product-image-wrap {
  position: absolute;
  bottom: var(--hero-product-bottom, 0px);
  z-index: 10;
  width: var(--hero-product-width, 380px);
  max-width: 60%;
  pointer-events: none;
}

.hero-product-image-wrap.hero-product-align-left {
  left: 32px;
}

.hero-product-image-wrap.hero-product-align-center {
  left: 50%;
  transform: translateX(-50%);
}

.hero-product-image-wrap.hero-product-align-right {
  right: 32px;
}

.hero-product-image {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .hero-product-image-wrap {
    width: calc(var(--hero-product-width, 380px) * 0.6);
    max-width: 50%;
  }
}

.hero-sale-lockup-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.35));
}

.hero-bottom-controls {
  position: absolute;
  bottom: 48px;
  left: 48px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-promo-subtext {
  color: #FFFFFF;
  font-family: var(--font-body), -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-btn-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-action-pill {
  height: 52px;
  min-width: 185px;
  padding: 0 36px;
  border-radius: 50px;
  font-family: var(--font-body), -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.hero-action-pill.btn-black {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
}

.hero-action-pill.btn-black:hover {
  background-color: #1a1a1a;
  color: #FFFFFF;
}

.hero-action-pill.btn-white {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #FFFFFF;
}

.hero-action-pill.btn-white:hover {
  background-color: #f2f2f2;
  color: #000000;
}

@media (max-width: 1024px) {
  .hero-sale-lockup-wrapper {
    top: 38%;
    left: 28px;
    max-width: 580px;
  }
  .hero-bottom-controls {
    bottom: 32px;
    left: 28px;
  }
  .hero-action-pill {
    height: 46px;
    padding: 0 26px;
    font-size: 12.5px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 85vh;
  }
  .hero-bg {
    object-position: center top;
  }
  .hero-sale-lockup-wrapper {
    top: 36%;
    left: 16px;
    right: 16px;
    max-width: 320px;
  }
  .hero-bottom-controls {
    bottom: 20px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
  }
  .hero-promo-subtext {
    font-size: 10.5px;
    margin-bottom: 10px;
  }
  .hero-btn-row {
    width: 100%;
    gap: 8px;
  }
  .hero-action-pill {
    flex: 1;
    min-width: unset;
    padding: 0 12px;
    font-size: 11px;
    height: 40px;
  }
}



.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===================================================
   LATEST DROPS SECTION (4-COLUMN GRID)
   =================================================== */

.latest-drops-section {
  padding: 3rem 0;
  background-color: #FFFFFF;
}

.latest-drops-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.latest-drops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.latest-drops-title {
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--bs-heading-color, #111111);
  letter-spacing: -0.01em;
  margin: 0;
}

.carousel-nav-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.nav-chevron-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 50%;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.nav-chevron-btn:hover {
  background-color: #F3EFEA;
  transform: scale(1.1);
}

.nav-chevron-btn:active {
  transform: scale(0.95);
}

.latest-drops-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 16px;
  width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.latest-drops-grid::-webkit-scrollbar {
  display: none;
}

.latest-drops-grid .drop-card {
  flex: 0 0 calc((100% - 48px) / 4);
  min-width: 270px;
  scroll-snap-align: start;
}

.drop-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background-color: #000000;
  aspect-ratio: 3/4.2;
  min-height: 420px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.drop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.drop-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.drop-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 5;
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #111111;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.drop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.drop-card:hover .drop-card-img {
  transform: scale(1.03);
}

.drop-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 16px 16px;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.82) 65%, rgba(0, 0, 0, 0.92) 100%);
  display: flex;
  flex-direction: column;
}

.drop-product-title {
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--bs-name-color, #FFFFFF);
  margin: 0 0 3px;
  letter-spacing: -0.01em;
}

.drop-collection-subtitle {
  font-size: 12.5px;
  color: var(--bs-desc-color, #FFFFFF);
  margin: 0 0 14px;
  opacity: 0.92;
  line-height: 1.3;
}

.drop-atc-pill {
  background-color: #FFFFFF;
  color: #111111;
  height: 42px;
  border-radius: 9999px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.drop-atc-pill:hover {
  background-color: #F5F5F5;
  transform: scale(1.01);
}

.atc-label {
  color: var(--bs-btn-text-color, #111111);
}

.atc-old-price {
  text-decoration: line-through;
  color: var(--bs-compare-color, #888888);
  font-weight: 500;
}

.atc-sale-price {
  color: var(--bs-price-color, #EF776A);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .latest-drops-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .latest-drops-grid {
    grid-template-columns: 1fr;
  }
}


/* ===================================================
   AI SCENT FINDER BANNER
   =================================================== */

.scent-finder-banner {
  background: linear-gradient(135deg, #1C1C1C 0%, #2A2A2A 100%);
  color: var(--color-white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(205, 176, 135, 0.2);
  color: var(--color-accent-gold);
  border: 1px solid var(--color-accent-gold);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.banner-content h2 {
  font-size: 2.75rem;
  color: var(--asf-text-color, var(--color-white));
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.1rem;
  color: var(--asf-text-color, rgba(255, 255, 255, 0.85));
  margin-bottom: 1.75rem;
}

.quiz-highlights {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.highlight-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--asf-text-color, inherit);
}

.banner-visual {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfume-floating-card {
  position: absolute;
  width: 220px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.perfume-floating-card.top-card {
  top: 10px;
  left: 20px;
  transform: rotate(-4deg);
}

.perfume-floating-card.bottom-card {
  bottom: 10px;
  right: 20px;
  transform: rotate(6deg);
}

.perfume-floating-card:hover {
  transform: scale(1.05) rotate(0deg);
}

.perfume-floating-card img {
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.floating-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-white);
}

.floating-meta span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ===================================================
   MAIN CATALOG & FILTER SYSTEM
   =================================================== */

.catalog-section {
  padding: 5rem 0;
}

.catalog-top-bar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.filter-pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-pill {
  background-color: var(--color-white);
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.filter-pill:hover, .filter-pill.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.catalog-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 2.5rem;
}

.showing-count {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.sort-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.sort-dropdown {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  outline: none;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.product-card {
  background-color: var(--color-surface-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-badge-top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}

.badge-tag {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.badge-tag.gold { background-color: var(--color-accent-gold); color: var(--color-white); }
.badge-tag.coral { background-color: var(--color-sale-coral); color: var(--color-white); }
.badge-tag.dark { background-color: var(--color-black); color: var(--color-white); }

.quick-view-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.2s ease;
}

.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: scale(1);
}

.quick-view-btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}

.card-image-link {
  display: block;
  background-color: #FBFBFB;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.card-img-primary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.card-vendor {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
  margin-bottom: 10px;
  min-height: 18px;
}

.card-title {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--color-accent-gold);
  margin-bottom: 0.75rem;
}

.card-rating .count {
  color: var(--color-text-muted);
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.prices {
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-current {
  font-family: var(--font-accent);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-sale-coral);
}

.price-compare {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.save-pill {
  font-size: 0.7rem;
  font-weight: 700;
  background-color: rgba(239, 119, 106, 0.15);
  color: var(--color-sale-coral);
  padding: 2px 6px;
  border-radius: 4px;
}

.card-atc-button {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

.card-atc-button:hover {
  background-color: var(--color-accent-gold);
  transform: translateY(-2px);
}

/* ===================================================
   MINI SET BUILDER
   =================================================== */

.mini-set-section {
  padding: 3rem 0;
}

.mini-set-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.mini-set-info {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-set-info h2 {
  font-size: 2.25rem;
  margin: 0.75rem 0 1rem;
}

.mini-set-info p {
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
}

.mini-set-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.mini-price-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mini-price-box .cur-price {
  font-family: var(--font-accent);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-black);
}

.mini-price-box .old-price {
  font-size: 1.25rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.discount-tag {
  background-color: var(--color-sale-coral);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-set-image {
  background-color: #F4F1EC;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-set-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===================================================
   VALUE PROPOSITIONS
   =================================================== */

.why-dossier-section {
  padding: 5rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.benefit-card {
  padding: 2rem;
  background-color: var(--color-bg-ivory);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--color-accent-gold);
  color: var(--color-white);
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--color-secondary);
}

/* ===================================================
   OKENDO-INSPIRED REVIEWS SECTION
   =================================================== */

.reviews-section {
  padding: 4.5rem 0;
  background-color: #FAF8F5;
  border-top: 1px solid #EAE6E1;
  border-bottom: 1px solid #EAE6E1;
}

.reviews-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.reviews-title-wrap {
  flex: 1;
  min-width: 280px;
}

.reviews-section {
  padding: 3.5rem 0;
  background-color: transparent;
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #ECE7E1;
}

.reviews-title-wrap .section-tag {
  display: block;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #9C826B;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.reviews-title-wrap .section-title {
  font-family: var(--font-heading, -apple-system, sans-serif);
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0;
  line-height: 1.2;
}

.reviews-header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.overall-rating-card {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #FAF8F5;
  padding: 0.55rem 1.15rem;
  border-radius: 0;
  border: 1px solid #EBE6DF;
}

.rating-big {
  font-family: var(--font-heading, -apple-system, sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #111111;
  line-height: 1;
}

.rating-details {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rating-details .stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-details span {
  font-size: 0.76rem;
  color: #666666;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-weight: 500;
}

.write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background-color: #111111;
  color: #FFFFFF;
  border: 1px solid #111111;
  padding: 0.62rem 1.25rem;
  border-radius: 0;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.write-review-btn:hover {
  background-color: #2D2926;
  border-color: #2D2926;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

/* UGC Video Reviews Strip */
.ugc-video-reviews-strip {
  background: #FFFFFF;
  border: 1px solid #EAE6E1;
  border-radius: 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2rem;
  box-shadow: none;
}

.ugc-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: 8px;
}

.ugc-strip-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: #111111;
}

.ugc-strip-subtitle {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.8rem;
  color: #888888;
  font-weight: 500;
}

.ugc-video-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ugc-video-card {
  background: #FAF8F5;
  border: 1px solid #EBE7E1;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.ugc-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ugc-video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #000000;
  overflow: hidden;
  border-radius: 0;
}

.ugc-inline-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ugc-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.ugc-play-bubble {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.ugc-video-card:hover .ugc-play-bubble {
  transform: scale(1.1);
}

.ugc-card-badge {
  display: none;
}

.ugc-card-info {
  padding: 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars-row.mini {
  display: flex;
  gap: 2px;
}

.ugc-reviewer-title {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: #111111;
  margin: 2px 0 0;
  line-height: 1.3;
}

.ugc-reviewer-name {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.76rem;
  color: #777777;
}

.star-svg.empty {
  fill: #E5E0D8 !important;
}

.review-attached-video-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FAF8F5;
  border: 1px solid #EBE6DF;
  padding: 3px 9px;
  border-radius: 0;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.74rem;
  color: #9C826B;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.review-attached-video-tag a {
  color: #9C826B;
  text-decoration: underline;
  font-weight: 600;
}

/* Keyword Filter Chips / Trending Topics */
.review-keyword-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.keyword-label {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  color: #777777;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 0.15rem;
}

.keyword-chip {
  background-color: #FFFFFF;
  color: #555555;
  border: 1px solid #E8E3DC;
  padding: 0.38rem 0.95rem;
  border-radius: 0;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.76rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.keyword-chip:hover {
  border-color: #111111;
  color: #111111;
  background-color: #FAF8F5;
}

.keyword-chip.active {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: none;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.user-submitted-reviews-holder {
  display: contents;
}

.review-card {
  background-color: #FFFFFF;
  padding: 1.35rem 1.4rem 1.15rem;
  border-radius: 0;
  border: 1px solid #ECE7E1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: none;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: #DBD5CC;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.review-card.user-new-review.animate-in {
  animation: reviewPopIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reviewPopIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 8px;
}

.review-card-top .stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.verified-buyer-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.68rem;
  font-weight: 600;
  color: #246B3E;
  background: #F0F7F2;
  padding: 2px 7px;
  border-radius: 0;
  border: 1px solid #DBEFE2;
  letter-spacing: 0.01em;
}

.verified-buyer-badge.your-review {
  color: #246B3E;
  background: #F0F7F2;
  border-color: #DBEFE2;
}

.review-headline {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.94rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 0.45rem 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.review-body {
  font-family: var(--font-body, -apple-system, sans-serif);
  font-size: 0.84rem;
  color: #4A4A4A;
  line-height: 1.55;
  margin: 0 0 1rem 0;
  flex: 1;
}

.review-footer-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 0.85rem;
  border-top: 1px solid #F3EFEA;
  margin-top: auto;
}

.review-author-thumb {
  width: 30px;
  height: 30px;
  border-radius: 0;
  overflow: hidden;
  background-color: #FAF6F0;
  border: 1px solid #EAE5DE;
  flex-shrink: 0;
}

.review-author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-author-info {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.78rem;
  color: #777777;
  line-height: 1.3;
}

.review-author-info .reviewer-name {
  font-weight: 700;
  color: #111111;
}

.review-author-info .reviewer-product-sep {
  margin: 0 4px;
  color: #CCCCCC;
}

.review-author-info .reviewer-fragrance strong {
  color: #333333;
  font-weight: 600;
}
}

/* ===================================================
   BUYER WRITE A REVIEW MODAL
   =================================================== */

.review-modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.review-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.review-modal-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.96);
  width: 92%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #FFFFFF;
  border-radius: 0;
  border: 1px solid #ECE7E1;
  padding: 2rem 2.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.review-modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.review-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #EAE6E1;
}

.modal-eyebrow {
  display: block;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #9E8569;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-title {
  font-family: var(--font-heading, -apple-system, sans-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: #111111;
  margin: 0;
}

.close-review-modal-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #F4EFEA;
  border: 1px solid #E2DDD5;
  cursor: pointer;
  width: 36px;
  height: 36px;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  z-index: 50;
  box-shadow: none;
}

.close-review-modal-btn:hover {
  background-color: #111111;
  color: #FFFFFF;
  border-color: #111111;
  transform: scale(1.06);
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  color: #222222;
}

.required-star {
  color: #E26958;
}

.interactive-stars-picker {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-pick-btn {
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #E2DDD5;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: transform 0.15s ease, color 0.15s ease;
}

.star-pick-btn.active {
  color: #CDB087;
}

.star-rating-label {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: #666666;
  margin-left: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #DCD8D2;
  border-radius: 0;
  font-family: inherit;
  font-size: 0.88rem;
  color: #111111;
  background-color: #FAF8F5;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: #111111;
  background-color: #FFFFFF;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.topic-tag-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-radio-label {
  cursor: pointer;
  position: relative;
}

.topic-radio-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.topic-radio-label span {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: 0;
  border: 1px solid #DFD9D1;
  background-color: #FAF8F5;
  color: #666666;
  transition: all 0.2s ease;
}

.topic-radio-label input:checked + span {
  background-color: #111111;
  border-color: #111111;
  color: #FFFFFF;
}

.modal-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.modal-actions-row {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.submit-review-btn {
  flex: 1;
  background-color: #111111;
  color: #FFFFFF;
  border: none;
  padding: 0.95rem;
  border-radius: 0;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.submit-review-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.cancel-review-btn {
  background: transparent;
  border: 1px solid #DCD8D2;
  color: #55504A;
  padding: 0.95rem 1.4rem;
  border-radius: 0;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cancel-review-btn:hover {
  background: #F4EFEA;
  color: #111111;
  border-color: #111111;
}

.verified-note {
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.76rem;
  color: #666666;
  text-align: center;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .reviews-header {
    flex-direction: column;
    align-items: stretch;
  }
  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   VIP DOSSIER+ CLUB
   =================================================== */

.vip-club-section {
  padding: 1.5rem 0 1.5rem;
}

.vip-card {
  background: linear-gradient(135deg, #212121 0%, #151515 100%);
  border-radius: var(--radius-lg);
  padding: 4rem;
  color: var(--color-white);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(205, 176, 135, 0.3);
  box-shadow: var(--shadow-lg);
}

.vip-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-accent-gold);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.vip-content h2 {
  font-size: 2.75rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.vip-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto 2rem;
}

.vip-action-row {
  display: flex;
  max-width: 540px;
  margin: 0 auto 1rem;
  gap: 0.5rem;
}

.vip-action-row input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  outline: none;
}

.vip-action-row input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.vip-small-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ===================================================
   AUTHENTIC DOSSIER FOOTER (PIXEL-PERFECT)
/* ===================================================
   MINIMAL LUXURY FOOTER
   =================================================== */

.site-footer {
  background-color: #FAF8F5;
  border-top: 1px solid #EBE5DC;
  padding: 3.5rem 0 2rem 0;
  color: #111111;
  font-family: var(--font-accent, 'Inter', sans-serif);
}

.footer-main-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left Column */
.footer-left-cluster {
  display: flex;
  flex-direction: column;
  max-width: 440px;
}

.footer-block-heading {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: #111111;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}

.footer-newsletter-desc {
  font-size: 0.85rem;
  color: #666666;
  margin: 0 0 1.25rem;
  line-height: 1.45;
}

/* Newsletter Signup */
.footer-newsletter-form-holder {
  width: 100%;
  max-width: 380px;
  margin-bottom: 1.25rem;
}

.footer-email-capsule-form {
  width: 100%;
}

.capsule-container-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #D8D2C9;
  border-radius: 9999px;
  padding: 3px 4px 3px 18px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.capsule-container-wrap:focus-within {
  border-color: #111111 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.footer-email-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.86rem;
  color: #111111;
  font-family: inherit;
  padding: 0;
}

.footer-email-input::placeholder {
  color: #888888;
}

.footer-submit-pill-btn {
  background-color: #111111;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  height: 36px;
  padding: 0 1.35rem;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-submit-pill-btn:hover {
  background-color: #333333;
  transform: translateY(-1px);
}

.footer-newsletter-success-state {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #F0F9EE;
  border: 1px solid #C8E6C9;
  color: #1B5E20;
  padding: 10px 16px;
  border-radius: 9999px;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  animation: fadeIn 0.3s ease;
}

.footer-newsletter-error-msg {
  color: #D32F2F;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 6px;
  padding-left: 12px;
}

/* Social Icons */
.footer-socials-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-social-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #D8D2C9;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer-social-icon-box:hover {
  background-color: #111111;
  color: #FFFFFF;
  border-color: #111111;
}

/* Right Column Cluster */
.footer-right-cluster {
  display: flex;
  flex-direction: column;
}

.footer-nav-columns-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-column-heading {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.92rem;
  font-weight: 800;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 1rem;
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-nav-links a {
  color: #555555;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-nav-links a:hover {
  color: #111111;
}

/* Bottom Legal & Logo Bar */
.footer-bottom-legal-bar {
  border-top: 1px solid #EBE5DC;
  padding-top: 2rem;
  margin-top: 3rem;
}

.footer-bottom-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.dossier-lowercase-brand {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111111;
  text-transform: lowercase;
  text-decoration: none;
}

.footer-legal-links-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #777777;
}

.footer-legal-links-row a {
  color: #777777;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links-row a:hover {
  color: #111111;
  text-decoration: underline;
}

.legal-divider {
  color: #B8B2A8;
}

.copyright-text {
  color: #777777;
}

/* Footer Mobile Responsive */
@media (max-width: 900px) {
  .site-footer {
    padding: 2.5rem 0 1.5rem 0;
  }
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-nav-columns-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .footer-bottom-legal-bar {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .footer-nav-columns-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .footer-nav-columns-row {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .retailers-logos-row {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .footer-app-buttons-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================================================
   CART SLIDE-OUT DRAWER
   =================================================== */

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -520px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  height: 100dvh;
  background-color: #FFFFFF;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 100000;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  overflow: hidden;
}

.cart-overlay.active .cart-drawer,
.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  background-color: #FFFFFF;
  z-index: 10;
}

.cart-header-title {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-cart-btn {
  font-size: 1.3rem;
  color: var(--color-secondary);
}

.cart-perks-bar {
  flex-shrink: 0;
  background-color: #FFF9F2;
  border-bottom: 1px solid #FFE7CF;
  padding: 0.85rem 1.5rem;
  z-index: 5;
}

.perks-text {
  font-size: 0.8rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.progress-track {
  width: 100%;
  height: 6px;
  background-color: #EFE4D8;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent-gold), var(--color-sale-coral));
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

.cart-drawer-form {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}

.cart-items-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background-color: var(--color-bg-ivory);
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.cart-item-price {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--color-sale-coral);
  font-size: 1rem;
}

.cart-qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 0.5rem;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  border: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.qty-num {
  font-size: 0.85rem;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}

.remove-btn {
  margin-left: auto;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.remove-btn:hover {
  color: var(--color-sale-coral);
}

.empty-cart-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 2rem 0;
}

.empty-icon {
  font-size: 3.5rem;
  color: var(--color-border-dark);
  margin-bottom: 1rem;
}

.empty-cart-state h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.empty-cart-state p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.cart-drawer-footer {
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: auto;
  padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--color-border);
  background-color: var(--color-white);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.07);
  z-index: 20;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.cart-summary-row.total-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-black);
  border-top: 1px solid var(--color-border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  font-size: 0.95rem;
}

.checkout-guarantee {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

/* ===================================================
   MODALS (SCENT QUIZ, QUICK VIEW, VIP)
   =================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.scent-modal-card, .quick-view-card, .vip-modal-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  position: relative;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .scent-modal-card,
.modal-overlay.active .quick-view-card,
.modal-overlay.active .vip-modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg-ivory);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scent-quiz-header {
  text-align: center;
  margin-bottom: 2rem;
}

.scent-quiz-header h3 {
  font-size: 1.75rem;
  margin: 0.75rem 0;
}

.quiz-progress-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.quiz-progress-dots .dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background-color: var(--color-border);
  transition: background-color 0.3s ease;
}

.quiz-progress-dots .dot.active {
  background-color: var(--color-accent-gold);
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quiz-option-card {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
}

.quiz-option-card:hover, .quiz-option-card.selected {
  border-color: var(--color-accent-gold);
  background-color: #FFFDF9;
  transform: translateY(-2px);
}

.quiz-option-card .opt-icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--color-sale-coral);
}

.quiz-option-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.quiz-option-card span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Quick View Grid */
.quick-view-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.notes-pyramid-card {
  background-color: var(--color-bg-ivory);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
}

.notes-pyramid-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pyramid-tier {
  font-size: 0.825rem;
  margin-bottom: 0.5rem;
}

.tier-label {
  font-weight: 700;
  color: var(--color-accent-gold-dark);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2000;
}

.toast {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 4px solid var(--color-accent-gold);
  animation: toastSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes toastSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===================================================
   RESPONSIVE MEDIA QUERIES
   =================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.75rem;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .main-nav, .search-box {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .announcement-center, .announcement-right {
    display: none;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .banner-grid, .mini-set-card {
    grid-template-columns: 1fr;
  }

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

  .reviews-grid {
    grid-template-columns: 1fr;
  }

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

  .quick-view-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta-group {
    flex-direction: column;
  }
}

/* ==========================================================================
   AUTHENTIC DOSSIER EXTENDED SECTIONS (DUAL PROMO, GENDER, FRANCE, BOUTIQUE)
   ========================================================================== */

/* 1. Dual Promo Banners */
.dual-promo-section {
  padding: 0.5rem 0;
}

.dual-promo-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

.dual-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.promo-banner-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 2506 / 1840;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 2rem 1.5rem 2rem;
  background-color: #e5ece5;
}

.promo-card-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.promo-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.promo-banner-card:hover .promo-bg-img {
  transform: scale(1.03);
}

.promo-card-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.promo-card-content {
  position: relative;
  z-index: 5;
  max-width: 320px;
  pointer-events: none;
}

.promo-badge-tag {
  margin-bottom: 0.75rem;
}

.dossier-brand-vector {
  display: block;
  width: auto;
  height: 84px;
  max-width: 110px;
}

.dossier-pill-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.6px solid #111111;
  border-radius: 14px;
  padding: 4px 14px;
  line-height: 1.08;
  background: transparent;
}

.dossier-pill-logo .brand-word {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
  font-family: var(--font-heading), -apple-system, sans-serif;
}

.dossier-pill-logo .sub-word {
  font-size: 9.5px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dossier-circle-logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1.6px solid #111111;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  line-height: 1.08;
  background: transparent;
}

.dossier-circle-logo .brand-word {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #111111;
  font-family: var(--font-heading), -apple-system, sans-serif;
}

.dossier-circle-logo .sub-word {
  font-size: 9px;
  font-weight: 600;
  color: #111111;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.promo-card-title {
  font-size: 24px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 16px 0;
  letter-spacing: 0.03px;
  line-height: 1;
  font-family: var(--font-heading), -apple-system, sans-serif;
}

.promo-card-desc {
  font-size: 24px;
  color: #111111;
  line-height: 25px;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03px;
  font-family: var(--font-body), -apple-system, sans-serif;
}

/* Expanding Action Button */
.promo-card-cta-corner {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 20;
}

.expanding-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  border-radius: 50px;
  height: 52px;
  width: 54px;
  max-width: 54px;
  padding: 0 16px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.45s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease, background-color 0.2s, color 0.2s;
}

.expanding-action-btn .chevron-svg {
  min-width: 20px;
  min-height: 20px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.expanding-action-btn .expanding-btn-text {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000000;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.35s ease;
}

.promo-banner-card:hover .expanding-action-btn,
.expanding-action-btn:hover {
  width: auto;
  max-width: 320px;
  padding: 0 22px 0 16px;
}

.promo-banner-card:hover .expanding-action-btn .expanding-btn-text,
.expanding-action-btn:hover .expanding-btn-text {
  opacity: 1;
}

.promo-mobile-btn-wrap {
  display: none;
}

.promo-mobile-pill {
  background: #ffffff;
  color: #111111;
  border: 1px solid #111111;
  border-radius: 50px;
  height: 42px;
  width: 168px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 768px) {
  .promo-card-cta-corner {
    display: none;
  }
  .promo-mobile-btn-wrap {
    display: block;
    margin-top: 1.25rem;
    position: relative;
    z-index: 20;
  }
  .promo-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .promo-card-desc {
    font-size: 16px;
    line-height: 1.2;
  }
}

/* 2. Gender Tri-Banners */
.gender-banners-section {
  padding: 0.5rem 0;
}

.gender-banners-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

.gender-banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gender-card {
  position: relative;
  background-color: #ededed;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
}

.gender-card-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.gender-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: 0.02em;
  z-index: 2;
  position: relative;
  margin: 0;
}

.gender-card-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.gender-card:hover .gender-img {
  transform: scale(1.03);
}

.gender-expand-pill {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 20;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.expand-pill-inner {
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  width: 44px;
  height: 44px;
  overflow: hidden;
  box-sizing: border-box;
  white-space: nowrap;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease;
}

.gender-card:hover .expand-pill-inner {
  width: 180px;
}

.pill-arrow {
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
  stroke: #000000;
  transition: transform 0.2s ease;
}

.pill-text {
  font-family: var(--font-accent), -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gender-card:hover .pill-text {
  opacity: 1;
}

.gender-expand-pill.style-always_expanded .expand-pill-inner {
  width: auto;
  min-width: 130px;
  padding: 8px 20px;
}

.gender-expand-pill.style-always_expanded .pill-text {
  opacity: 1;
}

.mobile-shop-text {
  display: none;
}

@media (max-width: 768px) {
  .gender-expand-pill {
    bottom: 0.85rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .expand-pill-inner {
    display: none;
  }

  .mobile-shop-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 24px;
    background-color: #ffffff;
    border-radius: 50px;
    font-family: var(--font-accent), -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    letter-spacing: 0.04em;
  }
}

/* 3. Featured French Perfumes */
.french-perfumes-section {
  padding: 0.75rem 0 1rem;
}

.french-perfumes-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

.french-perfumes-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.header-left-group {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}

.french-section-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  margin: 0;
}

.view-all-link {
  font-size: 0.95rem;
  color: #111111;
  text-decoration: underline;
  font-weight: 500;
}

.french-perfumes-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  gap: 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.french-perfumes-grid::-webkit-scrollbar {
  display: none;
}

.french-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-width: 280px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #ebe7e2;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.french-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

@media (max-width: 1024px) {
  .french-card {
    flex: 0 0 calc((100% - 14px) / 2);
  }
}

@media (max-width: 768px) {
  .french-card {
    flex: 0 0 78%;
    min-width: 240px;
  }
}

.french-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.french-card-media-link {
  display: block;
  width: 100%;
  aspect-ratio: 1.15 / 1;
  background-color: #f7f7f7;
  overflow: hidden;
}

.french-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.french-card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.french-product-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.french-product-title a {
  color: #111111;
  text-decoration: none;
}

.french-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
}

.french-card-rating .stars {
  color: #111111;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.french-card-rating .reviews-num {
  color: #777777;
  font-size: 0.85rem;
}

.french-inspired-subtitle {
  font-size: 0.9rem;
  color: #444444;
  margin: 0 0 1rem;
  line-height: 1.4;
  min-height: 38px;
}

.french-atc-pill {
  margin-top: auto;
  width: 100%;
  padding: 0.7rem 1.25rem;
  border-radius: 9999px;
  background-color: #ffffff;
  color: #111111;
  border: 1px solid #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}

.french-atc-pill .atc-label {
  color: #111111;
  font-weight: 700;
  display: inline-block;
  transition: color 0.2s ease;
}

.french-atc-pill .atc-old-price {
  text-decoration: line-through;
  color: #888888;
  margin-left: 4px;
}

.french-atc-pill .atc-sale-price {
  color: #ef776a;
  font-weight: 700;
}

.french-atc-pill:hover {
  background-color: #111111;
  color: #ffffff;
  border-color: #111111;
}

.french-atc-pill:hover .atc-label {
  color: #ffffff;
}

.french-atc-pill:hover .atc-sale-price {
  color: #ff9b90;
}

/* 4. Boutiques Banner */
.boutiques-banner-section {
  padding: 0.5rem 0;
}

.boutiques-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

.boutiques-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 211px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  background-color: #9f4922;
}

.boutiques-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.boutiques-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.boutiques-card:hover .boutiques-bg-img {
  transform: scale(1.02);
}

.boutiques-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 10;
}

.boutiques-content {
  position: relative;
  z-index: 5;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

.boutiques-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0;
  color: #ffffff;
  line-height: 1.1;
}

.boutiques-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.boutiques-mobile-btn {
  display: none;
}

.boutiques-desktop-cta {
  position: relative;
  z-index: 20;
}

.boutiques-expanding-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #111111;
  border-radius: 50px;
  height: 52px;
  width: 52px;
  padding: 0 15px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s, color 0.2s;
}

.boutiques-expanding-btn .chevron-svg {
  min-width: 22px;
  min-height: 22px;
}

.boutiques-expanding-btn .expanding-btn-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.boutiques-card:hover .boutiques-expanding-btn,
.boutiques-expanding-btn:hover {
  width: 170px;
  background: #ffffff;
  color: #111111;
}

.boutiques-card:hover .boutiques-expanding-btn .expanding-btn-text,
.boutiques-expanding-btn:hover .expanding-btn-text {
  opacity: 1;
  max-width: 120px;
}

.boutiques-expanding-btn:hover {
  background: #111111;
  color: #ffffff;
}

.boutiques-expanding-btn:hover .chevron-svg path {
  stroke: #ffffff;
}

@media (max-width: 767px) {
  .boutiques-card {
    min-height: 201px;
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }
  .boutiques-title {
    font-size: 1.65rem;
  }
  .boutiques-subtitle {
    font-size: 1.1rem;
  }
  .boutiques-desktop-cta {
    display: none;
  }
  .boutiques-mobile-btn {
    display: inline-flex;
    pointer-events: auto;
    background: #ffffff;
    color: #111111;
    padding: 0.55rem 1.4rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    width: fit-content;
    margin-top: 0.75rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .dual-promo-grid {
    grid-template-columns: 1fr;
  }
  .gender-banners-grid {
    grid-template-columns: 1fr;
  }
  .french-perfumes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .french-perfumes-grid {
    grid-template-columns: 1fr;
  }
  .boutiques-card {
    padding: 1.75rem 1.5rem;
    min-height: 180px;
  }
  .boutiques-title {
    font-size: 1.65rem;
  }
  .boutiques-subtitle {
    font-size: 0.95rem;
  }
}

/* 5. The Perfume House Banner */
.perfume-house-section {
  padding: 0.5rem 0 1rem;
}

.perfume-house-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

.perfume-house-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 540px;
  aspect-ratio: 2602 / 1340;
  background-color: #111111;
  color: #FFFFFF;
}

.house-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
  padding: 56px 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.house-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.perfume-house-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.perfume-house-picture .house-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right bottom;
}

.perfume-house-inner-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  flex: 1;
}

.house-text-block {
  max-width: 580px;
}

.house-main-heading {
  font-family: var(--font-heading), -apple-system, sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.house-main-heading .registered-mark {
  font-size: 20px;
  vertical-align: super;
  font-weight: 600;
  margin-left: 2px;
}

.house-heading-group {
  margin: 0 0 16px 0;
}

.house-heading-line-1 {
  font-family: var(--font-heading), -apple-system, sans-serif;
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
}

.house-heading-line-2 {
  font-family: var(--font-heading), -apple-system, sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0;
}

.house-promise-subtitle {
  font-family: var(--font-body), -apple-system, sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
  display: block;
  margin-bottom: 14px;
}

.house-sub-desc {
  font-family: var(--font-body), -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin: 0 0 22px 0;
  max-width: 530px;
}

.house-sub-desc strong {
  font-weight: 600;
  color: #FFFFFF;
}

.house-about-link {
  font-family: var(--font-body), -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 4px;
  display: inline-block;
  transition: opacity 0.2s ease;
}

.house-about-link:hover {
  opacity: 0.85;
}

.house-carousel-controls {
  position: absolute;
  bottom: 36px;
  left: 48px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
}

.house-nav-arrow {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.house-nav-arrow:hover {
  opacity: 1;
}

.house-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.house-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.house-dot.active {
  background: #FFFFFF;
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .perfume-house-card {
    min-height: 480px;
    aspect-ratio: auto;
  }
  .house-slide {
    padding: 28px 20px 70px;
  }
  .house-main-heading {
    font-size: 30px;
    line-height: 1.05;
  }
  .house-main-heading .registered-mark {
    font-size: 14px;
  }
  .house-heading-line-1,
  .house-heading-line-2 {
    font-size: 32px;
  }
  .house-promise-subtitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .house-sub-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .house-about-link {
    font-size: 16px;
  }
  .house-carousel-controls {
    bottom: 20px;
    left: 20px;
  }
}

/* ==========================================================================
   OUR LATEST DROPS SECTION (AUTHENTIC DOSSIER PIXEL-PERFECT)
   ========================================================================== */

.latest-drops-section {
  padding: 0.75rem 0 0.5rem;
}

.latest-drops-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 16px;
}

.latest-drops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.latest-drops-title {
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--bs-heading-color, #111111);
  letter-spacing: -0.025em;
  margin: 0;
}

.carousel-nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-chevron-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #555555;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-chevron-btn:hover {
  background: #f0f0f0;
  color: #111111;
}

.latest-drops-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.15rem 0 0.75rem;
}

.latest-drops-grid::-webkit-scrollbar {
  display: none;
}

.drop-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-color: #111111;
  aspect-ratio: 1 / 1.62;
  min-height: 440px;
  flex: 0 0 calc(25% - 0.65rem);
  min-width: 275px;
  scroll-snap-align: start;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
}

.drop-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.drop-card-tag {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  z-index: 10;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.01em;
}

.drop-card-media-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.drop-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: opacity 0.35s ease, transform 0.4s ease;
  display: block;
}

.drop-card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.4s ease;
  display: block;
  pointer-events: none;
}

.drop-card:hover .drop-card-img.has-hover-image {
  opacity: 0;
  transform: scale(1.02);
}

.drop-card:hover .drop-card-img-hover {
  opacity: 1;
  transform: scale(1.02);
}

.drop-card:hover .drop-card-img:not(.has-hover-image) {
  transform: scale(1.03);
}

.drop-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 0.9rem 0.9rem;
  z-index: 10;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.drop-card-info {
  min-width: 0;
  width: 100%;
}

.drop-product-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bs-name-color, #ffffff);
  margin: 0 0 0.15rem;
  letter-spacing: -0.02em;
}

.drop-product-title a {
  color: var(--bs-name-color, #ffffff);
  text-decoration: none;
}

.drop-collection-subtitle {
  font-size: 0.78rem;
  color: var(--bs-desc-color, rgba(255, 255, 255, 0.9));
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.drop-collection-subtitle strong {
  font-weight: 700;
  color: var(--bs-desc-color, #ffffff);
}

.drop-atc-pill {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.65rem 1rem;
  border-radius: 9999px;
  background-color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.drop-atc-pill .atc-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--bs-btn-text-color, #111111);
  letter-spacing: 0.04em;
}

.drop-atc-pill .atc-old-price {
  font-size: 0.76rem;
  color: var(--bs-compare-color, #777777);
  text-decoration: line-through;
  margin-left: 2px;
}

.drop-atc-pill .atc-sale-price {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--bs-price-color, #ef776a);
}

.drop-atc-pill:hover {
  background-color: #111111;
  transform: translateY(-1px);
}

.drop-atc-pill:hover .atc-label {
  color: #ffffff;
}

.drop-atc-pill:hover .atc-sale-price {
  color: #ff9b90;
}

/* ==========================================================================
   AUTHENTIC MOBILE RESPONSIVENESS & INTERACTION FIXES (ALL SCREENS)
   ========================================================================== */

/* Carousel Dots Indicator */
.mobile-carousel-nav {
  display: none;
}

@media (max-width: 991px) {
  /* 1. Mobile Header */
  .site-header {
    height: 68px !important;
    padding: 0 16px !important;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
  }

  .header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    height: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }

  .brand-logo {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
  }

  .brand-logo svg, .brand-logo-img {
    width: auto !important;
    max-width: var(--logo-width-mobile, 120px) !important;
    max-height: 36px !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
  }

  .brand-wordmark-title {
    font-size: 20px !important;
  }

  .brand-wordmark-sub {
    font-size: 7px !important;
    letter-spacing: 0.14em !important;
    margin-top: 2px !important;
  }

  .header-right-cluster {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 1 !important;
    min-width: 0 !important;
    gap: 14px !important;
    margin: 0 !important;
  }

  .header-search-capsule {
    order: 1 !important;
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 44px !important;
    padding: 0 14px !important;
    border-radius: 9999px !important;
    background: #f4f4f4 !important;
    border: 1px solid transparent !important;
    margin: 0 !important;
  }

  .header-search-capsule input {
    font-size: 0.95rem !important;
    width: 100% !important;
    min-width: 0 !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #111111 !important;
  }

  .header-search-capsule .search-submit-icon {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: #666666 !important;
    display: flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
  }

  .header-search-capsule .search-submit-icon svg {
    width: 19px !important;
    height: 19px !important;
  }

  .about-dropdown-item,
  .about-link {
    display: none !important;
  }

  .account-icon-link {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: #111111 !important;
    padding: 6px !important;
  }

  .cart-toggle-btn {
    order: 3 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: #111111 !important;
    padding: 6px !important;
  }

  .account-icon-link svg,
  .cart-toggle-btn svg {
    width: 24px !important;
    height: 24px !important;
  }

  .cart-toggle-btn .bag-count-badge {
    font-size: 10px !important;
    top: 8px !important;
  }

  .mobile-menu-btn {
    order: 4 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: none !important;
    padding: 6px !important;
    color: #111111 !important;
    flex-shrink: 0 !important;
    min-width: 36px !important;
    min-height: 36px !important;
    cursor: pointer !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10 !important;
  }

  .mobile-menu-btn svg {
    width: 26px !important;
    height: 22px !important;
  }

  .main-nav {
    display: none !important;
  }

  .mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

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

  .mobile-drawer {
    z-index: 100000 !important;
    width: min(88vw, 360px) !important;
  }

  /* 2. Mobile Hero */
  .hero-section {
    min-height: calc(100vh - 56px) !important;
    padding: 0 !important;
  }

  .hero-title-yellow {
    font-size: 2.25rem !important;
    line-height: 1 !important;
  }

  .hero-subtag {
    font-size: 0.8rem !important;
  }

  .hero-cta-group {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .hero-cta-group .primary-btn, 
  .hero-cta-group .secondary-btn {
    flex: 1 !important;
    padding: 0.75rem 0.5rem !important;
    font-size: 0.75rem !important;
    text-align: center !important;
  }

  /* 3. Mobile Our Latest Drops */
  .latest-drops-section {
    padding: 0.75rem 0 0.5rem !important;
  }

  .latest-drops-header {
    padding: 0 1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .latest-drops-header .carousel-nav-arrows {
    display: none !important; /* Hide desktop top arrows on mobile */
  }

  .latest-drops-grid {
    padding: 0 1rem 0.5rem !important;
    gap: 0.65rem !important;
  }

  .drop-card {
    flex: 0 0 78% !important;
    min-width: 250px !important;
    aspect-ratio: 1 / 1.55 !important;
    min-height: 380px !important;
    border-radius: 12px !important;
  }

  .mobile-carousel-nav {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-top: 0.5rem !important;
    padding: 0 1rem !important;
  }

  .mobile-nav-arrow {
    background: transparent !important;
    border: none !important;
    color: #111111 !important;
    padding: 4px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
  }

  .mobile-nav-arrow.mobile-prev {
    color: #cccccc !important;
  }

  .carousel-dots-indicator {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }

  .carousel-dots-indicator .dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background-color: #d8d8d8 !important;
    transition: background-color 0.2s ease, transform 0.2s ease !important;
  }

  .carousel-dots-indicator .dot.active {
    background-color: #111111 !important;
    transform: scale(1.15) !important;
  }

  /* 4. Mobile Dual Promo Banners */
  .dual-promo-section {
    padding: 0.5rem 0 !important;
  }

  .dual-promo-grid {
    grid-template-columns: 1fr !important;
    gap: 0.65rem !important;
  }

  .promo-banner-card {
    aspect-ratio: 1436 / 1260 !important;
    min-height: 380px !important;
    padding: 1.5rem 1.25rem !important;
    border-radius: 12px !important;
  }

  .promo-card-title {
    font-size: 1.45rem !important;
  }

  .promo-card-desc {
    font-size: 0.95rem !important;
  }

  .promo-card-cta-corner {
    position: relative !important;
    bottom: auto !important;
    right: auto !important;
    margin-top: auto !important;
  }

  .expanding-action-btn {
    width: auto !important;
    height: 44px !important;
    padding: 0 1.5rem !important;
    border-radius: 9999px !important;
    background: #ffffff !important;
    color: #111111 !important;
    display: inline-flex !important;
    align-items: center !important;
  }

  .expanding-action-btn .chevron-svg {
    display: none !important;
  }

  .expanding-action-btn .expanding-btn-text {
    opacity: 1 !important;
    max-width: none !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
  }

  /* 5. Mobile Gender Tri-Banners (1 Single Row of 3 Vertical Cards) */
  .gender-banners-section {
    padding: 0.5rem 0 !important;
  }

  .gender-banners-grid {
    display: grid !important;
    grid-template-columns: repeat(var(--banners-count, 3), minmax(0, 1fr)) !important;
    gap: 0.5rem !important;
  }

  .gender-banners-grid.banners-count-4,
  .gender-banners-grid.banners-count-5,
  .gender-banners-grid.banners-count-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .gender-card {
    aspect-ratio: 1 / 2.25 !important;
    min-height: 250px !important;
    padding: 0.75rem 0.5rem !important;
    border-radius: 0 !important;
  }

  .gender-card-title {
    font-size: 0.95rem !important;
    font-weight: 800 !important;
  }

  .gender-shop-pill-btn {
    position: absolute !important;
    bottom: 0.75rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #ffffff !important;
    color: #111111 !important;
    padding: 0.45rem 1.1rem !important;
    border-radius: 9999px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    letter-spacing: 0.04em !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12) !important;
    z-index: 20 !important;
    white-space: nowrap !important;
  }

  /* 6. Mobile French Perfumes Carousel */
  .french-perfumes-section {
    padding: 0.75rem 0 1rem !important;
  }

  .french-perfumes-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 0.75rem !important;
    padding-bottom: 0.5rem !important;
    scrollbar-width: none !important;
  }

  .french-perfumes-grid::-webkit-scrollbar {
    display: none !important;
  }

  .french-card {
    flex: 0 0 78% !important;
    min-width: 240px !important;
    scroll-snap-align: start !important;
  }
}

/* Floating Sticky Sale Pill Badge */
.floating-sale-pill {
  position: fixed;
  bottom: 18px;
  right: 14px;
  z-index: 9999;
  background-color: #000000;
  color: #ffffff;
  padding: 8px 14px 8px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.floating-sale-pill:hover {
  transform: translateY(-2px);
}

.floating-sale-pill .sale-tag-icon {
  color: #ef776a;
  font-size: 0.85rem;
}

.floating-sale-pill .sale-close-btn {
  background: transparent;
  border: none;
  color: #888888;
  font-size: 0.9rem;
  cursor: pointer;
  margin-left: 2px;
  display: flex;
  align-items: center;
  padding: 0;
}

.floating-sale-pill .sale-close-btn:hover {
  color: #ffffff;
}

/* ===================================================
   AUTHENTIC DOSSIER COLLECTION PAGE STYLES
   =================================================== */

.dossier-collection-page-section {
  width: 100%;
  max-width: 100%;
  background-color: #FAF6F0;
  margin: 0;
  padding: 0;
}

/* 1. Subnav Bar */
.collection-subnav-bar {
  background-color: #FAF6F0;
  border-bottom: 1px solid #EBE7E2;
  overflow-x: auto;
  scrollbar-width: none;
}

.collection-subnav-bar::-webkit-scrollbar {
  display: none;
}

.collection-subnav-container {
  width: 100%;
  max-width: 100%;
  padding: 0 16px;
}

.collection-subnav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

.subnav-tab {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  color: #555555;
  padding: 12px 14px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.subnav-tab:hover {
  color: #000000;
}

.subnav-tab.active {
  color: #000000;
  font-weight: 700;
  border-bottom: 2px solid #000000;
}

/* 2. Controls & Filter Bar */
.collection-controls-bar {
  background-color: #FFFFFF;
  border-bottom: 1px solid #EBE7E2;
  padding: 10px 16px;
}

.collection-controls-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-sort-filter {
  background-color: #FAF6F0;
  border: 1px solid #E4DFD8;
  border-radius: 9999px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: #000000;
  transition: background-color 0.2s ease;
}

.btn-sort-filter:hover {
  background-color: #F0EAE1;
}

.collection-search-capsule {
  position: relative;
  flex: 1;
  max-width: 380px;
  min-width: 200px;
}

.collection-search-capsule input {
  width: 100%;
  padding: 8px 36px 8px 16px;
  background-color: #FAF6F0;
  border: 1px solid #E4DFD8;
  border-radius: 9999px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  color: #000000;
  outline: none;
  transition: border-color 0.2s ease;
}

.collection-search-capsule input:focus {
  border-color: #000000;
  background-color: #FFFFFF;
}

.collection-search-capsule .search-icon-box {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #555555;
  display: flex;
  align-items: center;
}

.quick-filters-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-filter-pill {
  background-color: #FAF6F0;
  border: 1px solid #E4DFD8;
  border-radius: 9999px;
  padding: 7px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: #222222;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-filter-pill:hover {
  background-color: #F0EAE1;
  border-color: #000000;
}

.quick-filter-pill .chevron {
  transition: transform 0.2s ease;
}

/* 3. Subtitle & Meta Bar */
.collection-meta-bar {
  background-color: #FAF6F0;
  border-bottom: 1px solid #EBE7E2;
  padding: 10px 16px;
}

.collection-meta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.collection-meta-desc {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: #444444;
  margin: 0;
}

.collection-meta-count {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  color: #000000;
}

/* 4. Products Grid */
.collection-grid-wrapper {
  padding: 16px;
  background-color: #FAF6F0;
}

.collection-grid-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.dossier-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .dossier-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .dossier-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}

/* Sale Tier Promo Card */
.dossier-sale-tier-card {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.sale-tier-header {
  margin-bottom: 12px;
}

.sale-tier-sub {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #A0A0A0;
  font-weight: 700;
  display: block;
}

.sale-tier-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 4px 0 0;
  line-height: 1.1;
}

.sale-tier-title .asterisk {
  font-size: 1.2rem;
  color: #EF776A;
}

.sale-tier-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.sale-tier-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.sale-tier-row.highlight-row {
  background: #FFFFFF;
  color: #000000;
}

.sale-tier-disclaimer {
  font-family: var(--font-accent);
  font-size: 0.68rem;
  color: #888888;
  line-height: 1.35;
  margin: 0 0 12px;
}

.sale-tier-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #FFFFFF;
  color: #000000;
  padding: 10px;
  border-radius: 9999px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background-color 0.2s ease;
}

.sale-tier-cta-btn:hover {
  background-color: #F0EAE1;
}

/* Authentic Dossier Product Cards */
.dossier-prod-card {
  background-color: #FFFFFF;
  border: 1px solid #EBE7E2;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dossier-prod-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.prod-card-media {
  position: relative;
  background-color: #FAF6F0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prod-card-img-link,
.card-image-link,
.french-card-media-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.prod-bottle-img,
.card-img-primary,
.french-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block;
}

.prod-bottle-img-hover,
.card-img-hover,
.french-card-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block;
  pointer-events: none;
}

.dossier-prod-card:hover .prod-bottle-img.has-hover-image,
.product-card:hover .card-img-primary.has-hover-image,
.french-card:hover .french-card-img.has-hover-image {
  opacity: 0;
  transform: scale(1.04);
}

.dossier-prod-card:hover .prod-bottle-img-hover,
.product-card:hover .card-img-hover,
.french-card:hover .french-card-img-hover {
  opacity: 1;
  transform: scale(1.04);
}

.dossier-prod-card:hover .prod-bottle-img:not(.has-hover-image),
.product-card:hover .card-img-primary:not(.has-hover-image),
.french-card:hover .french-card-img:not(.has-hover-image) {
  transform: scale(1.04);
}

.prod-badge-logo {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

.dossier-mark {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #000000;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
}

.prod-badge-gender {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.prod-badge-gender.unisex {
  border: 1px solid #CDB087;
  color: #CDB087;
  background-color: #FFFFFF;
}

.prod-badge-gender.women {
  border: 1px solid #E27B66;
  color: #E27B66;
  background-color: #FFFFFF;
}

.prod-badge-gender.men {
  border: 1px solid #000000;
  color: #000000;
  background-color: #FFFFFF;
}

.prod-card-hover-atc {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 3;
}

.dossier-prod-card:hover .prod-card-hover-atc {
  opacity: 1;
  transform: translateY(0);
}

.desktop-hover-atc-btn {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  padding: 8px 22px;
  border-radius: 9999px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.desktop-hover-atc-btn:hover {
  background-color: #333333;
}

.prod-card-body {
  padding: 12px 10px;
  background-color: #FAF6F0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.prod-card-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.prod-title {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  color: #000000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prod-title a {
  color: inherit;
  text-decoration: none;
}

.scent-tag {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: lowercase;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
}

.scent-tag.warm {
  background-color: #F4E2D7;
  color: #8F4C2E;
}

.scent-tag.floral {
  background-color: #FCE6EE;
  color: #B33D62;
}

.scent-tag.woody {
  background-color: #EAE3D6;
  color: #5D503F;
}

.scent-tag.gourmand {
  background-color: #F8E8D0;
  color: #875727;
}

.scent-tag.fresh {
  background-color: #DCECF0;
  color: #2B6C7E;
}

.prod-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #CDB087;
}

.prod-card-rating .reviews-count {
  color: #666666;
  font-size: 0.7rem;
  font-weight: 600;
}

.prod-inspiration-text,
.french-inspired-subtitle,
.card-vendor {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: #555555;
  margin: 0;
  white-space: normal !important;
  word-break: break-word !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.35;
}

.drop-collection-subtitle {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  color: var(--bs-desc-color, #555555);
  margin: 0;
  white-space: normal !important;
  word-break: break-word !important;
  overflow: visible !important;
  text-overflow: clip !important;
  line-height: 1.35;
}

.prod-inspiration-text strong,
.french-inspired-subtitle strong,
.card-vendor strong {
  color: #111111;
  font-weight: 700;
}

.drop-collection-subtitle strong {
  color: var(--bs-desc-color, #111111);
  font-weight: 700;
}

.pdp-inspired-by-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #222222;
  background: #F8F6F2;
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid #E5E0D8;
}

.pdp-inspired-title {
  color: #333333;
  font-size: 0.92rem;
}

.pdp-inspired-title strong {
  font-weight: 700;
  color: #111111;
}

.inspired-by-prefix {
  color: #555048;
  font-weight: 600;
}

.prod-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.price-pill-wrap {
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 9999px;
  padding: 3px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

.discount-badge {
  color: #EF776A;
  font-weight: 800;
}

.price-original {
  font-family: var(--font-accent);
  font-size: 0.76rem;
  color: #888888;
  text-decoration: line-through;
}

.mobile-atc-pill-btn {
  display: none;
  width: 100%;
  margin-top: 6px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 9999px;
  padding: 7px;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

@media (max-width: 768px) {
  .prod-card-hover-atc {
    display: none;
  }
  .mobile-atc-pill-btn {
    display: block;
  }
}

/* 3-Dots Kebab Menu for User Reviews & Video Reviews */
.review-kebab-wrap {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.review-card .review-card-top .review-kebab-wrap {
  position: relative;
  top: auto;
  right: auto;
  margin-left: auto;
}

.review-kebab-btn {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #55504A;
  width: 26px;
  height: 26px;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  box-shadow: none;
}

.video-media-wrapper .review-kebab-btn {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.review-kebab-btn:hover {
  background: #111111;
  color: #FFFFFF;
  border-color: #111111;
  transform: scale(1.06);
}

.video-media-wrapper .review-kebab-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
}

.review-kebab-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid #ECE7E1;
  border-radius: 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  min-width: 135px;
  padding: 4px;
  display: none;
  flex-direction: column;
  z-index: 50;
  animation: kebabFadeIn 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-kebab-menu.active {
  display: flex;
}

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

.kebab-menu-item {
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #2B2623;
  display: flex;
  align-items: center;
  gap: 7px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: inherit;
}

.kebab-menu-item svg {
  flex-shrink: 0;
}

.kebab-menu-item:hover {
  background: #F5F1EA;
  color: #111111;
}

.kebab-menu-item.delete {
  color: #C81E1E;
}

.kebab-menu-item.delete:hover {
  background: #FFF1F0;
  color: #D32F2F;
}




/* Reviews Pagination & Show More Button */
.reviews-pagination-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  text-align: center;
  width: 100%;
}

.reviews-progress-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: 340px;
}

.reviews-progress-bar {
  width: 100%;
  height: 4px;
  background-color: #E6E0D6;
  border-radius: 999px;
  overflow: hidden;
}

.reviews-progress-fill {
  height: 100%;
  background-color: #111111;
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-count-indicator {
  font-family: var(--font-body, -apple-system, sans-serif);
  font-size: 0.84rem;
  font-weight: 500;
  color: #555555;
  letter-spacing: 0.02em;
}

.reviews-count-indicator span {
  font-weight: 700;
  color: #111111;
}

.reviews-show-more-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #111111 !important;
  color: #FFFFFF !important;
  border: 1.5px solid #111111 !important;
  padding: 0.95rem 2.75rem !important;
  font-family: var(--font-accent, -apple-system, sans-serif);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.22s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.reviews-show-more-btn:hover {
  background-color: #CDB087 !important;
  border-color: #CDB087 !important;
  color: #111111 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.reviews-show-more-btn:active {
  transform: translateY(0);
}

.reviews-show-more-btn .btn-icon {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.reviews-show-more-btn.is-expanded .btn-icon {
  transform: rotate(180deg);
}

.review-card.review-reveal-in {
  animation: reviewFadeUp 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes reviewFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
