/*
Theme Name: PrimeoMart v7
Theme URI: https://primeomart.com
Author: Primeo Mart Team
Author URI: https://primeomart.com
Description: PrimeoMart V7 — The Luxury Sanctuary WordPress Theme.
Version: 7.1.0
Text Domain: primeomart
*/

/* ══════════════════════════════════════════════
   PRIMEO MART V7 — The Luxury Sanctuary
   Midnight Sapphire × Antique Gold × Creamy Silk
   ══════════════════════════════════════════════ */
:root {
  --navy: #030F26;
  --navy-med: #0B2545;
  --navy-light: #134074;
  --navy-alpha: rgba(3, 15, 38, 0.05);
  --navy-glow: rgba(3, 15, 38, 0.12);
  
  --gold: #C5A059;
  --gold-light: #E5C483;
  --gold-alpha: rgba(197, 160, 89, 0.10);
  --gold-glow: rgba(197, 160, 89, 0.22);
  
  --cream: #FBFBF9;
  --cream-soft: #F4F4F0;
  --cream-dark: #EDECE6;
  --parchment: #E2E0D5;
  
  --ink: #050E1A;
  --ink-mid: #3A4454;
  --ink-mute: #7E8A9E;
  
  --bdr: rgba(3, 15, 38, 0.08);
  --bdr-gold: rgba(197, 160, 89, 0.25);
  
  --serif: 'Cinzel', Georgia, serif;
  --sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --mono: 'Space Mono', monospace;
  
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 200ms;
  --med: 400ms;
  --slow: 800ms;
  --mw: 1280px;
  --pad: 120px;
  
  --z-cursor: 9000;
  --z-toast: 8000;
  --z-modal: 7000;
  --z-nav: 6000;
  --z-loader: 9999;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}

body.lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

input, select, textarea {
  font-family: inherit;
  outline: none;
  background: none;
  border: none;
  color: var(--ink);
}

/* ── 1. Tactile Paper Texture (Grain) Overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.02;
  background-image: radial-gradient(circle, #000 10%, transparent 11%), radial-gradient(circle, #000 10%, transparent 11%);
  background-size: 3px 3px;
  background-position: 0 0, 1.5px 1.5px;
  pointer-events: none;
  z-index: 9998;
}

/* ── 2. Ambient Cursor Light Aura ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle 350px at var(--mx, 50%) var(--my, 50%), rgba(197, 160, 89, 0.06) 0%, rgba(3, 15, 38, 0.02) 60%, transparent 100%);
  pointer-events: none;
  z-index: -1;
}

/* ── 3. Custom Selection Highlight ── */
::selection {
  background: var(--navy-med);
  color: var(--cream);
}

/* ── 4. Custom Luxury Scrollbar ── */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--cream);
}
::-webkit-scrollbar-thumb {
  background: var(--parchment);
  border: 2.5px solid var(--cream);
  border-radius: 100px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ink-mute);
}

/* ── LUXURY CURSOR (disabled — using system cursor) ── */
.lux-cursor-dot, .lux-cursor-ring { display: none !important; }

/* ── Swiss watch preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: var(--z-loader);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity var(--slow) var(--ease), transform var(--slow) var(--ease), visibility var(--slow);
}
.preloader.gone {
  opacity: 0;
  transform: scale(1.04);
  visibility: hidden;
  pointer-events: none;
}
.tourbillon {
  position: relative;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.tourbillon .ring {
  position: absolute;
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
}
.outer-ring {
  inset: 0;
  animation: spin 1.8s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite;
}
.mid-ring {
  inset: 12px;
  border-top-color: var(--gold-light);
  animation: spin 2.4s cubic-bezier(0.68, -0.6, 0.32, 1.6) infinite reverse;
}
.inner-ring {
  inset: 24px;
  border-top-color: #fff;
  animation: spin 3s linear infinite;
}
.logo-text {
  font-family: var(--serif);
  font-size: 20px;
  color: #fff;
  font-weight: 500;
  transform: translateY(-1px);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.brand-name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: 0.35em;
  color: #fff;
  font-weight: 400;
}
.est-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.38);
}

/* ── TICKER BAR ── */
.ticker-bar {
  background: var(--navy);
  height: 34px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
}
.ticker-track span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ELEGANT HEADER ── */
.header {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: var(--z-nav);
  transition: top var(--med) var(--ease);
}
.header.up {
  top: 0;
}
.nav {
  margin: 14px 28px;
  background: rgba(251, 251, 249, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--bdr);
  border-radius: 100px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  box-shadow: 0 4px 30px rgba(3, 15, 38, 0.04);
  transition: box-shadow var(--med), background var(--med);
}
.header.scrolled .nav {
  background: rgba(251, 251, 249, 0.96);
  box-shadow: 0 6px 36px rgba(3, 15, 38, 0.08);
}
.brand-logo img {
  height: 28px; width: auto;
}
.nav-links {
  display: flex;
  gap: 4px;
  margin: 0 auto;
}
.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color var(--fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--med) var(--ease), left var(--med) var(--ease);
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-links a:hover::after {
  width: calc(100% - 32px);
  left: 16px;
}
.nav-meta {
  display: flex;
  align-items: center;
  gap: 6px;
}
.meta-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid);
  transition: background var(--fast), color var(--fast);
}
.meta-icon:hover {
  background: var(--navy-alpha);
  color: var(--navy);
}
.meta-icon svg {
  width: 16px; height: 16px;
}
.cart-trigger {
  position: relative;
}
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 8px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.menu-trig {
  display: none;
  flex-direction: column;
  gap: 5px; padding: 8px;
  border-radius: 50%;
}
.menu-trig span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--ink-mid);
  transition: transform var(--med) var(--ease), opacity var(--fast);
}
.menu-trig.open span:first-child {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-trig.open span:last-child {
  opacity: 0;
}

/* Currency Widget */
.cur-widget {
  position: relative;
}
.cur-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 5px 13px;
  border: 1px solid var(--bdr);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 700;
  color: var(--ink-mid);
  letter-spacing: 0.05em;
  transition: border-color var(--fast), color var(--fast);
}
.cur-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.cur-btn svg {
  width: 11px; height: 11px;
  transition: transform var(--fast);
}
.cur-widget.open .cur-btn svg {
  transform: rotate(180deg);
}
.cur-dropdown {
  position: absolute;
  top: calc(100% + 10px); right: 0;
  background: var(--cream);
  border: 1px solid var(--bdr-gold);
  border-radius: 12px;
  overflow: hidden;
  min-width: 128px;
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--fast), visibility var(--fast), transform var(--fast);
  box-shadow: 0 8px 32px rgba(3, 15, 38, 0.10);
  z-index: 10;
}
.cur-widget.open .cur-dropdown {
  opacity: 1; visibility: visible;
  transform: translateY(0);
}
.cur-item {
  display: block; width: 100%;
  padding: 9px 16px; text-align: left;
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mid);
  transition: background var(--fast), color var(--fast);
}
.cur-item:hover, .cur-item.active {
  background: var(--navy-alpha);
  color: var(--navy);
}

/* Search Overlay */
.search-overlay {
  background: rgba(251, 251, 249, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  padding: 16px 40px;
  display: none;
}
.search-overlay.open {
  display: block;
}
.search-box {
  display: flex; align-items: center; gap: 14px;
  max-width: 700px; margin: 0 auto;
  border-bottom: 1.5px solid var(--bdr-gold);
  padding-bottom: 12px;
}
.search-box svg {
  width: 20px; height: 20px;
  color: var(--navy-med);
  flex-shrink: 0;
}
.search-box input {
  flex: 1; font-size: 22px;
  font-family: var(--serif); font-weight: 300;
}
.search-box input::placeholder {
  color: var(--ink-mute);
}
#searchClose svg {
  width: 18px; height: 18px;
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TYPOGRAPHY ── */
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.sec-label::before {
  content: ''; display: inline-block;
  width: 20px; height: 1px;
  background: currentColor;
}
.sec-label.label-light {
  color: rgba(251, 251, 249, 0.6);
}
.sec-label.label-light::before {
  background: rgba(251, 251, 249, 0.6);
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 54px);
  font-weight: 400; line-height: 1.1;
  color: var(--navy);
  font-feature-settings: "liga" 1, "dlig" 1;
}
.sec-title em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 0 1px rgba(197, 160, 89, 0.05);
}
.sec-title.title-light {
  color: #fff;
}
.sec-title.title-light em {
  color: var(--gold-light);
}

