/* ══════════════════════════════════════════════════════════════════
   MAXLI PERFUME — OFFICIAL LUXURY MAISON STYLESHEET (PRODUCTION)
   Theme: Midnight Sapphire & Electric Radiant Cyan
   ══════════════════════════════════════════════════════════════════ */

/* ═══ DESIGN SYSTEM & ROOT TOKENS ═══ */
:root {
  --bg-deep: #030a16;
  --bg-mid: #07152b;
  --bg-surface: #0b1f3c;
  --bg-card: #0f284e;
  --bg-light: #143564;

  --cyan: #00b4d8;
  --cyan-bright: #00e5ff;
  --cyan-glow: #38bdf8;
  --cyan-pale: #bae6fd;
  --cyan-ice: #e0f2fe;

  --azure: #0284c7;
  --azure-deep: #0369a1;

  --cream: #ffffff;
  --text-main: #f0f7ff;
  --text-muted: rgba(240, 247, 255, 0.88);
  --text-dim: rgba(224, 242, 254, 0.55);

  --wine: #0b1f3c;
  --wine-mid: #07152b;
  --wine-deep: #030a16;
  --wine-light: #0f284e;
  --gold: #00e5ff;
  --gold-light: #38bdf8;
  --gold-pale: #bae6fd;

  --serif: "Playfair Display", Georgia, serif;
  --body: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;
  --thin: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --r: 16px;
}

/* ═══ BASE & RESETS ═══ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--body);
  background: var(--bg-deep);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.7;
  width: 100%;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.25s, opacity 0.25s, transform 0.25s;
}

ul {
  list-style: none;
}

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

em {
  font-style: italic;
}

button {
  font-family: inherit;
  cursor: pointer;
}

/* ═══ FAST SNAPPY LOADER ═══ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 90vw;
}

.loader-logo {
  width: clamp(160px, 20vw, 240px);
  height: auto;
  animation: logoPulse 1.8s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% {
    filter: drop-shadow(0 0 14px rgba(0, 180, 216, 0.45));
  }
  50% {
    filter: drop-shadow(0 0 36px rgba(0, 229, 255, 0.95));
  }
}

.loader-line {
  width: min(240px, 75vw);
  height: 2px;
  background: rgba(0, 229, 255, 0.2);
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.loader-line span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, transparent, var(--cyan-bright), transparent);
  animation: loaderScan 1.4s ease-in-out infinite;
}

@keyframes loaderScan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(300%); }
}

.loader-sub {
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: var(--cyan-bright);
}

/* ═══ TOP ANNOUNCEMENT BAR ═══ */
.top-announcement {
  position: relative;
  height: 34px;
  line-height: 34px;
  z-index: 1001;
  background: linear-gradient(90deg, #030a16, #071c3b, #004e7c, #071c3b, #030a16);
  background-size: 300% 100%;
  animation: announceGlow 8s ease infinite;
  border-bottom: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0 16px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d1f4ff;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  user-select: none;
}

@keyframes announceGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.announcement-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ann-item {
  color: var(--cyan-ice);
  text-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
  white-space: nowrap;
}

.ann-sep {
  color: var(--cyan-bright);
  opacity: 0.6;
}

@media (min-width: 1150px) {
  .top-announcement {
    justify-content: center;
  }
  .announcement-track {
    width: 100%;
    justify-content: center;
  }
  .announcement-content[aria-hidden="true"] {
    display: none;
  }
}

@media (max-width: 1149px) {
  .announcement-track {
    animation: annTicker 25s linear infinite;
  }
  .top-announcement:hover .announcement-track {
    animation-play-state: paused;
  }
}

@keyframes annTicker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══ NAVIGATION ═══ */
#nav {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px clamp(20px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: top 0.3s var(--ease), padding 0.35s var(--ease), background 0.35s var(--ease), border 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: transparent;
}

#nav.scrolled {
  top: 0;
  background: rgba(3, 10, 22, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 10px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
}

.nav-brand {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.nav-brand img {
  height: clamp(56px, 6.5vw, 76px);
  width: auto;
  transition: height 0.35s var(--ease), filter 0.3s;
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.45));
}

#nav.scrolled .nav-brand img {
  height: clamp(44px, 4.8vw, 58px);
}

.nav-brand:hover img {
  filter: drop-shadow(0 0 24px rgba(0, 229, 255, 0.95));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 28px);
  white-space: nowrap;
}

.nav-menu .n-link {
  font-size: clamp(0.74rem, 0.82vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(224, 242, 254, 0.82);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav-menu .n-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-bright);
  box-shadow: 0 0 10px var(--cyan-bright);
  transition: width 0.3s var(--ease);
}

.nav-menu .n-link:hover {
  color: var(--cyan-bright);
}

.nav-menu .n-link:hover::after {
  width: 100%;
}

.nav-menu .highlight-pill {
  border: 1px solid rgba(0, 229, 255, 0.35);
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.07);
  color: var(--cyan-bright);
}

.nav-menu .highlight-pill::after {
  display: none;
}

.nav-menu .highlight-pill:hover,
.nav-menu .highlight-pill.active {
  background: rgba(0, 229, 255, 0.18);
  border-color: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
  color: #ffffff;
}

.nav-menu .n-link.active {
  color: var(--cyan-bright);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.45);
}

.nav-menu .n-link.active::after {
  width: 100%;
}

.drawer-menu a.active {
  color: var(--cyan-bright) !important;
  text-shadow: 0 0 14px rgba(0, 229, 255, 0.6);
  transform: translateX(6px);
  font-weight: 600;
  position: relative;
}

.drawer-menu a.active::before {
  content: '✦';
  display: inline-block;
  margin-right: 8px;
  font-size: 0.85em;
  color: var(--cyan-bright);
  vertical-align: middle;
}

/* ═══ NAV ACTIONS ═══ */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-action-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(224, 242, 254, 0.85);
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: rgba(7, 21, 43, 0.6);
  transition: all 0.25s ease;
}

.nav-action-link svg {
  color: #25d366;
  filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.6));
}

.nav-action-link:hover {
  border-color: rgba(0, 229, 255, 0.6);
  color: #ffffff;
  background: rgba(11, 31, 60, 0.9);
  transform: translateY(-1px);
}

/* Luxury Cart Button */
.nav-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 21, 43, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(224, 242, 254, 0.85);
  font-weight: 500;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  line-height: 1.2;
}

.nav-cart-btn svg {
  color: var(--cyan-bright);
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.45));
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.nav-cart-btn:hover {
  border-color: rgba(0, 229, 255, 0.6);
  color: #ffffff;
  background: rgba(11, 31, 60, 0.9);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.25);
  transform: translateY(-1px);
}

.nav-cart-btn:hover svg {
  transform: scale(1.08);
}

.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.16);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--cyan-bright);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.bump {
  animation: badgePop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.has-items {
  background: linear-gradient(135deg, #00e5ff, #00b4d8);
  border-color: #00e5ff;
  color: #030a16;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Burger Button */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(7, 21, 43, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 6px;
  z-index: 1002;
  transition: all 0.3s;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan-bright);
  transition: all 0.3s var(--ease);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══ MOBILE DRAWER ═══ */
.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 85vw);
  height: 100vh;
  background: rgba(3, 10, 22, 0.98);
  border-left: 1px solid rgba(0, 229, 255, 0.25);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 2000;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: right 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.drawer-brand img { height: 48px; width: auto; }
.drawer-close {
  background: none;
  border: none;
  color: var(--cyan-bright);
  font-size: 1.4rem;
  line-height: 1;
}

.drawer-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-menu a {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: #ffffff;
  display: block;
  transition: color 0.2s, transform 0.2s;
}

.drawer-menu a:hover {
  color: var(--cyan-bright);
  transform: translateX(6px);
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.25), rgba(0, 229, 255, 0.15));
  border: 1px solid var(--cyan-bright);
  color: var(--cyan-bright);
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.drawer-wa-btn {
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer.open ~ .drawer-overlay {
  opacity: 1;
  visibility: visible;
}

/* ═══ SLIDE-OVER SIDE CART DRAWER (LUXURY ATELIER EDITION) ═══ */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(460px, 94vw);
  height: 100vh;
  height: 100dvh;
  background: rgba(3, 10, 24, 0.98);
  border-left: 1px solid rgba(0, 229, 255, 0.2);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.85);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 22px 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(6, 16, 36, 0.65);
  flex-shrink: 0;
}

.cart-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-header-title h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin: 0;
}

.cart-count-pill {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.28);
  color: #38bdf8;
  font-weight: 600;
}

.cart-drawer-close {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cart-drawer-close:hover {
  background: rgba(0, 229, 255, 0.15);
  border-color: rgba(0, 229, 255, 0.4);
  color: #00e5ff;
  transform: rotate(90deg);
}

/* Free Shipping Bar */
.cart-shipping-bar {
  padding: 12px 26px;
  background: linear-gradient(90deg, rgba(8, 24, 52, 0.7), rgba(4, 14, 32, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.shipping-msg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #cbd5e1;
  margin-bottom: 8px;
  line-height: 1.3;
}

.shipping-msg strong {
  color: #ffffff;
  font-weight: 600;
}

.ship-icon {
  color: #00e5ff;
  font-size: 0.85rem;
}

.shipping-progress {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00b4d8, #00e5ff);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.6);
  transition: width 0.4s ease;
  border-radius: 999px;
}

/* Cart Items Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Empty Cart State (Clean & Minimalist) */
.cart-empty {
  margin: auto;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.cart-empty-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00e5ff;
  margin-bottom: 18px;
}

.cart-empty-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.cart-empty-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 270px;
  line-height: 1.5;
  margin: 0 0 22px;
}

.cart-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00e5ff 0%, #00b4d8 100%);
  color: #020713 !important;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
  transition: all 0.3s ease;
}

.cart-empty-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.6);
  color: #020713 !important;
}