/* Buttons */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  background: var(--gold);
  color: #fff;
  font-size: 13px; font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.18);
  transition: background var(--med) var(--ease), transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.btn-gold:hover {
  background: #b28e47;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.3);
}
.btn-gold svg {
  width: 14px; height: 14px;
}
.btn-gold-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
.btn-gold-light:hover {
  background: var(--cream-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: var(--navy);
  color: #fff;
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: background var(--med) var(--ease), transform var(--med) var(--ease);
}
.btn-navy:hover {
  background: var(--navy-med);
  transform: translateY(-3px);
}
.btn-navy svg {
  width: 14px; height: 14px;
}
.btn-o {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px;
  background: transparent;
  border: 1.5px solid var(--bdr-gold);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  color: var(--gold);
  transition: background var(--med) var(--ease), border-color var(--med) var(--ease), transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.btn-o:hover {
  background: var(--gold-alpha);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.05);
}
.btn-o svg {
  width: 14px; height: 14px;
}
.link-gold {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.1em; color: var(--gold);
  border-bottom: 1px solid var(--bdr-gold);
  padding-bottom: 2px;
  transition: color var(--fast), gap var(--fast);
}
.link-gold:hover {
  color: var(--navy-light);
  gap: 10px;
}
.link-gold svg {
  width: 13px; height: 13px;
}

/* Reveal Transitions */
.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(38px);
  transition: opacity 1.35s var(--ease), filter 1.35s var(--ease), transform 1.35s var(--ease);
}
.reveal.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.reveal-c {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px);
  transition: opacity 0.95s var(--ease), filter 0.95s var(--ease), transform 0.95s var(--ease);
}
.reveal-c.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   HERO — The Cinematic Canvas
══════════════════════════════════════════════ */
/* ══════════════════════════════════════
   HERO — The Cinematic Canvas
══════════════════════════════════════ */
.hero-cinematic {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
#heroParticles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
@keyframes hero-zoom {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.hero-cinematic-bg {
  position: absolute;
  inset: 0;
  background: url('./hero_herbal.png') no-repeat center center;
  background-size: cover;
  z-index: 1;
  filter: saturate(0.85) contrast(1.05);
  animation: hero-zoom 20s ease-in-out infinite;
}
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(3, 15, 38, 0.65) 0%, rgba(3, 15, 38, 0.94) 100%);
  z-index: 2;
}
.hero-cinematic-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 24px;
  color: #fff;
}
.hero-badge-eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-h1-cinematic {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.20);
}
.hero-h1-cinematic .h-line {
  display: block;
}
.hero-h1-cinematic .h-line-gold {
  display: block;
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc-cinematic {
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-actions-cinematic {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}
.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: var(--gold);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--med) var(--ease);
  box-shadow: 0 10px 24px rgba(197, 160, 89, 0.24);
}
.btn-gold-lg:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(197, 160, 89, 0.35);
}
.btn-appoint-lg {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.40);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--med) var(--ease);
}
.btn-appoint-lg:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── TRUST BADGES BAR ── */
.trust-badges-bar {
  padding: 24px 0;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--bdr);
}
.tb-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.tb-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tb-bar-icon {
  font-size: 18px;
  line-height: 1;
}
.tb-bar-text {
  font-size: 13.5px;
  color: var(--ink-mid);
}

/* ── BRAND DIVISIONS ── */
.sec-divisions {
  padding: var(--pad) 0;
  background: var(--cream);
}
.sec-desc-sub {
  font-size: 15px;
  color: var(--ink-mute);
  max-width: 500px;
  margin: 10px auto 0;
}
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.div-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bdr-gold);
  box-shadow: 0 16px 40px rgba(3, 15, 38, 0.05);
  height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.div-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(3, 15, 38, 0.12);
}
.div-card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.div-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.div-card:hover .div-card-img img {
  transform: scale(1.05);
}
.div-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 15, 38, 0.96) 0%, rgba(3, 15, 38, 0.50) 60%, rgba(3, 15, 38, 0.10) 100%);
  z-index: 2;
}
.div-card-content {
  position: relative;
  z-index: 3;
  color: #fff;
}
.dc-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.div-card-content h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.div-card-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
  margin-bottom: 24px;
}
.btn-dc-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--fast);
  cursor: pointer;
}
.btn-dc-action:hover {
  color: #fff;
}
.btn-dc-action svg {
  width: 13px; height: 13px;
  transition: transform var(--fast);
}
.btn-dc-action:hover svg {
  transform: translateX(4px);
}

.tb-icon svg {
  width: 20px; height: 20px;
}
.tb-text strong {
  display: block; font-size: 13.5px;
  font-weight: 600; color: var(--navy);
  margin-bottom: 3px;
}
.tb-text p {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   PRODUCT CARDS & GRIDS
══════════════════════════════════════════════ */
.sec-new-in {
  padding: var(--pad) 0;
  background: var(--cream);
}
.sec-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 24px;
}
.grid-luxury {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Curated Card Style */
.prd {
  background: var(--cream-soft);
  border: 1px solid rgba(3, 15, 38, 0.05);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 20px rgba(3, 15, 38, 0.02);
  transition: border-color var(--med), transform var(--med) var(--ease), box-shadow var(--med);
}
.prd::before {
  content: ''; position: absolute; inset: 0;
  border-radius: inherit; border: 1px solid transparent;
  pointer-events: none; z-index: 3;
  transition: border-color var(--med) var(--ease);
}
.prd:hover {
  border-color: rgba(197, 160, 89, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(3, 15, 38, 0.06);
}
.prd:hover::before {
  border-color: var(--bdr-gold);
}
.prd-badge {
  position: absolute;
  top: 12px; left: 12px; z-index: 2;
  background: var(--navy);
  color: #fff;
  font-family: var(--mono); font-size: 8.5px;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
}
.prd-wish {
  position: absolute;
  top: 12px; right: 12px; z-index: 2;
  width: 30px; height: 30px;
  background: rgba(251, 251, 249, 0.9);
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  opacity: 0;
  transition: opacity var(--fast), color var(--fast), transform var(--med) var(--ease);
  backdrop-filter: blur(4px);
}
.prd-wish svg {
  width: 13px; height: 13px;
}
.prd:hover .prd-wish {
  opacity: 1;
}
.prd-wish:hover {
  color: #E53E3E;
  transform: scale(1.15);
}
.prd-emoji {
  height: 190px;
  background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s var(--ease);
}
.prd:hover .prd-emoji {
  transform: scale(1.04);
}
.prd-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--med) var(--ease);
}
.prd:hover .prd-bar {
  transform: scaleX(1);
}
.prd-body {
  padding: 18px;
  flex: 1; display: flex; flex-direction: column;
}
.prd-cat {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.prd-name {
  font-family: var(--serif);
  font-size: 15px; font-weight: 400;
  color: var(--navy); line-height: 1.4;
  height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}
.prd-name a {
  color: inherit;
  text-decoration: none;
  transition: color var(--fast);
}
.prd-name a:hover {
  color: var(--gold);
}
.prd-stars {
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.prd-stars span {
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 10px;
  margin-left: 4px;
}
.prd-foot {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.prd-prices {
  display: flex; align-items: baseline; gap: 7px;
}
.prd-new {
  font-size: 16px; font-weight: 700;
  color: var(--navy);
}
.prd-old {
  font-size: 12px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.prd-add {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 14px rgba(3, 15, 38, 0.18);
  transition: background var(--fast), transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
}
.prd-add svg {
  width: 15px; height: 15px;
}
.prd-add:hover {
  background: var(--navy-med);
  transform: scale(1.12) rotate(90deg);
}
.prd:hover .prd-add {
  box-shadow: 0 0 14px rgba(3, 15, 38, 0.35);
}

/* ══════════════════════════════════════════════
   THE VAULT — Curated Flash Deals
══════════════════════════════════════════════ */
.sec-vault {
  padding: var(--pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.vault-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.02) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  pointer-events: none;
}
.vault-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 24px;
}
.vault-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #FF5555;
  font-family: var(--mono); font-size: 10.5px;
  font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px;
  margin-bottom: 12px;
  animation: fpulse 2s ease-in-out infinite;
}
@keyframes fpulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.2); }
  50% { box-shadow: 0 0 0 7px rgba(220, 38, 38, 0); }
}
.vault-note {
  font-size: 13px; color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono); letter-spacing: 0.05em;
  margin-top: 6px;
}
.countdown-clock {
  display: flex; align-items: center; gap: 8px;
}
.c-unit {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 12px 18px; min-width: 68px;
}
.c-unit span {
  font-family: var(--mono); font-size: 34px;
  font-weight: 700; color: #fff; line-height: 1;
}
.c-unit label {
  font-family: var(--mono); font-size: 8.5px;
  letter-spacing: 0.15em; color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase; margin-top: 5px;
}
.c-sep {
  font-family: var(--mono); font-size: 26px;
  color: rgba(255, 255, 255, 0.22);
  padding-bottom: 8px;
}
.grid-vault {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Vault Card Style */
.fc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: border-color var(--med), transform var(--med) var(--ease), box-shadow var(--med);
}
.fc:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.fc-disc {
  position: absolute;
  top: 12px; left: 12px; z-index: 2;
  background: var(--gold);
  color: #fff;
  font-family: var(--mono); font-size: 10px;
  font-weight: 700; padding: 3px 9px; border-radius: 4px;
}
.fc-img {
  height: 130px;
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  background: rgba(255, 255, 255, 0.02);
}
.fc-body {
  padding: 16px;
  flex: 1; display: flex; flex-direction: column;
}
.fc-cat {
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
}
.fc-name {
  font-size: 14px; font-weight: 500;
  color: #fff; margin: 6px 0 10px;
  line-height: 1.4; flex: 1;
}
.fc-prices {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 12px;
}
.fc-new {
  font-size: 18px; font-weight: 700;
  color: #fff;
}
.fc-old {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
}
.fc-bar-wrap {
  margin-bottom: 14px;
}
.fc-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}
.fc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.fc-bar-wrap span {
  font-family: var(--mono); font-size: 10px;
  color: rgba(255, 255, 255, 0.36);
}
.fc-bar-wrap strong {
  color: rgba(255, 255, 255, 0.65);
}
.fc-add {
  width: 100%; padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #fff; font-size: 12px;
  font-weight: 600;
  transition: background var(--fast);
}
.fc-add:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ── THE MANIFESTO ── */
.sec-manifesto {
  padding: 100px 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.manifesto-label {
  display: block;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.manifesto-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 400; line-height: 1.6;
  color: var(--navy);
  max-width: 820px; margin: 0 auto 28px;
}
.manifesto-sign {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.15em; color: var(--ink-mute);
}
.text-center {
  text-align: center;
}

/* ══════════════════════════════════════════════
   FEATURED PRODUCT SPOTLIGHT
══════════════════════════════════════════════ */
.sec-featured {
  padding: var(--pad) 0;
  background: var(--cream);
}
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sl-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.sl-emoji-ring {
  position: relative;
  width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.sl-glow-circle {
  position: absolute; inset: 10%;
  background: radial-gradient(circle, var(--gold-alpha), transparent 70%);
  border-radius: 50%;
  border: 1px solid var(--bdr-gold);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.sl-emoji {
  font-size: 140px; line-height: 1;
  position: relative; z-index: 1;
  animation: float 6s ease-in-out infinite;
}
.sl-badge {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--cream);
  border: 1.5px solid var(--bdr-gold);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 11px; font-weight: 700;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.08);
  white-space: nowrap;
}
.sl-badge svg {
  width: 14px; height: 14px;
}
.sl-details {
  position: relative;
}
.sl-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 400; line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.sl-title em {
  font-style: italic; color: var(--gold);
}
.sl-desc {
  font-size: 14.5px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8;
  margin-bottom: 24px;
}
.sl-perks {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 26px;
}
.sl-perks span {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; color: var(--ink-mid);
}
.sl-perks svg {
  width: 15px; height: 15px;
  color: var(--gold); flex-shrink: 0;
}
.sl-rating {
  font-size: 15px; color: var(--gold);
  margin-bottom: 18px; letter-spacing: 1px;
}
.sl-rating span {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute); margin-left: 6px;
}
.sl-pricing {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 28px;
}
.sl-price-new {
  font-family: var(--serif);
  font-size: 38px; font-weight: 500;
  color: var(--navy); line-height: 1;
}
.sl-price-old {
  font-size: 18px; color: var(--ink-mute);
  text-decoration: line-through;
}
.sl-actions {
  display: flex; align-items: center;
  gap: 14px;
}
.btn-wishlist {
  width: 48px; height: 48px;
  border: 1.5px solid var(--bdr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  transition: border-color var(--fast), color var(--fast), transform var(--med) var(--ease);
}
.btn-wishlist:hover {
  border-color: #E53E3E;
  color: #E53E3E;
  transform: scale(1.1);
}
.btn-wishlist svg {
  width: 18px; height: 18px;
}

/* ══════════════════════════════════════════════
   APOTHECARY & ATELIER — Editorial Panels
══════════════════════════════════════════════ */
.sec-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.panel {
  position: relative;
  min-height: 600px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.panel-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.panel:hover .panel-bg {
  transform: scale(1.04);
}
.panel-overlay {
  position: absolute; inset: 0;
}
.navy-gradient {
  background: linear-gradient(135deg, rgba(3, 15, 38, 0.95) 0%, rgba(3, 15, 38, 0.82) 50%, rgba(19, 64, 116, 0.4) 100%);
}
.gold-gradient {
  background: linear-gradient(135deg, rgba(10, 37, 69, 0.96) 0%, rgba(10, 37, 69, 0.82) 50%, rgba(197, 160, 89, 0.4) 100%);
}
.panel-content {
  position: relative; z-index: 2;
  padding: 60px; width: 100%;
}
.panel-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transition: transform var(--med) var(--ease);
}
.panel:hover .panel-icon {
  transform: scale(1.08) rotate(-5deg);
}
.panel-icon svg {
  width: 24px; height: 24px;
}
.p-apothecary .panel-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.p-atelier .panel-icon {
  background: var(--gold-alpha);
  border: 1px solid rgba(229, 196, 131, 0.3);
  color: var(--gold-light);
}
.panel-tag {
  display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 4px 14px;
  font-family: var(--mono); font-size: 10px;
  font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
}
.tag-gold {
  background: var(--gold-alpha);
  border-color: rgba(229, 196, 131, 0.25);
  color: var(--gold-light);
}
.panel-h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 400; line-height: 1.15;
  color: #fff; margin-bottom: 18px;
}
.panel-h2 em {
  font-style: italic;
  color: var(--gold-light);
}
.panel-desc {
  font-size: 14px; font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8; margin-bottom: 22px;
  max-width: 440px;
}
.panel-badges {
  display: flex; flex-wrap: wrap;
  gap: 8px; margin-bottom: 28px;
}
.panel-badges span {
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  font-size: 11.5px; color: rgba(255, 255, 255, 0.7);
}
.panel-list {
  display: flex; flex-direction: column;
  gap: 10px; margin-bottom: 28px;
}
.panel-list span {
  display: flex; align-items: center;
  gap: 9px; font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
}
.panel-list svg {
  width: 15px; height: 15px;
  color: var(--gold-light); flex-shrink: 0;
}
.panel-foot {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
}
.panel-stats {
  display: flex; flex-direction: column;
}
.panel-stats strong {
  font-size: 16px; font-weight: 700;
  color: #fff; line-height: 1;
}
.panel-stats span {
  font-family: var(--mono); font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.panel-stamp {
  position: absolute;
  top: 24px; right: 24px;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 15px;
  font-weight: 600; color: #fff;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 24px rgba(3, 15, 38, 0.3);
  animation: float 5s ease-in-out infinite;
}
.stamp-gold {
  background: var(--gold);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.3);
}