/* Cart Populated Item Card */
.cart-item-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 12px;
  background: rgba(8, 22, 45, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.16);
  position: relative;
  transition: border-color 0.25s ease;
}

.cart-item-card:hover {
  border-color: rgba(0, 229, 255, 0.35);
}

.cart-item-thumb {
  width: 72px;
  height: 82px;
  border-radius: 8px;
  background: rgba(4, 12, 28, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  overflow: hidden;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.cart-item-name {
  font-family: var(--serif);
  font-size: 0.96rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  padding-right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: 0.7rem;
  color: #38bdf8;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 2px 0 6px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-weight: 700;
  color: #00e5ff;
  font-size: 0.98rem;
  font-variant-numeric: tabular-nums;
}

.cart-qty-ctrls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 12, 28, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 6px;
  padding: 3px 8px;
}

.cart-qty-btn {
  background: none;
  border: none;
  color: #00e5ff;
  font-size: 1rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.cart-qty-btn:hover {
  color: #ffffff;
}

.cart-qty-num {
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
  color: #ffffff;
  font-family: 'Jost', -apple-system, sans-serif;
}

.cart-item-del {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(148, 163, 184, 0.5);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 2px;
}

.cart-item-del:hover {
  color: #ef4444;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 20px 26px;
  background: rgba(4, 12, 28, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: #94a3b8;
}

.cart-summary-row.total-row {
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.14);
}

.cart-sum-val,
.cart-item-price,
.rec-price {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #f1f5f9;
}

.total-amt {
  font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  font-variant-numeric: tabular-nums;
  font-size: 1.32rem !important;
  font-weight: 700 !important;
  color: #00e5ff !important;
  letter-spacing: 0.01em;
}

.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00e5ff 0%, #0284c7 100%);
  color: #020713 !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
  transition: all 0.3s ease;
}

.cart-checkout-btn:not(:disabled):hover {
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.7);
  transform: translateY(-2px);
}

.cart-checkout-btn:disabled {
  background: rgba(12, 26, 48, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(148, 163, 184, 0.45) !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  filter: none !important;
  opacity: 1 !important;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2490;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

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

@media (max-width: 600px) {
  .cart-drawer {
    width: 100% !important;
    max-width: 100vw !important;
    right: -100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    border-left: none !important;
    border-radius: 0 !important;
  }
  .cart-drawer.open {
    right: 0 !important;
  }
  .cart-drawer-header {
    padding: 16px 20px !important;
  }
  .cart-shipping-bar {
    padding: 10px 20px !important;
  }
  .cart-drawer-body {
    padding: 16px 18px !important;
    gap: 14px !important;
  }
  .cart-empty {
    padding: 24px 0 !important;
  }
  .cart-empty-title {
    font-size: 1.2rem !important;
  }
  .cart-empty-desc {
    font-size: 0.8rem !important;
    max-width: 250px !important;
    margin-bottom: 18px !important;
  }
  .cart-drawer-footer {
    padding: 14px 18px max(16px, env(safe-area-inset-bottom)) !important;
    gap: 10px !important;
  }
  .cart-checkout-btn {
    padding: 14px !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }
  .nav-brand img {
    height: clamp(40px, 5.5vw, 52px);
  }
  .nav-action-link .action-label {
    display: none;
  }
  .nav-action-link {
    padding: 9px;
    border-radius: 8px;
  }
  .nav-cart-btn .cart-btn-text {
    display: none;
  }
  .nav-cart-btn {
    padding: 8px 10px;
    border-radius: 8px;
  }
}

/* ═══ HERO SECTION ═══ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px clamp(20px, 4vw, 64px) 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: brightness(1.25) contrast(1.15) saturate(1.2);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 45%, rgba(3, 10, 22, 0.1) 0%, rgba(3, 10, 22, 0.6) 80%),
              linear-gradient(180deg, rgba(3, 10, 22, 0.35) 0%, transparent 40%, #030a16 100%);
}

#petals-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-tag {
  font-size: 0.74rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.2vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-headline .l2 {
  color: var(--cyan-bright);
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(280px, 90%);
  margin: 16px 0 20px;
}

.hero-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.65), transparent);
}

.hero-divider i {
  color: var(--cyan-bright);
  font-style: normal;
  font-size: 0.9rem;
}

.hero-tagline {
  font-family: var(--thin);
  font-style: italic;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  color: var(--cyan-pale);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

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

.btn-wine {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: linear-gradient(135deg, #0284c7, #00b4d8);
  color: #ffffff !important;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(0, 229, 255, 0.5);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-wine:hover {
  background: linear-gradient(135deg, #00b4d8, #00e5ff) !important;
  color: #030e1c !important;
  font-weight: 700 !important;
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.75);
  transform: translateY(-2px);
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bottle-frame {
  position: relative;
  width: 100%;
  max-width: min(580px, 92vw);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-slides-wrap {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  z-index: 1;
}

.hero-slide {
  grid-area: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(65px) scale(0.94);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  user-select: none;
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateY(-65px) scale(0.94);
  z-index: 1;
}

.hero-bottle-img {
  width: 100%;
  height: auto;
  max-height: clamp(520px, 66vh, 680px);
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 36px rgba(0, 180, 216, 0.45));
  transition: filter 0.5s var(--ease);
  pointer-events: none;
}

.hero-bottle-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.2) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: auraBreathing 5s ease-in-out infinite alternate;
}

@keyframes auraBreathing {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 1; }
}

/* ═══ TICKER ═══ */
.ticker {
  background: rgba(7, 21, 43, 0.85);
  border-top: 1px solid rgba(0, 229, 255, 0.18);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  animation: tickerSlide 25s linear infinite;
}

.ticker-track span {
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, 0.85);
}

.ticker-track em {
  color: var(--cyan-bright);
  font-style: normal;
  font-size: 0.85rem;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ═══ DISCOVERY SET (VIP LAUNCH PRIVILEGE) ═══ */
.discovery-section {
  position: relative;
  padding: clamp(70px, 9vw, 110px) clamp(20px, 4vw, 64px);
  background: radial-gradient(circle at 50% 20%, rgba(0, 180, 216, 0.12) 0%, transparent 65%), var(--bg-deep);
  overflow: hidden;
}

.discovery-glow-bg {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 95vw);
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0, 229, 255, 0.1) 0%, rgba(2, 132, 199, 0.05) 50%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.discovery-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.discovery-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(36px, 5vw, 54px);
}

.privilege-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan-bright);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

.privilege-pill .sparkle {
  color: #38bdf8;
  animation: auraBreathing 3s ease-in-out infinite alternate;
}

.discovery-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.2;
  margin: 16px 0 12px;
}

.discovery-title em {
  font-style: italic;
  color: var(--cyan-bright);
  text-shadow: 0 0 24px rgba(0, 229, 255, 0.4);
}

.discovery-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.discovery-subtitle strong {
  color: var(--cyan-bright);
}

/* Dual Column Card */
.discovery-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(30px, 4vw, 54px);
  align-items: center;
  background: linear-gradient(145deg, rgba(7, 21, 43, 0.85), rgba(11, 31, 60, 0.65));
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Left Visual Column */
.coffret-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.coffret-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coffret-aura {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: auraBreathing 5s ease-in-out infinite alternate;
}

.coffret-img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 28px rgba(0, 180, 216, 0.4));
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease);
}

.coffret-stage:hover .coffret-img {
  transform: scale(1.04) translateY(-4px);
}

.coffret-badge-float {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(3, 10, 22, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.4);
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.c-badge-num {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--cyan-bright);
  letter-spacing: 0.08em;
}

.c-badge-txt {
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cyan-ice);
}

/* Scent Chips Quad (2x2) */
.coffret-scent-quad {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
}

.c-scent-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(7, 21, 43, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.18);
  padding: 10px 14px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.c-scent-chip:hover {
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(11, 31, 60, 0.8);
  transform: translateY(-2px);
}

.c-scent-chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px currentColor;
}

.dot.flirt { background: #c084fc; color: #c084fc; }
.dot.wanted { background: #f87171; color: #f87171; }
.dot.tempt { background: #38bdf8; color: #38bdf8; }
.dot.num19 { background: #fbbf24; color: #fbbf24; }

.chip-info {
  display: flex;
  flex-direction: column;
}

.chip-info strong {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.2;
}

.chip-info small {
  font-size: 0.68rem;
  color: var(--text-dim);
}

/* Right Details Column */
.coffret-details-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offer-seal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #38bdf8;
  font-weight: 600;
}

.offer-seal .seal-icon {
  color: var(--cyan-bright);
}

.offer-headline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

/* Voucher Highlight Box */
.voucher-perk-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(0, 229, 255, 0.06));
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}

.voucher-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.18);
  border: 1px solid rgba(0, 229, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-bright);
  flex-shrink: 0;
}

.voucher-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--cyan-bright);
  margin-bottom: 4px;
}

.voucher-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Feature List */
.offer-perks-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.5;
}

.perk-check {
  color: var(--cyan-bright);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.offer-perks-list strong {
  color: #ffffff;
}

/* Price & CTA Action Box */
.coffret-action-box {
  background: rgba(3, 10, 22, 0.5);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 14px;
  padding: 20px;
  margin-top: 6px;
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.p-orig {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.p-current {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.p-save {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #4ade80;
  padding: 3px 10px;
  border-radius: 20px;
}

.coffret-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-claim-coffret {
  flex: 1;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-wa-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-wa-reserve:hover {
  background: rgba(37, 211, 102, 0.25);
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

.coffret-trust-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 229, 255, 0.1);
  font-size: 0.72rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}

/* Responsive Rules */
@media (max-width: 900px) {
  .discovery-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 24px 18px;
  }

  .coffret-visual-col {
    order: 1;
  }

  .coffret-details-col {
    order: 2;
  }

  .coffret-scent-quad {
    grid-template-columns: repeat(2, 1fr);
  }

  .coffret-cta-group {
    flex-direction: column;
  }

  .btn-claim-coffret, .btn-wa-reserve {
    width: 100%;
  }

  .coffret-trust-line {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* ═══ STORY SECTION ═══ */
#story {
  padding: clamp(80px, 11vw, 130px) clamp(20px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
}

.story-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: stretch;
}

.story-visual {
  display: flex;
  justify-content: center;
}

.story-monolith {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.22);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 180, 216, 0.15);
  background: #020813;
  display: flex;
  flex-direction: column;
}

.story-img-frame {
  position: relative;
  flex: 1;
  min-height: 400px;
  overflow: hidden;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 8, 19, 0.95) 100%);
}