/* ══════════════════════════════════════════════
   THE COLLECTION & CATALOG
══════════════════════════════════════════════ */
.sec-catalog {
  padding: var(--pad) 0;
  background: var(--cream);
}
.catalog-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap; gap: 24px;
}
.cat-filters {
  display: flex; gap: 8px;
  flex-wrap: wrap;
}
.cat-filter {
  padding: 7px 18px;
  border: 1px solid var(--bdr);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--ink-mid); background: transparent;
  transition: border-color var(--fast), color var(--fast), background var(--fast);
}
.cat-filter:hover {
  color: var(--navy); border-color: var(--bdr-gold);
}
.cat-filter.active {
  background: var(--navy);
  color: #fff; border-color: var(--navy);
}
.catalog-pagination {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════════════════════════
   LOCAL EXPRESS DELIVERY BANNER
══════════════════════════════════════════════ */
.express-delivery-banner {
  position: relative;
  background: url('./warehouse_delivery.png') no-repeat center center;
  background-size: cover;
  border-top: 1px solid var(--bdr-gold);
  border-bottom: 1px solid var(--bdr-gold);
  padding: 36px 0;
  overflow: hidden;
}
.express-delivery-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 38, 0.94);
  z-index: 1;
}
.edb-compact-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.edb-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: max-content;
}
.edb-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--bdr-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.edb-icon-box svg {
  width: 20px;
  height: 20px;
}
.edb-info strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}
.edb-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.edb-middle {
  flex: 1;
  max-width: 540px;
}
.edb-middle p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}
.edb-middle strong {
  color: var(--gold);
  font-weight: 600;
}
.edb-right {
  flex-shrink: 0;
}
.edb-days-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--bdr-gold);
  border-radius: 100px;
  padding: 8px 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .edb-compact-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 24px;
  }
  .edb-middle {
    max-width: 100%;
  }
}


/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.sec-reviews {
  padding: var(--pad) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--bdr);
}
.reviews-slider {
  overflow: hidden;
  max-width: 900px; margin: 0 auto;
}
.rev-track {
  display: flex;
  transition: transform var(--slow) var(--ease);
}
.rev-slide {
  min-width: 100%;
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: 24px;
  padding: 52px;
  position: relative;
}
.rev-quote {
  font-family: var(--serif);
  font-size: 130px; font-weight: 300;
  color: var(--cream-dark); line-height: 0.7;
  position: absolute; top: 30px; left: 46px;
  pointer-events: none; user-select: none;
}
.rev-body {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.7; color: var(--navy);
  margin-bottom: 32px; position: relative; z-index: 1;
}
.rev-author {
  display: flex; align-items: center;
  gap: 14px; position: relative; z-index: 1;
}
.rev-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-alpha);
  border: 1.5px solid var(--bdr-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--navy); flex-shrink: 0;
}
.rev-author strong {
  display: block; font-size: 14px;
  font-weight: 600; color: var(--navy);
}
.rev-author span {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: 0.04em;
}
.rev-stars {
  margin-left: auto; font-size: 16px;
  color: var(--gold); letter-spacing: 1px;
}
.slider-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 14px;
  margin-top: 28px;
}
.slide-control {
  width: 42px; height: 42px;
  border: 1px solid var(--bdr-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-med);
  transition: background var(--fast), transform var(--med) var(--ease);
}
.slide-control:hover {
  background: var(--navy-alpha);
  transform: scale(1.08);
}
.slide-control svg {
  width: 15px; height: 15px;
}
.slide-dots {
  display: flex; gap: 7px;
}
.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--parchment);
  cursor: pointer;
  transition: background var(--fast), width var(--med) var(--ease);
}
.slide-dot.active {
  background: var(--navy);
  width: 20px; border-radius: 100px;
}

/* ══════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════ */
.sec-newsletter {
  padding: var(--pad) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.nl-decor-leaf {
  position: absolute; bottom: -40px; right: -30px;
  font-size: 300px; opacity: 0.03;
  pointer-events: none; transform: rotate(-20deg);
}
.nl-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 300; color: #fff;
  margin-bottom: 14px;
}
.nl-title em {
  font-style: italic;
  color: var(--gold-light);
}
.nl-desc {
  font-size: 14px; color: rgba(255, 255, 255, 0.45);
  max-width: 480px; margin: 0 auto 32px;
  line-height: 1.75;
}
.nl-form {
  display: inline-flex; align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 100px;
  padding: 6px 6px 6px 26px;
  width: 100%; max-width: 480px;
  transition: border-color var(--fast);
  margin-bottom: 18px;
}
.nl-form:focus-within {
  border-color: rgba(255, 255, 255, 0.38);
}
.nl-form input {
  flex: 1; font-size: 14px;
  color: #fff; min-width: 0;
}
.nl-form input::placeholder {
  color: rgba(255, 255, 255, 0.28);
}
.btn-nl-submit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: #fff; color: var(--navy);
  font-size: 13px; font-weight: 700;
  border-radius: 100px;
  transition: background var(--fast);
}
.btn-nl-submit:hover {
  background: var(--cream-soft);
}
.btn-nl-submit svg {
  width: 13px; height: 13px;
}
.nl-compliance {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255, 255, 255, 0.32);
  font-family: var(--mono);
}
.nl-compliance svg {
  width: 12px; height: 12px;
  vertical-align: middle;
}
.nl-affiliate-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--cream-soft);
  border-top: 1px solid var(--bdr);
  padding: 72px 0 0;
}
.foot-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--bdr);
  margin-bottom: 24px;
}
.foot-logo {
  height: 44px; width: auto;
  margin-bottom: 16px;
}
.foot-brand p {
  font-size: 13px; color: var(--ink-mute);
  line-height: 1.75; max-width: 280px;
  margin-bottom: 22px;
}
.foot-socials {
  display: flex; gap: 10px;
}
.foot-socials a {
  width: 34px; height: 34px;
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mute);
  transition: border-color var(--fast), color var(--fast);
}
.foot-socials a:hover {
  border-color: var(--bdr-gold);
  color: var(--navy);
}
.foot-socials svg {
  width: 14px; height: 14px;
}
.foot-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}
.foot-col h4 {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 16px;
}
.foot-col ul {
  display: flex; flex-direction: column; gap: 9px;
}
.foot-col a {
  font-size: 13px; color: var(--ink-mute);
  transition: color var(--fast);
}
.foot-col a:hover {
  color: var(--gold);
}
.foot-bar {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 12px; padding-bottom: 28px;
}
.foot-bar p {
  font-family: var(--mono); font-size: 11px;
  color: var(--ink-mute); letter-spacing: 0.05em;
}
.payment-methods {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.payment-methods span {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-mute); border: 1px solid var(--bdr);
  border-radius: 4px; padding: 3px 9px;
}

/* ══════════════════════════════════════════════
   BESPOKE SIDEBAR CONCIERGE MODAL
══════════════════════════════════════════════ */
.concierge-sidebar {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 38, 0.4);
  backdrop-filter: blur(14px);
  z-index: var(--z-modal);
  opacity: 0; visibility: hidden;
  transition: opacity var(--med) var(--ease), visibility var(--med);
  display: flex; justify-content: flex-end;
}
.concierge-sidebar.open {
  opacity: 1; visibility: visible;
}
.sidebar-box {
  background: var(--cream);
  border-left: 1px solid var(--bdr-gold);
  width: 100%; max-width: 500px;
  height: 100vh; overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateX(100%);
  transition: transform var(--slow) var(--ease);
  box-shadow: -20px 0 60px rgba(3, 15, 38, 0.15);
}
.concierge-sidebar.open .sidebar-box {
  transform: translateX(0);
}
.sidebar-close {
  position: absolute; top: 20px; left: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bdr);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid);
  transition: color var(--fast), border-color var(--fast);
}
.sidebar-close:hover {
  border-color: var(--gold);
  color: var(--navy);
}
.sidebar-close svg {
  width: 15px; height: 15px;
}
.sidebar-header {
  margin-top: 24px;
  margin-bottom: 32px;
}
.sb-badge {
  display: inline-block;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.sidebar-header h2 {
  font-family: var(--serif); font-size: 28px;
  font-weight: 400; color: var(--navy);
  margin-bottom: 8px;
}
.sidebar-header p {
  font-size: 13.5px; color: var(--ink-mute);
}
.sidebar-form {
  display: flex; flex-direction: column; gap: 20px;
}
.form-group {
  display: flex; flex-direction: column; gap: 6px;
}
.form-row {
  display: flex; gap: 14px;
}
.form-row .form-group {
  flex: 1;
}
.form-group label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
}
.form-group input, .form-group select, .form-group textarea {
  background: var(--cream-soft);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  padding: 12px 14px; font-size: 14px;
  transition: border-color var(--fast), box-shadow var(--fast);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-alpha);
}
.form-group textarea {
  resize: vertical;
}
.btn-sb-submit {
  margin-top: 10px;
  width: 100%; justify-content: center;
  border-radius: 12px;
}

/* TOAST NOTIFICATION */
.lux-toast {
  position: fixed;
  bottom: 30px; right: 30px;
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 48px rgba(3, 15, 38, 0.28);
  z-index: var(--z-toast);
  max-width: 350px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s ease;
}
.lux-toast.show {
  transform: translateY(0); opacity: 1;
}
.lux-toast svg {
  width: 20px; height: 20px;
  color: var(--gold-light); flex-shrink: 0;
}
.toast-body strong {
  display: block; font-size: 13.5px;
  font-weight: 700; color: #fff;
  margin-bottom: 2px;
}
.toast-body span {
  font-size: 12px; color: rgba(255, 255, 255, 0.55);
}

/* ══════════════════════════════════════════════
   RESPONSIVE DESIGN
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-canvas {
    grid-template-columns: 1fr;
    padding-top: 140px; gap: 40px;
  }
  .hero-right-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hc-apothecary .hc-img, .hc-atelier .hc-img {
    height: 250px;
  }
  .tb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .grid-luxury {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-vault {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec-panels {
    grid-template-columns: 1fr;
  }
  .spotlight-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sl-visual {
    max-width: 320px; margin: 0 auto;
  }
  .foot-main {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .foot-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --pad: 80px;
  }
  .nav-links {
    display: none;
  }
  .menu-trig {
    display: flex;
  }
  
  /* Mobile Menu Drawer style (Simple full-screen) */
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: var(--cream);
    padding: 100px 40px 40px;
    gap: 20px;
    z-index: calc(var(--z-nav) - 1);
  }
  .nav-links.open a {
    font-size: 26px;
    font-family: var(--serif);
    font-weight: 400;
    color: var(--navy);
  }
  .hero-right-collage {
    grid-template-columns: 1fr;
  }
  .grid-luxury {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-slider {
    padding: 0 10px;
  }
  .rev-slide {
    padding: 32px 24px;
  }
  .slide-control {
    width: 38px; height: 38px;
  }
  .ed-wrap {
    gap: 16px;
  }
  .ed-pills {
    display: none;
  }
}

@media (max-width: 520px) {
  .grid-luxury {
    grid-template-columns: 1fr;
  }
  .grid-vault {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-links-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
  .sidebar-box {
    padding: 32px 20px;
  }
}

/* ── V7 MANIFESTO (SPLIT) ── */
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}
.manifesto-left {
  position: relative;
}
.manifesto-img-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--bdr-gold);
  box-shadow: 0 16px 40px rgba(3, 15, 38, 0.08);
}
/* Our Promise overlay badge on image */
.manifesto-img-promise {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: 3;
}
.promise-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(3, 15, 38, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 14px;
  padding: 14px 18px;
  color: #fff;
}
.promise-badge svg {
  width: 28px; height: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.promise-badge div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.promise-badge strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.promise-badge span {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.manifesto-img-box img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.manifesto-img-box:hover img {
  transform: scale(1.03);
}
.manifesto-right {
  display: flex;
  flex-direction: column;
}
.manifesto-desc {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-top: 14px;
  margin-bottom: 24px;
}
.manifesto-perks {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.manifesto-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.manifesto-perk span {
  font-size: 24px;
  line-height: 1;
  background: var(--gold-alpha);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.manifesto-perk-text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.manifesto-perk-text p {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .manifesto-img-box img {
    height: 300px;
  }
}

/* ── V7 CATALOG IMAGE WRAPS ── */
.prd-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--bdr);
}
.prd-actual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.prd:hover .prd-actual-img {
  transform: scale(1.03);
}

.fc-img-wrap {
  height: 140px;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.fc-actual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.fc:hover .fc-actual-img {
  transform: scale(1.03);
}

/* ── V7 REVIEW PRODUCT CARDS ── */
.rev-content-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
}
.rev-product-side {
  display: flex;
  justify-content: flex-end;
}
.rev-prd-card {
  background: var(--cream-soft);
  border: 1px solid var(--bdr-gold);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 280px;
  box-shadow: 0 10px 24px rgba(3, 15, 38, 0.03);
  transition: border-color var(--fast), transform var(--med) var(--ease);
}
.rev-prd-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.rev-prd-card img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--cream-dark);
  border: 1px solid var(--bdr);
}
.rev-prd-info h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
}
.rev-prd-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.rev-prd-price {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--navy);
}

}


/* ── ACCESSIBILITY SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  padding: 10px 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  z-index: 99999;
  border-radius: 4px;
  transition: top var(--fast) var(--ease);
}
.skip-link:focus {
  top: 20px;
}

/* ── FEATURED CATEGORIES ── */
.sec-categories {
  padding: var(--pad) 0 60px;
  background: var(--cream);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cat-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--bdr-gold);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: transform var(--med) var(--ease), box-shadow var(--med) var(--ease);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(3, 15, 38, 0.08);
}
.cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 6s var(--ease);
}
.cat-card:hover .cat-img {
  transform: scale(1.04);
}
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 15, 38, 0.90) 0%, rgba(3, 15, 38, 0.35) 60%, rgba(3, 15, 38, 0.05) 100%);
  z-index: 2;
}
.cat-card-info {
  position: relative;
  z-index: 3;
  color: #fff;
}
.cat-card-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 4px;
}
.cat-card-info span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}

/* ── BRAND PARTNERS MARQUEE ── */
.partners-marquee-section {
  padding: 30px 0;
  background: var(--navy-med);
  overflow: hidden;
  border-top: 1px solid rgba(197, 160, 89, 0.15);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}
.marquee-track {
  width: 100%;
  overflow: hidden;
}
.marquee-content {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-content span {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FAQ ACCORDION ── */
.sec-faq {
  padding: var(--pad) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--cream);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color var(--fast) var(--ease);
}
.faq-item:hover {
  border-color: var(--bdr-gold);
}
.faq-trigger {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  background: none;
  border: none;
}
.faq-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  transition: transform var(--med) var(--ease);
}
.faq-item.active .faq-trigger svg {
  transform: rotate(45deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--med) var(--ease), padding var(--med) var(--ease);
  padding: 0 28px;
}
.faq-item.active .faq-panel {
  max-height: 200px;
  padding-bottom: 24px;
}
.faq-panel p {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-mid);
}

/* ── BLOG CHRONICLES ── */
.sec-blog {
  padding: var(--pad) 0;
  background: var(--cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.blog-card {
  background: var(--cream-soft);
  border: 1px solid var(--bdr);
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--med) var(--ease), border-color var(--med) var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--bdr-gold);
}
.blog-img {
  height: 220px;
  overflow: hidden;
  background: var(--cream-dark);
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.blog-card:hover .blog-img img {
  transform: scale(1.04);
}
.blog-content {
  padding: 24px;
}
.blog-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-content h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.blog-content p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--fast);
}
.blog-card:hover .blog-link {
  color: var(--gold);
}

.press-marquee {
  margin-top: 64px;
  border-top: 1px solid var(--bdr);
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.press-title {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.press-logos span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  opacity: 0.7;
  transition: opacity var(--fast);
}
.press-logos span:hover {
  opacity: 1;
}

/* ── INSTAGRAM GRID ── */
.sec-instagram {
  padding: var(--pad) 0;
  background: var(--cream-soft);
  border-top: 1px solid var(--bdr);
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.insta-item {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--bdr);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s var(--ease);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 38, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  z-index: 2;
  transition: opacity var(--fast) var(--ease);
}
.insta-overlay svg {
  width: 24px;
  height: 24px;
}
.insta-item:hover img {
  transform: scale(1.04);
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ── MODERN SLIDE CART DRAWER ── */
.cart-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 38, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--med) var(--ease), visibility var(--med);
}
.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  border-left: 1px solid var(--bdr-gold);
  box-shadow: -20px 0 60px rgba(3, 15, 38, 0.15);
  z-index: 8001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--med) var(--ease);
}
.cart-drawer-backdrop.open .cart-drawer {
  transform: translateX(0);
}
.cart-drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cd-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cd-title-row h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
}
.cd-count-badge {
  background: var(--navy);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.cart-drawer-close {
  cursor: pointer;
  color: var(--navy);
  transition: color var(--fast);
}
.cart-drawer-close:hover {
  color: var(--gold);
}

.cart-free-shipping-notice {
  background: var(--gold-alpha);
  border-bottom: 1px solid var(--bdr-gold);
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 600;
}
.cart-free-shipping-notice svg {
  width: 15px; height: 15px;
  color: var(--gold);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cart-empty-message {
  text-align: center;
  padding: 48px 0;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cart-empty-message svg {
  width: 36px; height: 36px;
  color: var(--parchment);
}
.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--gold);
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background var(--fast);
}
.btn-gold-sm:hover {
  background: var(--gold-light);
}

/* Cart Item Cards */
.cart-item-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--bdr);
}
.cart-item-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
  background: var(--cream-dark);
  border: 1px solid var(--bdr);
}
.cart-item-details {
  flex: 1;
}
.cart-item-details h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 4px;
}
.cart-item-price {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.cart-item-qty button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--bdr);
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--fast);
}
.cart-item-qty button:hover {
  border-color: var(--gold);
  background: #fff;
}
.cart-item-qty span {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  min-width: 16px;
  text-align: center;
}
.cart-item-remove {
  color: var(--ink-mute);
  cursor: pointer;
  transition: color var(--fast);
  padding: 4px;
}
.cart-item-remove:hover {
  color: #ff6b6b;
}