.story-img-badge {
  position: absolute;
  bottom: 18px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.badge-tag {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.badge-sub {
  font-size: 0.74rem;
  color: rgba(240, 247, 255, 0.8);
}

.monolith-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(7, 21, 43, 0.95);
  border-top: 1px solid rgba(0, 229, 255, 0.16);
  padding: 16px 12px;
}

.m-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.m-stat strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--cyan-bright);
  line-height: 1.1;
}

.m-stat span {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 247, 255, 0.7);
}

.m-stat-sep {
  width: 1px;
  height: 28px;
  background: rgba(0, 229, 255, 0.18);
}

.story-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.story-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 18px;
}

.story-text h2 em {
  color: var(--cyan-bright);
}

.story-lead {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 14px;
}

.story-text p {
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.manifesto-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 229, 255, 0.12);
  transition: padding-left 0.3s var(--ease);
}

.manifesto-row:hover {
  padding-left: 8px;
  border-color: rgba(0, 229, 255, 0.35);
}

.m-num {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan-bright);
  line-height: 1;
}

.m-body h3 {
  font-size: 1.02rem;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 4px;
}

.m-body p {
  font-size: 0.86rem;
  color: rgba(240, 247, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ═══ COLLECTION SECTION (CONVEYOR SHOWCASE) ═══ */
#collection {
  padding: clamp(80px, 11vw, 130px) clamp(20px, 5vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.collection-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.collection-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.collection-header h2 em {
  color: var(--cyan-bright);
}

.collection-header p {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  color: rgba(240, 247, 255, 0.8);
  max-width: 540px;
  margin: 0 auto;
}

.scent-showcase-stage {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(36px, 5vw, 54px);
}

.scent-hero-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.scent-hero-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: clamp(450px, 52vh, 600px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95), 0 0 45px rgba(0, 180, 216, 0.22);
  border: 1px solid rgba(0, 229, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030a16;
}

.scent-hero-aura {
  position: absolute;
  inset: -15%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.22) 0%, rgba(56, 189, 248, 0.06) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: auraBreathing 5s ease-in-out infinite alternate;
}

.scent-display-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.35s ease;
  will-change: transform, opacity;
}

.scent-hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}

.scent-watermark {
  position: absolute;
  top: 20px;
  left: 24px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  font-weight: 900;
  color: rgba(0, 229, 255, 0.14);
  line-height: 1;
  pointer-events: none;
  z-index: 3;
}

.scent-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.scent-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.scent-tag {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
}

.scent-conc {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  padding: 4px 12px;
  border-radius: 20px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--cyan-pale);
  font-weight: 600;
}

.scent-name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
}

.scent-name em {
  color: var(--cyan-bright);
  font-style: italic;
}

.scent-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: rgba(240, 247, 255, 0.88);
  line-height: 1.85;
  margin-bottom: 24px;
}

.scent-notes-pyramid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  background: rgba(7, 21, 43, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 6px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.scent-note-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.s-note-lvl {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 700;
  width: 52px;
  flex-shrink: 0;
}

.s-note-txt {
  font-family: var(--body);
  font-size: 0.85rem;
  color: rgba(240, 247, 255, 0.92);
  line-height: 1.5;
}

.scent-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 229, 255, 0.12);
}

.scent-badges-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scent-badge-item {
  display: flex;
  flex-direction: column;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 4px;
}

.scent-badge-item small {
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  margin-bottom: 2px;
}

.scent-badge-item strong {
  font-size: 0.84rem;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}

.scent-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 30px;
  color: var(--cyan-bright);
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.15);
}

/* ═══ CONVEYOR BELT THUMBNAIL TRACK ═══ */
.conveyor-belt-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2vw, 24px);
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.conveyor-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(7, 21, 43, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  z-index: 20;
}

.conveyor-nav-btn:hover {
  background: var(--cyan-bright);
  color: var(--bg-deep);
  border-color: var(--cyan-bright);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
}

.conveyor-nav-btn svg {
  width: 20px;
  height: 20px;
}

.conveyor-viewport {
  position: relative;
  width: 100%;
  overflow: visible;
  height: clamp(170px, 20vw, 210px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.conveyor-stage-3d {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.conveyor-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(90px, 11vw, 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transform-origin: center center;
  transition: all 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity, filter;
  user-select: none;
}

/* Center (Active Selected Scent) */
.conveyor-card[data-offset="0"] {
  transform: translate(-50%, -50%) scale(1.22);
  z-index: 10;
  opacity: 1;
  filter: brightness(1);
}

.conveyor-card[data-offset="0"] .conveyor-img-box {
  border-color: var(--cyan-bright);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.95), 0 0 28px rgba(0, 229, 255, 0.55);
}

.conveyor-card[data-offset="0"] .conveyor-dark-veil {
  opacity: 0;
}

.conveyor-card[data-offset="0"] .conveyor-name {
  color: var(--cyan-bright);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
  transform: translateY(2px);
}

/* Immediate Left */
.conveyor-card[data-offset="-1"] {
  transform: translate(calc(-50% - clamp(95px, 13vw, 145px)), -50%) scale(0.88);
  z-index: 8;
  opacity: 0.55;
  filter: brightness(0.65);
}

/* Immediate Right */
.conveyor-card[data-offset="1"] {
  transform: translate(calc(-50% + clamp(95px, 13vw, 145px)), -50%) scale(0.88);
  z-index: 8;
  opacity: 0.55;
  filter: brightness(0.65);
}

/* Far / Back */
.conveyor-card[data-offset="2"], .conveyor-card[data-offset="-2"] {
  transform: translate(calc(-50% + clamp(180px, 25vw, 270px)), -50%) scale(0.7);
  z-index: 6;
  opacity: 0.28;
  filter: brightness(0.4);
}

.conveyor-img-box {
  position: relative;
  width: 100%;
  height: clamp(96px, 12.5vw, 135px);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  transition: all 0.55s ease;
}

.conveyor-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conveyor-dark-veil {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.68);
  transition: opacity 0.55s ease;
}

.conveyor-name {
  font-size: clamp(0.66rem, 0.85vw, 0.74rem);
  letter-spacing: 0.08em;
  color: rgba(240, 247, 255, 0.6);
  text-align: center;
  margin-top: 8px;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.55s ease;
}

/* Slide Transition Animations */
.slide-in-right {
  animation: slideInFromRight 0.38s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

.slide-in-left {
  animation: slideInFromLeft 0.38s cubic-bezier(0.2, 0.9, 0.3, 1) forwards;
}

@keyframes slideInFromRight {
  0% { opacity: 0; transform: translateX(25px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromLeft {
  0% { opacity: 0; transform: translateX(-25px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ═══ ESSENCE SECTION (THE STANDARD) ═══ */
#essence {
  position: relative;
  padding: clamp(80px, 11vw, 120px) clamp(20px, 5vw, 80px);
  overflow: hidden;
  background: #020813;
}

.essence-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.essence-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: brightness(1.2) contrast(1.1);
}

.essence-bg-over {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(14, 42, 82, 0.5) 0%, #020813 80%);
}

.essence-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.essence-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.essence-title em {
  color: var(--cyan-bright);
}

.essence-sub {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  color: rgba(240, 247, 255, 0.85);
  max-width: 640px;
  margin: 0 auto clamp(36px, 5vw, 54px);
  line-height: 1.8;
}

.essence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}

.ess-item {
  background: rgba(7, 21, 43, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 6px;
  padding: 32px 22px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s var(--ease);
}

.ess-item:hover {
  transform: translateY(-5px);
  border-color: var(--cyan-bright);
  background: rgba(11, 31, 60, 0.85);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 229, 255, 0.25);
}

.ess-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cyan-bright);
  margin-bottom: 12px;
}

.ess-item h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.ess-item p {
  font-size: 0.84rem;
  color: rgba(240, 247, 255, 0.75);
  line-height: 1.6;
}

/* ═══ FOOTER ═══ */
#footer.ecom-footer {
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 229, 255, 0.05) 0%, #030814 65%);
  border-top: 1px solid rgba(0, 229, 255, 0.18);
  position: relative;
  overflow: hidden;
}

/* 1. Value / Trust Pillars Strip */
.footer-trust-strip {
  background: rgba(3, 9, 20, 0.95);
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  padding: 24px clamp(16px, 3vw, 44px);
}

.trust-strip-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
}

.trust-pillar-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--ease);
}

.trust-pillar-item:hover {
  background: rgba(0, 229, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-2px);
}

.t-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.trust-pillar-item:hover .t-pillar-icon {
  background: var(--cyan-bright);
  color: #020814;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
}

.t-pillar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-pillar-text strong {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.t-pillar-text span {
  font-size: 0.73rem;
  color: rgba(240, 247, 255, 0.65);
  line-height: 1.35;
}

/* 2. Main Footer Layout */
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 44px clamp(16px, 3vw, 44px) 24px;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.95fr 0.95fr 1.2fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.1);
}

.footer-brand-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(0, 180, 216, 0.45));
}

.footer-brand-desc {
  font-size: 0.8rem;
  color: rgba(240, 247, 255, 0.68);
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 320px;
}

/* Social Row */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(7, 21, 43, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.28);
  color: var(--cyan-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  text-decoration: none;
}

.footer-soc-btn svg {
  width: 15px;
  height: 15px;
}