/* Cart Offers */
.cart-offers-wrap {
  background: var(--cream-soft);
  border: 1px solid var(--bdr);
  border-radius: 18px;
  padding: 16px;
}
.cart-offers-wrap h4 {
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.offer-card {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offer-card img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--bdr);
}
.offer-details {
  flex: 1;
}
.offer-details h5 {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
}
.offer-price {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}
.btn-add-offer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--navy);
  color: #fff;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--fast);
}
.btn-add-offer:hover {
  background: var(--gold);
}

/* Cart Recently Viewed */
.cart-recently-viewed h4 {
  font-family: var(--serif);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}
.recent-view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.recent-view-card {
  background: var(--cream-soft);
  border: 1px solid var(--bdr);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--fast);
}
.recent-view-card:hover {
  transform: translateY(-2px);
  border-color: var(--bdr-gold);
}
.recent-view-card img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.cart-drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--bdr);
  background: var(--cream-soft);
}
.cart-coupon-wrap {
  margin-bottom: 18px;
}
.coupon-input-row {
  display: flex;
  gap: 10px;
}
.coupon-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  background: #fff;
  font-size: 12.5px;
  color: var(--navy);
  font-family: var(--sans);
}
.coupon-input-row input:focus {
  outline: none;
  border-color: var(--gold);
}
.coupon-input-row button {
  padding: 10px 18px;
  background: var(--navy);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--fast);
}
.coupon-input-row button:hover {
  background: var(--gold);
}
.coupon-message {
  display: block;
  font-size: 11px;
  margin-top: 6px;
  font-weight: 600;
}
.coupon-message.success {
  color: #2e7d32;
}
.coupon-message.error {
  color: #c62828;
}

.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--bdr);
  padding-bottom: 16px;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-mid);
}
.coupon-discount-row {
  color: #2e7d32;
  font-weight: 600;
}
.free-shipping-text {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}
.total-row {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.btn-checkout {
  width: 100%;
  padding: 14px 0;
  background: var(--gold);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background var(--fast), transform var(--med) var(--ease);
}
.btn-checkout:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-checkout svg {
  width: 14px; height: 14px;
}

/* ── MOBILE STICKY BOTTOM MENU ── */
.mobile-sticky-menu {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: var(--cream);
  border-top: 1px solid var(--bdr-gold);
  display: none;
  align-items: center;
  justify-content: space-around;
  z-index: 5900;
  box-shadow: 0 -4px 16px rgba(3, 15, 38, 0.05);
}
.msm-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  gap: 4px;
  cursor: pointer;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--sans);
  transition: color var(--fast);
}
.msm-item:hover, .msm-item:focus {
  color: var(--gold);
}
.msm-item svg {
  width: 20px;
  height: 20px;
  color: inherit;
}
.msm-cart-badge-wrap {
  position: relative;
}
.msm-cart-badge-wrap .cart-badge {
  position: absolute;
  top: -6px; right: -8px;
  background: var(--gold);
  color: #fff;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  min-width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-floating-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 5800;
  transition: transform var(--med) var(--ease), background var(--fast);
}
.whatsapp-floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  background: #20ba59;
}
.whatsapp-floating-btn svg {
  color: #fff;
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sec-divisions .divisions-grid {
    grid-template-columns: 1fr;
  }
  .sec-divisions .div-card {
    height: 320px;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px; /* Space for mobile sticky menu */
  }
  .mobile-sticky-menu {
    display: flex;
  }
  .whatsapp-floating-btn {
    bottom: 84px; /* Shift up so it doesn't block bottom navigation */
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ── BEST SELLERS SECTION ── */
.sec-best-sellers {
  padding: var(--pad) 0 60px;
  background: var(--cream-soft);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.best-badge {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: transparent !important;
  font-weight: 700 !important;
}

/* ── LOADING SKELETONS (SHIMMER) ── */
.skeleton-card {
  pointer-events: none;
}
.skeleton-card .prd-img-wrap {
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.skeleton-card .prd-img-wrap::after,
.skeleton-card .prd-name::after,
.skeleton-card .prd-cat::after,
.skeleton-card .prd-stars::after,
.skeleton-card .prd-prices::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.5s infinite;
}
.skeleton-card .prd-name,
.skeleton-card .prd-cat,
.skeleton-card .prd-stars,
.skeleton-card .prd-prices {
  background: var(--cream-dark);
  color: transparent !important;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.skeleton-card .prd-cat {
  width: 50%;
  height: 12px;
  margin-bottom: 8px;
}
.skeleton-card .prd-name {
  width: 90%;
  height: 18px;
  margin-bottom: 12px;
}
.skeleton-card .prd-stars {
  width: 40%;
  height: 12px;
  margin-bottom: 16px;
}
.skeleton-card .prd-prices {
  width: 60%;
  height: 16px;
}
.skeleton-card .prd-add {
  background: var(--cream-dark) !important;
  border-color: transparent !important;
  color: transparent !important;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

/* ── CARD 3D TILT EFFECT ── */
.prd-tilt, .div-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s ease;
}
.prd-tilt *, .div-card * {
  transform: translateZ(10px); /* Lift elements off card flat plane */
}

/* ── BUTTON CLICK RIPPLE EFFECT ── */
.ripple-btn {
  position: relative;
  overflow: hidden;
}
.btn-gold, .btn-gold-lg, .btn-appoint, .btn-appoint-lg, .prd-add, .fc-add, .btn-checkout {
  position: relative;
  overflow: hidden;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}
@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── SMOOTH AMBIENT GLOW LIGHT TRAIL ── */
html {
  --mx: 50%;
  --my: 50%;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(400px circle at var(--mx) var(--my), rgba(197, 160, 89, 0.035), transparent 80%);
  z-index: 9998;
  pointer-events: none;
  mix-blend-mode: screen;
}

/* ── HERO SLIDESHOW ── */
.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 5;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.01);
  transition: transform 7s ease-out;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1.06);
}
.hero-slide-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all var(--fast) var(--ease);
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
}

/* Experience switch section removed from HTML - styles cleaned up */

/* ══════════════════════════════════════════════
   SHOP PAGE SPECIFIC STYLES
   ══════════════════════════════════════════════ */

/* 1. Shop Hero Header */
.shop-hero {
  position: relative;
  height: 280px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 92px; /* Account for floating header */
}
.shop-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(40%) blur(2px);
}
.shop-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(3, 15, 38, 0.4), var(--navy));
  z-index: 1;
}
.shop-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}
.shop-hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.shop-hero-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.shop-hero-title em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--gold-light);
}
.shop-hero-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-mute);
  max-width: 600px;
  margin: 0 auto;
}

/* 2. Shop Workspace Layout */
.shop-workspace {
  background: var(--cream);
  padding: 60px 0 100px;
}
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* 3. Shop Sidebar Filters */
.shop-sidebar {
  position: sticky;
  top: 110px;
  background: rgba(251, 251, 249, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--bdr);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}
.shop-sidebar::-webkit-scrollbar {
  width: 4px;
}
.shop-sidebar::-webkit-scrollbar-thumb {
  background: var(--parchment);
  border-radius: 4px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}
.filter-group-title {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Search input */
.filter-search-box {
  position: relative;
}
.filter-search-box input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 10px 14px 10px 38px;
  font-size: 13.5px;
  color: var(--ink);
  transition: border-color var(--fast) var(--ease);
}
.filter-search-box input:focus {
  border-color: var(--gold);
}
.filter-search-box i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--ink-mute);
}

/* Category lists */
.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.filter-btn-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  font-size: 13.5px;
  padding: 6px 8px;
  border-radius: 6px;
  color: var(--ink-mid);
  transition: all var(--fast) var(--ease);
  cursor: pointer;
}
.filter-btn-cat:hover {
  background: var(--cream-soft);
  color: var(--navy);
}
.filter-btn-cat.active {
  background: var(--gold-alpha);
  color: var(--gold);
  font-weight: 600;
}
.filter-cat-count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  background: var(--cream-dark);
  padding: 2px 6px;
  border-radius: 20px;
}
.filter-btn-cat.active .filter-cat-count {
  background: var(--gold);
  color: #fff;
}

/* Price range inputs & slider */
.price-slider-wrap {
  padding: 0 6px;
}
.price-inputs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}
.price-inputs-row input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 6px;
  padding: 8px;
  font-size: 12px;
  text-align: center;
  color: var(--ink);
}
.price-inputs-row span {
  font-size: 12px;
  color: var(--ink-mute);
}
.price-slider-native {
  width: 100%;
  margin-top: 10px;
  accent-color: var(--gold);
}

.price-brackets {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
}
.price-bracket-btn {
  text-align: left;
  font-size: 12.5px;
  color: var(--ink-mid);
  padding: 4px 6px;
  border-radius: 4px;
  transition: all var(--fast);
  cursor: pointer;
}
.price-bracket-btn:hover {
  color: var(--gold);
  background: var(--cream-soft);
}
.price-bracket-btn.active {
  color: var(--gold);
  font-weight: 600;
}

/* Star rating filters */
.rating-filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-mid);
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--fast);
}
.rating-filter-item:hover {
  color: var(--navy);
}
.rating-filter-item.active {
  color: var(--gold);
  font-weight: 600;
}
.rating-filter-item span.stars-gold {
  color: var(--gold);
  font-size: 14px;
}

/* Clear filters button */
.btn-reset-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--cream-dark);
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  color: var(--ink-mid);
  font-weight: 500;
  transition: all var(--fast) var(--ease);
  cursor: pointer;
}
.btn-reset-filters:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* 4. Right Content Area */
.shop-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.shop-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--bdr);
  padding-bottom: 14px;
}
.shop-results-count {
  font-size: 13.5px;
  color: var(--ink-mute);
  font-family: var(--mono);
}
.shop-sorting-widget {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-sorting-widget label {
  font-size: 13px;
  color: var(--ink-mid);
}
.shop-sort-select {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}
.shop-sort-select:focus {
  border-color: var(--gold);
}

/* Active tags */
.active-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.filter-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--gold-alpha);
  color: var(--navy-med);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all var(--fast);
}
.filter-tag button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  transition: color var(--fast);
  cursor: pointer;
}
.filter-tag button:hover {
  color: var(--gold);
}
.filter-tag button i {
  width: 12px;
  height: 12px;
}

/* Grid areas */
.shop-grid-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  min-height: 400px;
}

.prd-quick-view-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 38, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--fast) var(--ease);
  z-index: 5;
}
.prd:hover .prd-quick-view-overlay {
  opacity: 1;
}
.btn-quick-view-trigger {
  background: rgba(251, 251, 249, 0.95);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(3, 15, 38, 0.15);
  transform: translateY(10px);
  transition: transform var(--fast) var(--ease), background var(--fast);
}
.prd:hover .btn-quick-view-trigger {
  transform: translateY(0);
}
.btn-quick-view-trigger:hover {
  background: var(--gold);
  color: #fff;
}

/* Empty State */
.shop-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border: 1px dashed var(--bdr);
  border-radius: 16px;
  color: var(--ink-mute);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.shop-empty-state i {
  width: 48px;
  height: 48px;
  color: var(--parchment);
}
.shop-empty-state h3 {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
}
.shop-empty-state p {
  font-size: 13.5px;
  max-width: 320px;
  margin: 0 auto;
}

/* Mobile Filter Bar & Drawer */
.mobile-filter-bar {
  display: none;
  background: #fff;
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 12px 20px;
  position: sticky;
  top: 72px;
  z-index: 100;
}
.btn-mobile-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--navy);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.mobile-filter-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 38, 0.6);
  z-index: 8000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--fast) var(--ease), visibility var(--fast);
}
.mobile-filter-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.mobile-filter-drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--cream);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform var(--med) var(--ease);
}
.mobile-filter-drawer-backdrop.open .mobile-filter-drawer {
  transform: translateY(0);
}
.mobile-filter-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid var(--bdr);
}
.mobile-filter-drawer-header h3 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
}
.mobile-filter-drawer-close {
  color: var(--ink);
  cursor: pointer;
}
.mobile-filter-drawer-body {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* 5. Quick View Modal */
.quickview-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 15, 38, 0.7);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--med) var(--ease), visibility var(--med);
  padding: 20px;
}
.quickview-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.quickview-modal-content {
  background: var(--cream);
  border: 1px solid var(--bdr-gold);
  border-radius: 16px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 50px rgba(3, 15, 38, 0.3);
  transform: scale(0.95) translateY(15px);
  transition: transform var(--med) var(--ease);
}
.quickview-modal-backdrop.open .quickview-modal-content {
  transform: scale(1) translateY(0);
}
.quickview-close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #fff;
  border: 1px solid var(--bdr);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all var(--fast);
  cursor: pointer;
  z-index: 10;
}
.quickview-close-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.qv-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 30px;
  padding: 40px;
}
.qv-gallery {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 350px;
}
.qv-gallery img {
  max-height: 320px;
  object-fit: contain;
  transition: transform var(--med);
}
.qv-gallery:hover img {
  transform: scale(1.05);
}
.qv-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.qv-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.qv-cat {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.qv-title {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--navy);
  line-height: 1.2;
}
.qv-rating-stars {
  color: var(--gold);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.qv-rating-stars span {
  color: var(--ink-mute);
  font-size: 12px;
}
.qv-pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--mono);
}
.qv-price-new {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
}
.qv-price-old {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--ink-mute);
}
.qv-desc {
  font-size: 13.5px;
  color: var(--ink-mid);
  line-height: 1.6;
}
.qv-specs {
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.qv-spec-row {
  display: flex;
  font-size: 12.5px;
}
.qv-spec-label {
  width: 100px;
  font-weight: 600;
  color: var(--ink-mid);
}
.qv-spec-val {
  color: var(--ink-mute);
}

.qv-actions-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}
.qv-qty-widget {
  display: flex;
  align-items: center;
  border: 1px solid var(--bdr);
  border-radius: 8px;
  height: 48px;
  overflow: hidden;
  background: #fff;
}
.qv-qty-btn {
  width: 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  background: var(--cream-soft);
  transition: background var(--fast);
  cursor: pointer;
}
.qv-qty-btn:hover {
  background: var(--cream-dark);
}
.qv-qty-val {
  width: 40px;
  text-align: center;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}
.qv-btn-add {
  flex: 1;
  height: 48px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--fast) var(--ease);
}
.qv-btn-add:hover {
  background: var(--gold);
}

/* Skeleton styles defined above at line ~3274 */

/* Responsive Overrides */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
  .shop-grid-area {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    height: 200px;
    margin-top: 72px;
  }
  .shop-hero-title {
    font-size: 28px;
  }
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    display: none; /* Hidden on mobile, using drawer */
  }
  .mobile-filter-bar {
    display: block;
  }
  .shop-grid-area {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .shop-top-bar {
    padding: 0 20px 10px;
  }
  .active-filters-list {
    padding: 0 20px;
  }
  .qv-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }
  .qv-gallery {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .shop-grid-area {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════
   PREMIUM SHOP ENHANCEMENTS
   ══════════════════════════════════════════════ */

/* Dynamic Collection Banner */
.collection-banner {
  background: var(--navy);
  border: 1px solid var(--bdr-gold);
  border-radius: 16px;
  padding: 36px 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  box-shadow: 0 4px 20px rgba(3, 15, 38, 0.05);
}
.collection-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  filter: blur(1px);
  transition: background-image 0.5s ease-in-out;
}
.collection-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3, 15, 38, 0.95) 30%, rgba(3, 15, 38, 0.4) 100%);
  z-index: 1;
}
.collection-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
}
.collection-banner-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.collection-banner-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: #fff;
}
.collection-banner-title em {
  font-style: italic;
  color: var(--gold-light);
}
.collection-banner-desc {
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.6;
}