.footer-soc-btn:hover {
  background: var(--cyan-bright);
  color: var(--bg-deep);
  border-color: var(--cyan-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.55);
}

/* Navigation Columns */
.f-col-title {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1;
}

.f-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.f-nav-links a {
  font-size: 0.81rem;
  color: rgba(240, 247, 255, 0.72);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.f-nav-links a:hover {
  color: var(--cyan-bright);
  padding-left: 5px;
}

/* Maison Concierge Column (Simple, matching other columns) */
.f-concierge-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-contact-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f-c-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan-glow);
  font-weight: 600;
}

.f-c-link, .f-c-text {
  font-size: 0.81rem;
  color: rgba(240, 247, 255, 0.8);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.35;
  display: inline-block;
  width: fit-content;
}

a.f-c-link:hover {
  color: var(--cyan-bright);
  padding-left: 3px;
}

.f-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #25d366;
  font-size: 0.81rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  transition: all 0.2s ease;
  width: fit-content;
}

.f-whatsapp-link:hover {
  color: #4ade80;
  padding-left: 4px;
}



/* 4. Footer Bottom Bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  flex-wrap: wrap;
}

.copyright-txt {
  font-size: 0.74rem;
  color: rgba(240, 247, 255, 0.65);
  letter-spacing: 0.02em;
}

.developer-credit {
  font-size: 0.74rem;
  color: rgba(240, 247, 255, 0.75);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.02em;
}

.heart-pulse {
  color: #00e5ff;
  display: inline-block;
  animation: heartBeat 2s ease-in-out infinite;
  font-size: 0.9rem;
  line-height: 1;
}

@keyframes heartBeat {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(0, 229, 255, 0.8));
  }
}

.credit-brand {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.45);
  padding-bottom: 1px;
  transition: all 0.3s var(--ease);
}

.credit-brand:hover {
  color: var(--cyan-bright);
  border-color: var(--cyan-bright);
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.65);
}

/* ═══ RESPONSIVE BREAKPOINTS (ALL SCREENS) ═══ */

/* Large Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  #hero {
    padding: 110px 0 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding: 0 32px;
  }

  .hero-left {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .hero-divider {
    margin: 16px auto 20px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-bottle-frame {
    max-width: min(480px, 80vw);
    margin: 0 auto;
  }

  /* Story Tablet */
  #story {
    padding: 80px 24px;
  }

  .story-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .story-monolith {
    max-width: 460px;
    margin: 0 auto;
  }

  .story-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .manifesto-list {
    text-align: left;
    width: 100%;
    max-width: 620px;
    margin: 16px auto 0;
  }

  /* Collection Tablet */
  .scent-showcase-stage {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .scent-watermark {
    display: none !important;
  }

  .scent-hero-frame {
    max-width: 380px;
    height: 440px;
    margin: 0 auto;
  }

  .scent-details-col {
    text-align: left;
  }

  /* Conveyor Belt Tablet */
  .conveyor-belt-wrap {
    max-width: 800px;
  }

  .conveyor-card[data-offset="-1"] {
    transform: translate(calc(-50% - 120px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="1"] {
    transform: translate(calc(-50% + 120px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="-2"], .conveyor-card[data-offset="2"] {
    transform: translate(calc(-50% + 220px), -50%) scale(0.7);
  }

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

/* Medium Tablets & Mobile Landscape (<= 991px) */
@media (max-width: 991px) {
  #nav {
    padding: 12px 20px;
  }

  #nav.scrolled {
    padding: 10px 20px;
  }

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

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

  .burger {
    display: flex !important;
  }

  .nav-brand img {
    height: clamp(50px, 7vw, 64px);
  }

  #nav.scrolled .nav-brand img {
    height: 46px;
  }
}

/* Mobile Devices (<= 768px) */
@media (max-width: 768px) {
  #nav {
    padding: 10px 16px;
  }

  .nav-menu, .nav-shop {
    display: none !important;
  }

  .burger {
    display: flex !important;
  }

  .nav-brand img {
    height: 48px;
  }

  #hero {
    padding: 85px 0 40px;
    min-height: auto;
  }

  .hero-layout {
    padding: 0 16px;
    gap: 24px;
    text-align: center;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-tag {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
    margin-bottom: 10px;
  }

  .hero-headline {
    margin-bottom: 12px;
  }

  .hero-headline .l1, .hero-headline .l3 {
    font-size: clamp(2.1rem, 8.8vw, 3rem);
    line-height: 1.1;
  }

  .hero-headline .l2 {
    font-size: clamp(2.5rem, 10.5vw, 3.6rem);
    line-height: 1.1;
  }

  .hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 240px;
    margin: 12px auto 14px;
  }

  .hero-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.65), transparent);
  }

  .hero-tagline {
    font-size: clamp(1.05rem, 3.8vw, 1.25rem);
    margin-bottom: 8px;
  }

  .hero-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 380px;
    margin: 0 auto 20px;
  }

  .hero-btns {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-btns a {
    width: 100%;
    max-width: 300px;
    padding: 13px 20px;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .hero-bottle-frame {
    width: 100%;
    max-width: min(320px, 84vw);
    margin: 10px auto 0;
  }

  .hero-bottle-img {
    max-height: 360px;
  }

  /* Story Mobile */
  #story {
    padding: 65px 16px;
  }

  .story-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .story-monolith {
    max-width: 100%;
    min-height: auto;
  }

  .story-img-frame {
    min-height: 300px;
  }

  .monolith-stats {
    width: 100%;
    margin: 0;
  }

  .m-stat strong {
    font-size: 1.15rem;
  }

  .m-stat span {
    font-size: 0.54rem;
    letter-spacing: 0.12em;
  }

  .story-text {
    align-items: center;
  }

  .manifesto-list {
    text-align: left;
    width: 100%;
    margin-top: 10px;
  }

  .manifesto-row {
    padding: 14px 0;
    gap: 14px;
  }

  .manifesto-row:hover {
    padding-left: 4px;
  }

  .m-num {
    font-size: 1.1rem;
  }

  /* Collection Mobile */
  #collection {
    padding: 55px 16px 36px;
    overflow: hidden;
  }

  .collection-header {
    margin-bottom: 20px;
  }

  .collection-header h2 {
    font-size: clamp(2.1rem, 8vw, 2.7rem);
    margin-bottom: 8px;
  }

  .collection-header p {
    font-size: 0.86rem;
    max-width: 320px;
  }

  .scent-showcase-stage {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 22px;
  }

  .scent-watermark {
    display: none !important;
  }

  .scent-hero-frame {
    width: 100%;
    max-width: min(320px, 86vw);
    height: clamp(340px, 48vh, 410px);
    margin: 0 auto;
    border-radius: 8px;
  }

  .scent-display-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .scent-details-col {
    width: 100%;
    padding: 0;
  }

  .scent-meta-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }

  .scent-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .scent-conc {
    font-size: 0.58rem;
    padding: 3px 8px;
  }

  .scent-name {
    font-size: clamp(1.85rem, 6.8vw, 2.3rem);
    margin-bottom: 10px;
    text-align: left;
  }

  .scent-desc {
    font-size: 0.86rem;
    line-height: 1.62;
    margin-bottom: 16px;
    text-align: left;
  }

  .scent-notes-pyramid {
    padding: 12px 14px;
    gap: 8px;
    margin-bottom: 18px;
  }

  .scent-note-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px;
  }

  .s-note-lvl {
    font-size: 0.58rem;
    width: 44px;
    flex-shrink: 0;
  }

  .s-note-txt {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .scent-action-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 12px;
  }

  .scent-badges-wrap {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .scent-badge-item {
    flex: 1;
    padding: 8px 10px;
    text-align: center;
  }

  .scent-badge-item small {
    font-size: 0.52rem;
  }

  .scent-badge-item strong {
    font-size: 0.78rem;
  }

  .scent-status-pill {
    width: 100%;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.72rem;
  }

  /* Conveyor Belt Mobile */
  .conveyor-belt-wrap {
    max-width: 100%;
    gap: 6px;
    margin-top: 10px;
  }

  .conveyor-viewport {
    height: 148px;
    overflow: hidden;
  }

  .conveyor-card {
    width: 76px;
  }

  .conveyor-img-box {
    height: 86px;
  }

  .conveyor-name {
    font-size: 0.62rem;
    margin-top: 6px;
  }

  .conveyor-nav-btn {
    width: 36px;
    height: 36px;
  }

  .conveyor-nav-btn svg {
    width: 16px;
    height: 16px;
  }

  .conveyor-card[data-offset="0"] {
    transform: translate(-50%, -50%) scale(1.18);
  }

  .conveyor-card[data-offset="-1"] {
    transform: translate(calc(-50% - 78px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="1"] {
    transform: translate(calc(-50% + 78px), -50%) scale(0.85);
  }

  .conveyor-card[data-offset="2"], .conveyor-card[data-offset="-2"] {
    transform: translate(calc(-50% + 146px), -50%) scale(0.68);
  }

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

  .ess-item {
    padding: 24px 16px;
  }

  /* Luxury E-Commerce Footer Responsive */
  .footer-trust-strip {
    padding: 20px 16px;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .trust-pillar-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .t-pillar-icon {
    width: 36px;
    height: 36px;
  }

  .t-pillar-icon svg {
    width: 18px;
    height: 18px;
  }

  .t-pillar-text strong {
    font-size: 0.78rem;
  }

  .t-pillar-text span {
    font-size: 0.68rem;
  }

  .footer-inner {
    padding: 32px 16px 20px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 24px;
  }

  .footer-newsletter-col {
    grid-column: span 2;
    text-align: left;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-concierge-col {
    grid-column: span 2;
  }

  .footer-bottom-bar {
    padding-top: 14px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    align-items: center;
    justify-content: center;
  }

  .copyright-txt, .developer-credit {
    font-size: 0.7rem;
  }
}

/* Small Screen Phones (<= 480px) */
@media (max-width: 480px) {
  #nav {
    padding: 8px 14px;
  }

  .nav-brand img {
    height: 42px;
  }

  .burger {
    width: 38px;
    height: 38px;
    padding: 6px;
  }

  #hero {
    padding: 75px 0 30px;
  }

  .hero-layout {
    padding: 0 14px;
    gap: 20px;
  }

  .hero-tag {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .hero-headline .l1, .hero-headline .l3 {
    font-size: clamp(1.85rem, 8.2vw, 2.3rem);
  }

  .hero-headline .l2 {
    font-size: clamp(2.1rem, 9.5vw, 2.8rem);
  }

  .hero-desc {
    font-size: 0.84rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto 18px;
  }

  .hero-btns a {
    max-width: 280px;
    padding: 12px 16px;
    font-size: 0.72rem;
  }

  .hero-bottle-frame {
    max-width: min(280px, 86vw);
  }

  .hero-bottle-img {
    max-height: 300px;
  }

  #story {
    padding: 50px 14px;
  }

  .story-img-frame {
    min-height: 260px;
  }

  .m-stat {
    padding: 10px 4px;
  }

  .m-stat strong {
    font-size: 1rem;
  }

  .m-stat span {
    font-size: 0.5rem;
  }

  .manifesto-row {
    padding: 12px 0;
    gap: 12px;
  }

  .m-body h3 {
    font-size: 0.92rem;
  }

  .m-body p {
    font-size: 0.8rem;
  }

  /* Collection Phone (<= 480px) */
  #collection {
    padding: 45px 12px 25px;
  }

  .scent-hero-frame {
    max-width: min(280px, 88vw);
    height: clamp(300px, 45vh, 350px);
  }

  .scent-name {
    font-size: 1.65rem;
  }

  .scent-tag {
    font-size: 0.56rem;
  }

  .scent-conc {
    font-size: 0.54rem;
  }

  .scent-desc {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .scent-notes-pyramid {
    padding: 10px 12px;
  }

  .s-note-lvl {
    width: 38px;
    font-size: 0.54rem;
  }

  .s-note-txt {
    font-size: 0.74rem;
  }

  /* Conveyor Phone */
  .conveyor-viewport {
    height: 135px;
  }

  .conveyor-card {
    width: 66px;
  }

  .conveyor-img-box {
    height: 74px;
  }

  .conveyor-name {
    font-size: 0.56rem;
  }

  .conveyor-card[data-offset="0"] {
    transform: translate(-50%, -50%) scale(1.15);
  }

  .conveyor-card[data-offset="-1"] {
    transform: translate(calc(-50% - 68px), -50%) scale(0.82);
  }

  .conveyor-card[data-offset="1"] {
    transform: translate(calc(-50% + 68px), -50%) scale(0.82);
  }

  .conveyor-card[data-offset="2"], .conveyor-card[data-offset="-2"] {
    transform: translate(calc(-50% + 126px), -50%) scale(0.64);
  }

  .conveyor-nav-btn {
    width: 32px;
    height: 32px;
  }

  .conveyor-nav-btn svg {
    width: 14px;
    height: 14px;
  }

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

  .ess-item {
    padding: 22px 14px;
  }

  .f-contact-grid {
    gap: 8px;
  }

  /* Footer — responsive 2x2 trust pillars on phones */
  .footer-trust-strip {
    padding: 16px 12px;
  }

  .trust-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .trust-pillar-item {
    padding: 10px 8px;
    gap: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 0;
  }

  .t-pillar-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .t-pillar-icon svg {
    width: 16px;
    height: 16px;
  }

  .t-pillar-text {
    min-width: 0;
  }

  .t-pillar-text strong {
    font-size: 0.72rem;
    line-height: 1.25;
    display: block;
  }

  .t-pillar-text span {
    font-size: 0.62rem;
    line-height: 1.25;
    display: block;
    margin-top: 1px;
    color: rgba(240, 247, 255, 0.6);
  }

  .footer-inner {
    padding: 28px 14px 16px;
  }

  .footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  .footer-newsletter-col,
  .footer-concierge-col {
    grid-column: span 1 !important;
  }

  .footer-col {
    border-bottom: 1px solid rgba(0, 229, 255, 0.07);
    padding-bottom: 18px;
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .f-col-title {
    font-size: 0.65rem;
  }

  .f-nav-links a {
    font-size: 0.82rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding-top: 12px;
  }

  .copyright-txt, .developer-credit {
    font-size: 0.67rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   1. CHOOSE YOUR TASTE (OLFACTORY SCENT FINDER)
   ══════════════════════════════════════════════════════════════ */
.taste-section {
  position: relative;
  padding: 95px 0 100px;
  background: radial-gradient(circle at 50% 15%, rgba(0, 229, 255, 0.05) 0%, transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.04) 0%, transparent 50%),
              #030a16;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.taste-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.taste-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
}

.taste-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.15;
  margin: 10px 0 14px;
}

.taste-title em {
  font-style: italic;
  color: var(--cyan);
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.45);
}

.taste-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Filter Pills */
.taste-filter-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.taste-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 30px;
  background: rgba(6, 22, 44, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.16);
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(8px);
}

.taste-pill .pill-spark {
  color: var(--cyan);
  font-size: 0.72rem;
  opacity: 0.7;
  transition: transform 0.25s ease;
}

.taste-pill:hover {
  border-color: rgba(0, 229, 255, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.15);
}

.taste-pill.active {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.22) 0%, rgba(14, 116, 144, 0.3) 100%);
  border-color: var(--cyan);
  color: #ffffff;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.35), inset 0 0 12px rgba(0, 229, 255, 0.15);
}

.taste-pill.active .pill-spark {
  transform: scale(1.3) rotate(45deg);
  opacity: 1;
}

/* Result Card */
.taste-result-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 36px;
  background: rgba(4, 16, 32, 0.85);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.65), 0 0 40px rgba(0, 229, 255, 0.08);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.taste-result-card.fade-refresh {
  opacity: 0.4;
  transform: scale(0.99);
}

.taste-card-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.12) 0%, rgba(3, 10, 22, 0.6) 70%);
  border-radius: 16px;
  border: 1px solid rgba(0, 229, 255, 0.1);
  min-height: 380px;
  padding: 24px;
}

.taste-match-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 14px;
  border-radius: 12px;
  background: rgba(3, 10, 22, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.match-score {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1;
}

.match-label {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

.taste-img-wrap {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taste-img {
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.taste-result-card:hover .taste-img {
  transform: scale(1.04) translateY(-4px);
}

.taste-card-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.taste-meta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 8px;
}

.taste-perfume-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.taste-perfume-name em {
  font-style: italic;
  color: var(--cyan);
}

.taste-perfume-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.taste-notes-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.taste-notes-tags .t-tag {
  font-size: 0.76rem;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.taste-specs-row {
  display: flex;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 229, 255, 0.1);
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.t-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-spec-lbl {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.t-spec-val {
  font-size: 0.94rem;
  font-weight: 600;
  color: #ffffff;
}

.t-spec-val.price {
  color: var(--cyan);
}

.taste-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-taste-add {
  flex: 1;
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════════════
   2. CURATIONS (FOR HIM / FOR HER / UNISEX)
   ══════════════════════════════════════════════════════════════ */
.curations-section {
  position: relative;
  padding: 50px 0 70px;
  background: #020712;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.curations-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(16px, 3.2vw, 48px);
}

.curations-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
  padding: 0 16px;
}

.curations-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  line-height: 1.18;
  margin: 10px 0 0;
}

.curations-title em {
  font-style: italic;
  color: var(--cyan);
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.45);
}

.curations-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
}

.curations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.2vw, 32px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.curation-card {
  position: relative;
  height: clamp(520px, 62vh, 680px);
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #030814;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}

.curation-card:hover,
.curation-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 229, 255, 0.16);
}

.curation-card.pour-elle:hover,
.curation-card.pour-elle:focus-visible {
  border-color: rgba(192, 132, 252, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85), 0 0 30px rgba(192, 132, 252, 0.16);
}

.curation-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.curation-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.curation-card:hover .curation-bg-img {
  transform: scale(1.06);
}

.curation-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 15, 0.05) 0%, rgba(2, 6, 15, 0.25) 45%, rgba(2, 6, 15, 0.82) 75%, #020713 100%);
}

.him-gradient {
  background: linear-gradient(180deg, rgba(3, 8, 20, 0.05) 0%, rgba(3, 8, 20, 0.25) 45%, rgba(2, 6, 16, 0.85) 75%, #020713 100%);
}

.her-gradient {
  background: linear-gradient(180deg, rgba(3, 8, 20, 0.12) 0%, rgba(3, 8, 20, 0.25) 45%, rgba(2, 6, 16, 0.85) 75%, #020713 100%);
}

.curation-content {
  position: relative;
  z-index: 2;
  padding: 26px 28px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.curation-text-group {
  flex: 1;
  min-width: 0;
}

.curation-tag {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 4px;
}

.curation-card.pour-lui .curation-tag {
  color: #38bdf8;
  border-bottom-color: rgba(56, 189, 248, 0.35);
}

.curation-card.pour-elle .curation-tag {
  color: #c084fc;
  border-bottom-color: rgba(192, 132, 252, 0.35);
}

.curation-name {
  font-family: var(--font-sans, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.curation-subtext {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0;
}

.curation-circle-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(8, 18, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.curation-circle-btn * {
  pointer-events: none;
}

.curation-card:hover .curation-circle-btn {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #020713;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
  transform: scale(1.1);
}

.curation-card.pour-elle:hover .curation-circle-btn {
  background: #c084fc;
  border-color: #c084fc;
  color: #020713;
  box-shadow: 0 0 20px rgba(192, 132, 252, 0.55);
}

@media (max-width: 880px) {
  .curations-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .curation-card {
    height: 440px;
  }
  .curation-content {
    padding: 22px 20px 22px;
  }
}

/* ══════════════════════════════════════════════════════════════
   3. INSTAGRAM REELS VIDEO GALLERY (FULL-WIDTH, NO CARDS)
   ══════════════════════════════════════════════════════════════ */
.reels-section {
  position: relative;
  padding: 70px 0 85px;
  background: radial-gradient(circle at 50% 15%, rgba(0, 229, 255, 0.05) 0%, transparent 65%),
              #020713;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
  width: 100%;
  overflow: hidden;
}

.reels-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0 clamp(16px, 3vw, 44px);
  margin: 0 auto;
  box-sizing: border-box;
}

.reels-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.reels-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  margin: 8px 0 0;
}

.reels-title em {
  font-style: italic;
  color: var(--cyan);
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.45);
}

.reels-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  width: 100%;
}

.ig-reel-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.ig-reel-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #030a16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  outline: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.ig-reel-video-box:hover,
.ig-reel-video-box:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85), 0 0 25px rgba(0, 229, 255, 0.22);
}