/* Layout Toggles and Toolbar */
.toolbar-layout-toggles {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-layout-toggle {
  background: #fff;
  border: 1px solid var(--bdr);
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  transition: all var(--fast) var(--ease);
  cursor: pointer;
}
.btn-layout-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-layout-toggle.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.btn-layout-toggle i {
  width: 16px;
  height: 16px;
}

.shop-sorting-widget select.shop-page-size-select {
  margin-right: 12px;
}

/* List View Mode Styling */
.shop-grid-area.list-view {
  grid-template-columns: 1fr !important;
  gap: 20px;
}
.shop-grid-area.list-view .prd {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: 16px;
  height: auto;
  transform: none !important; /* Disable 3D tilt on List view to keep it clean */
}
.shop-grid-area.list-view .prd-img-wrap {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--cream-soft);
  margin-bottom: 0;
}
.shop-grid-area.list-view .prd-body {
  flex: 1;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-grid-area.list-view .prd-name {
  font-size: 19px;
  margin-bottom: 2px;
}
.shop-grid-area.list-view .prd-stars {
  margin-bottom: 4px;
}
.shop-grid-area.list-view .prd-foot {
  margin-top: 8px;
  border-top: none;
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-grid-area.list-view .prd-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

/* Stock and Discount indicators */
.prd-stock-status {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.prd-stock-status.in-stock { color: #2e7d32; }
.prd-stock-status.low-stock { color: #ef6c00; }
.prd-stock-status.out-of-stock { color: #c62828; }

.prd-discount-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #c62828;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 4;
  box-shadow: 0 2px 6px rgba(198, 40, 40, 0.2);
}

/* Recently Viewed bottom section */
.sec-recently-viewed {
  border-top: 1px solid var(--bdr);
  background: var(--cream-soft);
  padding: 80px 0 100px;
}
.sec-recently-viewed .sec-header {
  margin-bottom: 40px;
}
.recent-viewed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Sentinel styling for infinite scroll */
#scrollSentinel {
  width: 100%;
  height: 20px;
  margin-top: 20px;
  grid-column: 1 / -1;
}

@media (max-width: 1024px) {
  .recent-viewed-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .shop-grid-area.list-view .prd {
    flex-direction: column;
    align-items: stretch;
  }
  .shop-grid-area.list-view .prd-img-wrap {
    width: 100%;
    height: 240px;
  }
  .recent-viewed-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }
  .sec-recently-viewed .sec-header {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .recent-viewed-grid {
    grid-template-columns: 1fr;
  }
}


/* ══════════════════════════════════════════════
   FINISHING TOUCHES — Polish & Refinement
   ══════════════════════════════════════════════ */

/* ── Focus Accessibility Rings ── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ── Hero Slide Cross-Fade (smoother than cut) ── */
.hero-slide {
  transition: opacity 1s ease, transform 1s ease;
}
.hero-slide:not(.active) {
  pointer-events: none;
}

/* ── Product Image Hover Zoom — smoother curve ── */
.prd-img-wrap img.prd-actual-img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.prd:hover .prd-actual-img {
  transform: scale(1.06);
}

/* ── Button Active Press Feel ── */
.btn-gold:active,
.btn-gold-lg:active,
.prd-add:active,
.btn-checkout:active,
.btn-add-offer:active {
  transform: scale(0.96);
  transition: transform 80ms ease;
}

/* ── Cart Empty State Improvement ── */
.cart-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 48px 24px;
  text-align: center;
}
.cart-empty-message i {
  width: 48px;
  height: 48px;
  color: var(--ink-mute);
  opacity: 0.5;
}
.cart-empty-message p {
  font-size: 14px;
  color: var(--ink-mute);
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* ── Coupon Input Polish ── */
.coupon-input-row input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-alpha);
}
.coupon-message {
  font-family: var(--mono);
  font-size: 11.5px;
  margin-top: 6px;
  display: block;
  min-height: 18px;
}
.coupon-message.success {
  color: #2d7a45;
}
.coupon-message.error {
  color: #c0392b;
}

/* ── Footer Link Hover Underline Animation ── */
.foot-col ul li a {
  position: relative;
  display: inline-block;
}
.foot-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.foot-col ul li a:hover::after {
  width: 100%;
}

/* ── Mobile Toast Repositioning (above bottom nav) ── */
@media (max-width: 768px) {
  .lux-toast {
    bottom: 80px;
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

/* ── Mobile Nav Active Item Indicator ── */
.msm-item.active-page {
  color: var(--gold);
}
.msm-item.active-page i {
  color: var(--gold);
}

/* ── Smooth Cart Drawer Body Scroll ── */
.cart-drawer-body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* ── Prd Card Wishlist Hover ── */
.prd-wish {
  transition: transform 0.2s ease, color 0.2s ease;
}
.prd-wish:hover {
  transform: scale(1.2);
  color: #e74c3c;
}
.prd-wish:hover i {
  fill: #e74c3c;
  stroke: #e74c3c;
}

/* ── Better Nav Link Transitions ── */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* ── Cart Item Remove Button Hover ── */
.cart-item-remove:hover {
  color: #e74c3c !important;
  transform: scale(1.1);
}

/* ── FAQ Trigger Icon Rotation ── */
.faq-item .faq-trigger i {
  transition: transform 0.3s var(--ease);
}
.faq-item.active .faq-trigger i {
  transform: rotate(45deg);
}

/* ── Hero Particle Canvas — no pointer events ── */
#heroParticles {
  pointer-events: none;
}

/* ── Preloader Gone Transition ── */
.preloader.gone {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

/* ── Selection Color ── */
::selection {
  background: var(--gold-alpha);
  color: var(--navy);
}

/* ══════════════════════════════════════════════
   SHOP PAGE — FINAL PREMIUM POLISH
   ══════════════════════════════════════════════ */

/* Collection banner smooth fade on category switch */
.collection-banner {
  transition: opacity 0.25s ease;
}

/* Product card entry animation */
@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.prd:not(.skeleton-card) {
  animation: card-in 0.35s ease both;
}

/* Staggered card animation delay */
.prd:nth-child(2)  { animation-delay: 0.04s; }
.prd:nth-child(3)  { animation-delay: 0.08s; }
.prd:nth-child(4)  { animation-delay: 0.12s; }
.prd:nth-child(5)  { animation-delay: 0.16s; }
.prd:nth-child(6)  { animation-delay: 0.20s; }
.prd:nth-child(7)  { animation-delay: 0.24s; }
.prd:nth-child(8)  { animation-delay: 0.28s; }
.prd:nth-child(n+9){ animation-delay: 0.30s; }

/* Sold-out card dimming */
.prd:has(.prd-add[disabled]) {
  opacity: 0.75;
}
.prd-add[disabled] {
  background: var(--cream-dark) !important;
  color: var(--ink-mute) !important;
  border-color: var(--bdr) !important;
  cursor: not-allowed !important;
}
.prd-add[disabled]:hover {
  transform: none !important;
}

/* Wishlist active heart pulse */
@keyframes heart-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.4); }
  70%  { transform: scale(0.88); }
  100% { transform: scale(1); }
}
.prd-wish.active i {
  animation: heart-pop 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* Empty state entrance animation */
@keyframes empty-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.shop-empty-state {
  animation: empty-in 0.4s ease both;
}

/* Sidebar filter transition when moving to mobile drawer */
.shop-sidebar {
  transition: box-shadow 0.25s ease;
}
.shop-sidebar:hover {
  box-shadow: 0 4px 24px rgba(3,15,38,0.06);
}

/* Smooth opacity for recently viewed section */
.sec-recently-viewed {
  transition: opacity 0.3s ease;
}

/* Category button active state shimmer */
.filter-btn-cat.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
  box-shadow: 0 2px 8px rgba(3,15,38,0.15);
}

/* Filter count badge */
.filter-cat-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  background: var(--cream-dark);
  padding: 2px 7px;
  border-radius: 20px;
  color: var(--ink-mid);
  min-width: 24px;
  text-align: center;
}
.filter-btn-cat.active .filter-cat-count {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}

/* Price inputs polish */
.price-inputs-row input:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px var(--gold-alpha);
  outline: none;
}

/* Sort select hover */
.shop-sort-select:hover {
  border-color: var(--gold);
}

/* Toolbar responsive tweak */
@media (max-width: 640px) {
  .shop-top-bar {
    flex-wrap: wrap;
    gap: 10px;
  }
  .shop-sorting-widget {
    flex-wrap: wrap;
    gap: 6px;
  }
  .shop-sorting-widget label {
    display: none;
  }
}