.ig-reel-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
}

.ig-reel-video-box:hover .ig-reel-poster {
  transform: scale(1.05);
}

.ig-reel-center-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(2, 7, 19, 0.68);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  padding-left: 3px;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.ig-reel-center-play svg {
  transition: fill 0.3s ease;
}

.ig-reel-video-box:hover .ig-reel-center-play {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0, 229, 255, 0.7);
}

.ig-reel-video-box:hover .ig-reel-center-play svg {
  fill: #020713;
}

.ig-reel-scrubber {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(to top, rgba(2, 7, 19, 0.92) 0%, rgba(2, 7, 19, 0.45) 60%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.ig-scrub-track {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}

.ig-scrub-fill {
  height: 100%;
  background: var(--cyan);
  border-radius: 2px;
}

.ig-scrub-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f1f5f9;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.ig-scrub-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ig-scrub-time {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
}



@media (max-width: 1100px) {
  .reels-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reels-track::-webkit-scrollbar {
    display: none;
  }
  .ig-reel-item {
    flex: 0 0 clamp(230px, 60vw, 290px);
    scroll-snap-align: center;
  }
}

/* Video Reel Modal */
.vg-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.vg-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.vg-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 16, 0.88);
  backdrop-filter: blur(12px);
}

.vg-modal-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 780px;
  background: #030a16;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 229, 255, 0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.vg-modal.open .vg-modal-container {
  transform: scale(1);
}

.vg-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(2, 7, 19, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
}

.vg-modal-close:hover {
  background: var(--cyan);
  color: #020713;
  border-color: var(--cyan);
}

.vg-video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vg-video-elem {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vg-video-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(2, 6, 16, 0.92));
  pointer-events: none;
}

.vg-video-meta h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.vg-video-meta p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
}

.p-card {
  background: rgba(5, 18, 36, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.p-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75), 0 0 25px rgba(0, 229, 255, 0.14);
}

.p-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.p-badge.best {
  background: rgba(0, 229, 255, 0.2);
  border: 1px solid var(--cyan);
  color: var(--cyan);
}

.p-badge.royal {
  background: rgba(234, 179, 8, 0.2);
  border: 1px solid #eab308;
  color: #fde047;
}

.p-badge.new {
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid #c084fc;
  color: #e9d5ff;
}

.p-badge.combo {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #f87171;
  color: #fca5a5;
}

.p-badge.discovery {
  background: rgba(34, 197, 94, 0.2);
  border: 1px solid #4ade80;
  color: #86efac;
}

.p-img-box {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
  border-radius: 12px;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
}

.p-img {
  max-height: 220px;
  max-width: 90%;
  object-fit: contain;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.6));
}

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

.p-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.p-rating {
  color: #f59e0b;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

.p-rating span {
  color: var(--text-dim);
  font-size: 0.74rem;
  margin-left: 4px;
}

.p-family {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
}

.p-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.15;
}

.p-size {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.p-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 14px;
}

.p-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.p-mrp {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.p-save-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #4ade80;
}

.p-add-cart-btn {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.p-add-cart-btn:hover {
  background: var(--cyan);
  color: #030a16;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
}

.p-add-cart-btn.btn-combo {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25) 0%, rgba(185, 28, 28, 0.35) 100%);
  border-color: rgba(239, 68, 68, 0.5);
}

.p-add-cart-btn.btn-combo:hover {
  background: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 22px rgba(239, 68, 68, 0.6);
}

.p-add-cart-btn.btn-coffret {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(21, 128, 61, 0.3) 100%);
  border-color: rgba(34, 197, 94, 0.45);
}

.p-add-cart-btn.btn-coffret:hover {
  background: #22c55e;
  color: #030a16;
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.6);
}

/* ══════════════════════════════════════════════════════════════
   4. OFFERS CARDS (TICKET PRIVILEGES & COUPONS)
   ══════════════════════════════════════════════════════════════ */
.offers-section {
  position: relative;
  padding: 95px 0 100px;
  background: #020712;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.offers-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.offers-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.offers-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  margin: 10px 0 14px;
}

.offers-title em {
  font-style: italic;
  color: var(--cyan);
}

.offers-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.offer-card {
  background: rgba(5, 18, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.35s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75);
}

.offer-card.gold-tier {
  border-color: rgba(234, 179, 8, 0.35);
}

.offer-card.gold-tier:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75), 0 0 25px rgba(234, 179, 8, 0.2);
}

.offer-card.cyan-tier {
  border-color: rgba(0, 229, 255, 0.35);
}

.offer-card.cyan-tier:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75), 0 0 25px rgba(0, 229, 255, 0.2);
}

.offer-card.purple-tier {
  border-color: rgba(168, 85, 247, 0.35);
}

.offer-card.purple-tier:hover {
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.75), 0 0 25px rgba(168, 85, 247, 0.2);
}

.offer-card-top {
  padding: 30px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-pill {
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(234, 179, 8, 0.18);
  border: 1px solid #eab308;
  color: #fde047;
}

.offer-pill.cyan {
  background: rgba(0, 229, 255, 0.18);
  border-color: var(--cyan);
  color: var(--cyan);
}

.offer-pill.purple {
  background: rgba(168, 85, 247, 0.18);
  border-color: #c084fc;
  color: #e9d5ff;
}

.offer-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
}

.offer-card-top h4 {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 600;
}

.offer-card-top p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Ticket Divider with scalloped cutouts */
.offer-divider {
  display: flex;
  align-items: center;
  position: relative;
  height: 20px;
  overflow: hidden;
}

.offer-divider .cutout-left,
.offer-divider .cutout-right {
  width: 18px;
  height: 18px;
  background: #020712;
  border-radius: 50%;
  position: absolute;
  top: 1px;
}

.offer-divider .cutout-left {
  left: -9px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-divider .cutout-right {
  right: -9px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-divider .dashed-line {
  flex: 1;
  border-top: 2px dashed rgba(255, 255, 255, 0.15);
  margin: 0 16px;
}

.offer-card-bottom {
  padding: 16px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coupon-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.coupon-box .c-code {
  font-family: monospace;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ffffff;
}

.copy-coupon-btn {
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-coupon-btn:hover {
  background: var(--cyan);
  color: #030a16;
}

.offer-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.offer-action-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   5. VIDEO CAMPAIGN GALLERY
   ══════════════════════════════════════════════════════════════ */
.campaigns-section {
  position: relative;
  padding: 95px 0 100px;
  background: #030a16;
  border-bottom: 1px solid rgba(0, 229, 255, 0.08);
}

.campaigns-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.campaigns-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 46px;
}

.campaigns-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  font-weight: 400;
  color: #ffffff;
  margin: 10px 0 14px;
}

.campaigns-title em {
  font-style: italic;
  color: var(--cyan);
}

.campaigns-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.campaign-card {
  background: rgba(5, 18, 36, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: all 0.35s ease;
}

.campaign-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 229, 255, 0.12);
}

.camp-thumb-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.camp-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-card:hover .camp-thumb {
  transform: scale(1.06);
}

.camp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.4);
  transition: background 0.3s ease;
}

.campaign-card:hover .camp-overlay {
  background: rgba(3, 10, 22, 0.2);
}

.camp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.9);
  border: none;
  color: #030a16;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 26px rgba(0, 229, 255, 0.65);
  transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.camp-play-btn svg {
  margin-left: 3px;
}

.campaign-card:hover .camp-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ffffff;
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.9);
}

.camp-duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(3, 10, 22, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.camp-meta {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.camp-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--cyan);
}

.camp-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: #ffffff;
  font-weight: 500;
}

.camp-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   6. CONNOISSEUR TESTIMONIALS (FULL-WIDTH AUTO-SLIDE LOOPING - LIGHT THEME)
   ══════════════════════════════════════════════════════════════ */
.testimonials-section {
  position: relative;
  padding: 80px 0 90px;
  background: #faf6ee;
  background: linear-gradient(180deg, #fbf8f2 0%, #f6f0e4 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  overflow: hidden;
}

.testimonials-section .testi-glow {
  display: none;
}

.testimonials-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
}

.testimonials-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.testimonials-header .eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0369a1;
  display: block;
  margin-bottom: 12px;
}

.testimonials-title {
  font-family: var(--serif, 'Cinzel', serif);
  font-size: clamp(2.3rem, 3.8vw, 3.3rem);
  font-weight: 700;
  color: #020713;
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.18;
}

.testimonials-title em {
  font-style: italic;
  font-weight: 600;
  color: #026aa7;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.testi-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 12px 0 26px;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.testi-track {
  display: flex;
  gap: clamp(20px, 2.2vw, 30px);
  width: max-content;
  animation: testiLoop 38s linear infinite;
  will-change: transform;
}

.testi-track:hover {
  animation-play-state: paused;
}

@keyframes testiLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.testi-card {
  flex: 0 0 clamp(320px, 28vw, 420px);
  width: clamp(320px, 28vw, 420px);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  box-sizing: border-box;
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: #0284c7;
  box-shadow: 0 18px 40px rgba(2, 132, 199, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testi-stars {
  color: #d97706;
  font-size: 1.18rem;
  letter-spacing: 3px;
}

.testi-quote {
  font-size: 1.02rem;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.68;
  font-style: italic;
  flex: 1;
  margin: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.35);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.author-info strong {
  font-size: 0.96rem;
  color: #020713;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.author-info span {
  font-size: 0.8rem;
  color: #475569;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS FOR ALL NEW SECTIONS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .curations-grid,
  .catalog-grid,
  .offers-grid,
  .campaigns-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .taste-result-card {
    grid-template-columns: 1fr;
  }

  .taste-card-left {
    min-height: 300px;
  }

  .t-metric-sep {
    display: none;
  }
}

@media (max-width: 768px) {
  .curations-grid,
  .catalog-grid,
  .offers-grid,
  .campaigns-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .taste-result-card {
    padding: 24px;
    gap: 24px;
  }

  .taste-filter-pills {
    gap: 8px;
  }

  .taste-pill {
    padding: 10px 16px;
    font-size: 0.78rem;
  }

  .curation-card {
    height: 420px;
  }

  .trust-metrics-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  /* Connoisseur Testimonials Mobile (Compact & Short) */
  .testimonials-section {
    padding: 42px 0 46px;
  }

  .testimonials-header {
    margin: 0 auto 20px;
    padding: 0 16px;
  }

  .testimonials-header .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    margin-bottom: 6px;
  }

  .testimonials-title {
    font-size: clamp(1.55rem, 6.2vw, 1.95rem);
    line-height: 1.22;
  }

  .testi-carousel-container {
    padding: 6px 0 14px;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testi-track {
    gap: 12px;
    animation-duration: 28s;
  }

  .testi-card {
    flex: 0 0 clamp(230px, 68vw, 270px);
    width: clamp(230px, 68vw, 270px);
    padding: 18px 16px 16px;
    border-radius: 12px;
    gap: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  }

  .testi-stars {
    font-size: 0.92rem;
    letter-spacing: 2px;
  }

  .testi-quote {
    font-size: 0.81rem;
    line-height: 1.48;
    font-weight: 500;
  }

  .testi-author {
    padding-top: 10px;
    gap: 10px;
  }

  .author-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
    border-width: 1.5px;
  }

  .author-info {
    gap: 1px;
  }

  .author-info strong {
    font-size: 0.8rem;
  }

  .author-info span {
    font-size: 0.66rem;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 34px 0 38px;
  }

  .testi-card {
    flex: 0 0 230px;
    width: 230px;
    padding: 15px 13px;
    gap: 8px;
    border-radius: 11px;
  }

  .testi-stars {
    font-size: 0.82rem;
    letter-spacing: 1.5px;
  }

  .testi-quote {
    font-size: 0.76rem;
    line-height: 1.42;
  }

  .testi-author {
    padding-top: 8px;
    gap: 8px;
  }

  .author-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  .author-info strong {
    font-size: 0.75rem;
  }

  .author-info span {
    font-size: 0.62rem;
  }
}

/* ══════════════════════════════════════════════════════════════
   CLEAN FULL-WIDTH PRODUCT SHOWCASE (RAMSONS STYLE - BOLD & BORDERLESS)
   ══════════════════════════════════════════════════════════════ */
.clean-product-section {
  position: relative;
  background: #020713;
  padding: 60px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.clean-product-section.full-width {
  width: 100%;
  max-width: 100%;
  padding: 55px clamp(20px, 4vw, 56px) 80px;
  box-sizing: border-box;
}

.clean-full-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Minimalist Clean Tab Header */
.clean-tab-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.c-tab-btn {
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 6px 14px;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  outline: none;
}

.c-tab-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.c-tab-btn.active {
  color: #ffffff;
  font-weight: 600;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.28);
}

.c-tab-sep {
  color: rgba(255, 255, 255, 0.18);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0 14px;
  user-select: none;
}

/* Grid Layout */
.clean-products-grid {
  display: grid;
  transition: opacity 0.3s ease;
}

.bold-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 34px);
}

/* BORDERLESS BOLD PRODUCT CARD */
.c-prod-card.bold-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
  transition: none;
}

.c-prod-card.bold-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* Extra Items in Grid (Hidden by default, shown when View More is clicked) */
.c-prod-card.bold-card.extra-row-item {
  display: none;
}

.c-prod-card.bold-card.extra-row-item.show {
  display: flex !important;
  animation: fadeInCard 0.45s ease forwards;
}

/* Big Bold Image Stage */
.bold-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  border-radius: 8px;
  overflow: hidden;
  background: #060e1d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.full-bleed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.bold-card:hover .full-bleed {
  transform: scale(1.045);
}

/* Badges Stack (Top Left) */
.c-badges-stack {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 4;
}

.c-badge-pill {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  width: fit-content;
  line-height: 1.2;
}

.c-badge-pill.teal {
  background: #155e75;
  color: #ffffff;
}

.c-badge-pill.red {
  background: #991b1b;
  color: #ffffff;
}

/* Top-Right Circular Action Buttons (Heart + Eye) */
.c-circle-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 4;
}

.c-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 15, 28, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.c-circle-btn:hover {
  background: rgba(0, 229, 255, 0.85);
  color: #020713;
  border-color: #00e5ff;
  transform: scale(1.08);
}

.c-circle-btn.wishlist.active {
  background: rgba(244, 63, 94, 0.9);
  color: #ffffff;
  border-color: #f43f5e;
}

.c-circle-btn.wishlist.active svg {
  fill: #ffffff;
}

/* Hover Add To Cart Bar at Bottom of Image */
.c-slide-add-btn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(2, 7, 19, 0.92);
  color: #ffffff;
  border: none;
  border-top: 1px solid rgba(0, 229, 255, 0.35);
  padding: 13px 10px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(101%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease, color 0.2s ease;
  z-index: 4;
}

.bold-card:hover .c-slide-add-btn {
  transform: translateY(0);
}

.c-slide-add-btn:hover {
  background: #00e5ff;
  color: #020713;
  border-top-color: #00e5ff;
}

/* Home Card Active Stepper Bar (+ / - controller) */
.c-slide-stepper-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: rgba(2, 9, 23, 0.96);
  border-top: 1.5px solid var(--cyan-bright, #00e5ff);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
  z-index: 5;
  box-shadow: 0 -4px 18px rgba(0, 229, 255, 0.25);
  transform: translateY(0);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  animation: slideUpStepper 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpStepper {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.c-slide-step-btn {
  width: 44px;
  min-width: 44px;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #00e5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 0;
  outline: none;
}

.c-slide-step-btn.minus {
  border-right: 1px solid rgba(0, 229, 255, 0.2);
}

.c-slide-step-btn.plus {
  border-left: 1px solid rgba(0, 229, 255, 0.2);
}

.c-slide-step-btn:hover {
  background: rgba(0, 229, 255, 0.18);
  color: #ffffff;
}

.c-slide-step-btn:active {
  background: rgba(0, 229, 255, 0.32);
  transform: scale(0.96);
}

.c-slide-step-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: inherit;
  user-select: none;
}

.c-slide-step-val {
  font-size: 0.94rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.c-slide-step-unit {
  font-size: 0.70rem;
  font-weight: 600;
  color: rgba(224, 242, 254, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.c-card-link-overlay {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

/* Product Meta (Under Image, Completely Unboxed) */
.bold-card .c-prod-meta {
  padding: 14px 2px 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: transparent;
}

.bold-card .c-prod-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bold-card .c-prod-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bold-card .c-prod-title a:hover {
  color: var(--cyan-bright, #00e5ff);
}

.c-circle-btn.quick-view {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.bold-card .c-prod-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 2px;
}

.bold-card .c-price-current {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.bold-card .c-price-old {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: line-through;
}

/* Professional View More Button at Bottom */
.c-view-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 52px;
  padding-top: 10px;
  position: relative;
  z-index: 5;
}

.c-view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: #ffffff;
  padding: 15px 44px;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.c-view-more-btn svg {
  transition: transform 0.28s ease, stroke 0.28s ease;
  stroke: var(--cyan);
}

.c-view-more-btn:hover {
  background: var(--cyan);
  color: #020713;
  border-color: var(--cyan);
  box-shadow: 0 0 32px rgba(0, 229, 255, 0.5);
  transform: translateY(-2px);
}

.c-view-more-btn:hover svg {
  stroke: #020713;
  transform: translateX(5px);
}

.c-view-more-btn:active {
  transform: translateY(0);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1380px) {
  .bold-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }
}

@media (max-width: 1024px) {
  .clean-product-section.full-width {
    padding: 45px 24px 65px;
  }
  .bold-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .bold-card .c-prod-title {
    font-size: 0.9rem;
  }
  .c-view-more-wrap {
    margin-top: 40px;
  }
  .c-view-more-btn {
    padding: 13px 36px;
    font-size: 0.78rem;
  }
}

@media (max-width: 680px) {
  .clean-product-section.full-width {
    padding: 35px 14px 50px;
  }
  .bold-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bold-stage {
    border-radius: 6px;
  }
  .c-circle-btn {
    width: 32px;
    height: 32px;
  }
  .c-circle-btn svg {
    width: 14px;
    height: 14px;
  }
  .c-badge-pill {
    font-size: 0.58rem;
    padding: 2px 5px;
  }
  .bold-card .c-prod-title {
    font-size: 0.82rem;
  }
  .bold-card .c-price-current {
    font-size: 0.82rem;
  }
  .bold-card .c-price-old {
    font-size: 0.74rem;
  }
  .c-slide-add-btn {
    padding: 10px 6px;
    font-size: 0.7rem;
    transform: translateY(0);
    background: rgba(2, 7, 19, 0.85);
  }
  .c-view-more-wrap {
    margin-top: 32px;
  }
  .c-view-more-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }
}

/* ══════════════════════════════════════════════════════════════
   SHOP BY NOTES: FIND YOUR AMBIENCE (CENTER-ALIGNED)
   ══════════════════════════════════════════════════════════════ */
.notes-explorer-section {
  background: #faf6ee;
  background: linear-gradient(180deg, #fbf8f2 0%, #f6f0e4 100%);
  padding: 66px 0 76px;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.notes-container {
  width: 100%;
  padding: 0 clamp(16px, 3.5vw, 48px);
  box-sizing: border-box;
}

/* Centered Aesthetic Header */
.notes-header {
  margin-bottom: 38px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.notes-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0284c7;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}

.notes-title {
  font-family: var(--serif, 'Cinzel', serif);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 600;
  color: #020713;
  margin: 0;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.15;
}

.notes-title em {
  font-style: italic;
  font-weight: 500;
  color: #0284c7;
  background: linear-gradient(135deg, #0096c7 0%, #00b4d8 50%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Carousel Wrap & Centered Track */
.notes-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}

.notes-track {
  display: flex;
  gap: clamp(14px, 1.8vw, 28px);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 16px 8px 24px;
  scroll-behavior: smooth;
  width: 100%;
  max-width: 1460px;
  margin: 0 auto;
  justify-content: center;
  user-select: none;
  box-sizing: border-box;
}

.notes-track::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1140px) {
  .notes-track {
    justify-content: flex-start;
    padding: 14px 18px 22px;
  }
}

/* Larger Note Item & Clean Framed Circles (No Aura) */
.note-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
  width: clamp(124px, 10.4vw, 156px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.note-item:hover {
  transform: translateY(-6px);
}

.note-circle {
  width: clamp(118px, 10vw, 150px);
  height: clamp(118px, 10vw, 150px);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  background: #f1ebd9;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.note-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  display: block;
}

.note-item:hover .note-circle {
  border-color: #00b4d8;
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.25);
}

.note-item:hover .note-circle img {
  transform: scale(1.08);
}

/* Typography Under Circle */
.note-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #020713;
  margin-top: 15px;
  transition: color 0.25s ease;
}

.note-item:hover .note-name {
  color: #0284c7;
}

/* Dashes / Indicators (Active on tablet/mobile when scrolling) */
.notes-dashes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

@media (min-width: 1141px) {
  .notes-dashes {
    display: none;
  }
}

.note-dash {
  width: 22px;
  height: 3px;
  background: rgba(2, 7, 19, 0.12);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.note-dash.active {
  width: 34px;
  background: #0284c7;
  box-shadow: none;
}

@media (max-width: 768px) {
  .notes-explorer-section {
    padding: 42px 0 52px;
  }
}

/* ══════════════════════════════════════════════════════════════
   TRI-BANNER CURATION & SPECIAL OFFER SECTION (FOR HIM | OFFER | FOR HER)
   ══════════════════════════════════════════════════════════════ */
.persona-banners-section {
  position: relative;
  background: #020713;
  background: radial-gradient(ellipse 90% 70% at 50% 50%, #050f20 0%, #020713 100%);
  padding: 30px 0 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.persona-banners-section.full-width {
  width: 100%;
  max-width: 100%;
  padding: 30px clamp(20px, 4vw, 56px) 75px;
  box-sizing: border-box;
}

.persona-banners-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

/* Base Card Style - Distinct Luxury Framed Vitrine */
.persona-banner-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  color: #ffffff;
  background: #081224;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 
    0 18px 45px rgba(0, 0, 0, 0.75), 
    0 0 1px rgba(0, 229, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.persona-banner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 
    0 24px 55px rgba(0, 0, 0, 0.85), 
    0 0 28px rgba(0, 229, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.p-banner-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.p-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.persona-banner-card:hover .p-banner-img {
  transform: scale(1.045);
}

/* Card Overlays */
.p-banner-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.him-overlay {
  background: linear-gradient(to top, rgba(7, 16, 32, 0.92) 0%, rgba(7, 16, 32, 0.35) 45%, transparent 75%);
}

.offer-overlay {
  background: radial-gradient(circle at center, rgba(8, 20, 42, 0.45) 0%, rgba(6, 14, 28, 0.92) 100%);
}

.her-overlay {
  background: linear-gradient(to top, rgba(7, 16, 32, 0.92) 0%, rgba(7, 16, 32, 0.3) 45%, transparent 75%),
              linear-gradient(to bottom, rgba(7, 16, 32, 0.75) 0%, transparent 35%);
}

/* Bottom Left Content */
.p-banner-content.bottom-left {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}

.p-banner-tag-wrap {
  margin-bottom: 6px;
}

.p-banner-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
  display: inline-block;
  line-height: 1;
}

.p-banner-title {
  font-family: inherit;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}

.p-banner-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 5px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Bottom Right Action Arrow */
.p-banner-action {
  position: absolute;
  bottom: 26px;
  right: 26px;
  z-index: 3;
}

.p-circle-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(10, 15, 28, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.28s ease;
}

.persona-banner-card:hover .p-circle-arrow {
  background: #00e5ff;
  color: #020713;
  border-color: #00e5ff;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.45);
}

/* Center Special Offer Card */
.banner-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.p-banner-content.center-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.p-offer-sub {
  font-size: clamp(0.85rem, 1.2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cyan-bright, #00e5ff);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.p-offer-heading {
  font-family: inherit;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.08;
  text-transform: uppercase;
  margin: 0 0 14px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.p-offer-caption {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 24px 0;
  max-width: 300px;
  line-height: 1.45;
}

.p-offer-btn {
  background: #ffffff;
  color: #020713;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.p-offer-btn svg {
  transition: transform 0.25s ease;
  stroke: #020713;
}

.p-offer-btn:hover {
  background: #00e5ff;
  border-color: #00e5ff;
  color: #020713;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.55);
}

.p-offer-btn:hover svg {
  transform: translateX(4px);
}

/* Card 3: Top Caption */
.p-banner-top-caption {
  position: absolute;
  top: 28px;
  left: 20px;
  right: 20px;
  text-align: center;
  z-index: 3;
  pointer-events: none;
}

.p-caption-title {
  font-family: var(--serif, serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  margin: 0 0 4px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.p-caption-sub {
  font-family: var(--thin, sans-serif);
  font-style: italic;
  font-size: clamp(0.78rem, 1vw, 0.94rem);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Responsive Rules for Persona Banners */
@media (max-width: 960px) {
  .persona-banners-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .persona-banner-card {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 600px) {
  .persona-banners-section.full-width {
    padding: 20px 14px 45px;
  }
  .persona-banner-card {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
  }
  .p-banner-content.bottom-left {
    bottom: 20px;
    left: 20px;
  }
  .p-banner-action {
    bottom: 20px;
    right: 20px;
  }
  .p-circle-arrow {
    width: 38px;
    height: 38px;
  }
  .p-circle-arrow svg {
    width: 15px;
    height: 15px;
  }
  .p-banner-title {
    font-size: 1.6rem;
  }
  .p-offer-heading {
    font-size: 2.2rem;
  }
  .p-caption-title {
    font-size: 1.2rem;
  }
}

/* ═════════════════════════════════════════════════════════════
   ═══ OUR BEST SELLING COMBOS (STAGE & CONVEYOR ENHANCEMENTS) ═══
   ═════════════════════════════════════════════════════════════ */
.combos-showcase-section {
  position: relative;
}

.scent-combo-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #00e5ff 0%, #00b4d8 100%);
  color: #020713 !important;
  border: 1px solid rgba(0, 229, 255, 0.7);
  border-radius: 30px;
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.4), 0 8px 20px rgba(0, 0, 0, 0.55);
  transition: all 0.32s cubic-bezier(0.2, 0.9, 0.3, 1);
  white-space: nowrap;
}

.scent-combo-buy-btn svg {
  width: 16px;
  height: 16px;
  stroke: #020713;
  transition: transform 0.3s ease;
}

.scent-combo-buy-btn:hover {
  transform: translateY(-2px) scale(1.025);
  background: linear-gradient(135deg, #ffffff 0%, #00e5ff 100%);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.75), 0 14px 28px rgba(0, 0, 0, 0.7);
  color: #020713 !important;
}

.scent-combo-buy-btn:hover svg {
  transform: scale(1.15) rotate(-6deg);
}

.scent-combo-buy-btn:active {
  transform: translateY(0) scale(0.98);
}

.conveyor-card {
  width: clamp(102px, 13vw, 138px);
}

.conveyor-price {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(0, 229, 255, 0.85);
  margin-top: 3px;
  transition: all 0.4s ease;
}

.conveyor-card[data-offset="0"] .conveyor-price {
  color: #00e5ff;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.55);
  transform: scale(1.08);
}

/* ── Standard Clean Combo Stage Layout ── */
.scent-watermark {
  display: none !important;
}

.combo-hero-meta {
  margin-bottom: 12px;
}

.scent-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.scent-current-price {
  font-family: var(--serif, serif);
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
}

.scent-mrp-price {
  font-size: 1.05rem;
  color: rgba(240, 247, 255, 0.45);
  text-decoration: line-through;
  font-weight: 400;
}

.scent-features-simple {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding: 16px 20px;
  background: rgba(7, 21, 43, 0.45);
  border: 1px solid rgba(0, 229, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.scent-feat-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: clamp(0.85rem, 0.98vw, 0.94rem);
  color: rgba(240, 247, 255, 0.88);
  line-height: 1.5;
}

.feat-dot {
  color: var(--cyan-bright);
  font-size: 0.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.scent-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}

@media (max-width: 768px) {
  .scent-cta-wrap {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 8px auto 0 !important;
    text-align: center !important;
  }

  .scent-combo-buy-btn {
    margin: 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

@media (max-width: 480px) {
  .scent-combo-buy-btn {
    width: min(100%, 310px) !important;
    padding: 12px 22px !important;
    font-size: 0.72rem !important;
  }
}