/* ============================================================
   WAN ARDÓGY elegance — style.css
   Paleta: Preto · Roxo Royal · Magenta · Dourado
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Montserrat:wght@200;300;400;500;600&display=swap');

/* ─── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Palette */
  --black:      #000000;
  --deep:       #0a0008;
  --card-bg:    #0f0012;
  --surface:    #140018;
  --purple:     #5534ec;
  --purple-lt:  #c5a1ec;
  --magenta:    #f77ff5;
  --burgundy:   #501b1a;
  --gold:       #c9a84c;
  --gold-lt:    #e8c96a;
  --white:      #ffffff;
  --off-white:  #f5f0fa;
  --muted:      #8a7a9a;
  --border:     rgba(197,161,236,0.18);
  --glow-purple: rgba(85,52,236,0.25);
  --glow-magenta: rgba(247,127,245,0.2);

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Montserrat', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background: var(--black);
  color: var(--off-white);
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────────── */
#cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 99999999 !important;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--magenta);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  box-shadow: 0 0 10px var(--magenta), 0 0 20px rgba(247,127,245,0.4);
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 99999998 !important;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--purple-lt);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.3s, height 0.3s, border-color 0.3s;
}
body.cursor-hover #cursor-dot {
  width: 14px; height: 14px; background: var(--gold-lt);
  box-shadow: 0 0 16px var(--gold), 0 0 32px rgba(201,168,76,0.4);
}
body.cursor-hover #cursor-ring { width: 54px; height: 54px; border-color: var(--gold); }

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple), var(--magenta));
  border-radius: 2px;
}

/* ─── LOADER ─────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: #0a0008 !important;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo-img {
  width: 120px; height: 120px; object-fit: contain;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(247,127,245,0.5)); transform: scale(1); }
  50%       { filter: drop-shadow(0 0 24px rgba(85,52,236,0.7));   transform: scale(1.04); }
}
.loader-brand {
  font-family: var(--ff-serif);
  font-size: 1.5rem; font-weight: 300;
  letter-spacing: 0.45em; text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255,255,255,0.18);
}
.loader-brand span {
  color: #c5a1ec;
  text-shadow: 0 0 16px rgba(197,161,236,0.45);
}
.loader-sub {
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.4em; text-transform: lowercase;
  color: rgba(245,240,250,0.56);
  margin-top: -16px;
}
.loader-bar-wrap {
  width: 160px; height: 1px;
  background: rgba(197,161,236,0.15); overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--purple), var(--magenta), var(--gold));
  animation: loadBar 1.9s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loadBar { to { width: 100%; } }

/* ─── REGION / LANGUAGE CONFIRMATION ─────────────────────────── */
.region-modal-overlay {
  position: fixed; inset: 0; z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(0,0,0,0.72);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.region-modal-overlay.open { opacity: 1; visibility: visible; }
.region-modal {
  position: relative;
  width: min(350px, 100%);
  background: rgba(12, 0, 16, 0.9);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.48);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.35s ease;
}
.region-modal-overlay.open .region-modal { transform: translateY(0) scale(1); }
.region-close {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  color: rgba(255,255,255,0.68);
  font-size: 1.15rem;
  line-height: 1;
  cursor: none;
  transition: color 0.3s, border-color 0.3s, transform 0.3s;
}
.region-close:hover {
  color: var(--magenta);
  border-color: rgba(247,127,245,0.45);
  transform: rotate(90deg);
}
.region-logo {
  width: 54px; height: 54px; object-fit: contain;
  display: block; margin-bottom: 18px;
  filter: drop-shadow(0 0 10px rgba(197,161,236,0.28));
}
.region-kicker {
  font-size: 0.5rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: #d7bcff;
  margin-bottom: 9px;
}
.region-title {
  font-family: var(--ff-serif);
  font-size: 1.55rem; font-weight: 300;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 12px;
}
.region-copy {
  font-size: 0.7rem; font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.66);
  margin-bottom: 18px;
}
.region-options {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 18px;
}
.region-option {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.13);
  color: #ffffff;
  font-family: var(--ff-sans);
  text-align: left;
  cursor: none;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.region-option:hover,
.region-option.active {
  border-color: rgba(232,214,255,0.58);
  background: rgba(85,52,236,0.28);
  transform: translateY(-1px);
}
.region-option strong {
  display: block;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 4px;
}
.region-option small {
  display: block;
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.58);
}
.region-check {
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #ffffff;
  font-size: 0.62rem;
  opacity: 0; transform: scale(0.8);
  transition: opacity 0.25s, transform 0.25s;
}
.region-option.active .region-check { opacity: 1; transform: scale(1); }
.region-confirm,
.region-secondary {
  width: 100%;
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  cursor: none;
}
.region-confirm {
  padding: 14px 18px;
  border: none;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #ffffff;
  font-size: 0.56rem; font-weight: 600;
  box-shadow: 0 10px 28px rgba(85,52,236,0.28);
  transition: transform 0.3s, box-shadow 0.3s;
}
.region-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(247,127,245,0.34);
}
.region-secondary {
  margin-top: 11px;
  padding: 6px 0;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.58);
  font-size: 0.5rem; font-weight: 400;
  transition: color 0.3s;
}
.region-secondary:hover { color: #ffffff; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
nav.scrolled {
  background: rgba(10,0,8,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  height: 62px;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 46px; width: auto; object-fit: contain;
  transition: height var(--transition), filter var(--transition);
  filter: drop-shadow(0 0 8px rgba(247,127,245,0.3));
}
nav.scrolled .nav-logo-img { height: 38px; }
.nav-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 14px rgba(197,161,236,0.6));
}

.nav-links {
  display: flex; gap: 40px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  color: rgba(245,240,250,0.65);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(90deg, var(--purple-lt), var(--magenta));
  transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--white); }

.nav-icons { display: flex; align-items: center; gap: 22px; }
.nav-icon-btn {
  background: none; border: none; cursor: none;
  color: rgba(245,240,250,0.6);
  transition: color var(--transition), transform var(--transition);
  position: relative;
}
.nav-icon-btn:hover { color: var(--purple-lt); transform: scale(1.1); }

.cart-badge {
  position: absolute; top: -6px; right: -8px;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: white; font-size: 0.52rem; font-weight: 600;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(0);
  transition: opacity 0.3s, transform 0.3s;
}
.cart-badge.visible { opacity: 1; transform: scale(1); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: none; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--off-white); transition: all 0.3s; }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex; align-items: center; /* Center vertically to pull away from header */
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('region_lounge_bg.jpg') 58% center / cover no-repeat;
  transform: none;
  transition: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.78) 0%,
    rgba(0,0,0,0.5) 34%,
    rgba(0,0,0,0.16) 68%,
    rgba(0,0,0,0.32) 100%
  ),
  linear-gradient(
    to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.22) 45%,
    rgba(0,0,0,0.08) 100%
  );
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
  display: none;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: rgba(85,52,236,0.25);
  top: 10%; right: 5%;
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 280px; height: 280px;
  background: rgba(247,127,245,0.2);
  top: 50%; right: 20%;
  animation-delay: 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 2;
  padding: 15% 8% 0; /* Add top padding to push it down further if needed, but align-items center handles it */
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 2.1s forwards;
}
.hero-eyebrow::before {
  content: '✦'; color: var(--magenta); font-size: 0.7rem;
}
.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
  margin-bottom: 26px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.9s 2.3s forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-lt), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 0.8rem; font-weight: 300;
  letter-spacing: 0.06em; line-height: 1.9;
  color: rgba(245,240,250,0.6);
  margin-bottom: 44px; max-width: 440px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 2.5s forwards;
}
.hero-cta-wrap {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.9s 2.7s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  color: white;
  font-family: var(--ff-sans); font-size: 0.62rem;
  font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: none;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 30px rgba(85,52,236,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--gold) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(247,127,245,0.4);
}
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.62rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,250,0.65);
  text-decoration: none; background: none; border: none; cursor: none;
  transition: color var(--transition), gap var(--transition);
}
.btn-ghost:hover { color: var(--purple-lt); gap: 14px; }

.hero-scroll {
  position: absolute; bottom: 40px; right: 8%;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2; opacity: 0;
  animation: fadeIn 1s 3.2s forwards;
}
.hero-scroll span {
  font-size: 0.52rem; font-weight: 400; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(245,240,250,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--purple-lt), transparent);
  animation: scrollPulse 2.2s 3.5s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ─── MARQUEE ─────────────────────────────────────────────────── */
.marquee-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 56px;
  animation: marqueeScroll 24s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--purple-lt);
  flex-shrink: 0; display: flex; align-items: center; gap: 56px;
}
.marquee-item::after { content: '✦'; font-size: 0.5rem; color: var(--magenta); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── SECTION COMMONS ─────────────────────────────────────────── */
section { padding: 100px 8%; }

.section-label {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 16px;
}
.section-label::before {
  content: ''; display: block;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--white); margin-bottom: 16px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-lt), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-sub {
  font-size: 0.78rem; font-weight: 300;
  line-height: 1.85; color: var(--muted); max-width: 460px;
}

/* ─── CATEGORIES ─────────────────────────────────────────────── */
.categories-section { background: var(--deep); padding-top: 100px; padding-bottom: 100px; }
.categories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px; margin-top: 56px;
}
.cat-card { position: relative; overflow: hidden; cursor: none; }
.cat-card:first-child { grid-row: 1 / 3; min-height: 580px; }
.cat-card:not(:first-child) { min-height: 265px; }

.cat-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.9) brightness(0.9);
}
.cat-card:hover .cat-img { transform: scale(1); filter: saturate(1.05) brightness(0.95); }

.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.18) 50%,
    transparent 100%
  );
  transition: background var(--transition);
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.24) 55%,
    transparent 100%
  );
}
/* Neutral border on hover */
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}
.cat-card:hover::after { border-color: rgba(197,161,236,0.3); }

.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px 26px;
  transform: translateY(8px);
  transition: transform var(--transition);
}
.cat-card:hover .cat-info { transform: translateY(0); }
.cat-tag {
  font-size: 0.52rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--purple-lt); margin-bottom: 8px;
}
.cat-name {
  font-family: var(--ff-serif); font-size: 1.7rem; font-weight: 300;
  color: var(--white); margin-bottom: 14px;
}
.cat-card:first-child .cat-name { font-size: 2.3rem; }
.cat-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,250,0.65); text-decoration: none;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, color 0.3s, gap 0.3s;
}
.cat-card:hover .cat-link { opacity: 1; transform: translateY(0); }
.cat-link:hover { color: var(--magenta); gap: 14px; }

/* ─── PRODUCTS ───────────────────────────────────────────────── */
.products-section { background: var(--card-bg); }

.products-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 24px; flex-wrap: wrap;
}
.filter-tabs {
  display: flex; gap: 3px;
  background: rgba(197,161,236,0.06);
  border: 1px solid var(--border);
  padding: 4px;
}
.filter-tab {
  padding: 9px 22px;
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: none; border: none; cursor: none;
  color: var(--muted);
  transition: background 0.3s, color 0.3s;
}
.filter-tab.active {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: var(--white);
}
.filter-tab:hover:not(.active) { color: var(--purple-lt); }

.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative; cursor: none;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.22);
}
.product-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 3/4;
  background: var(--card-bg);
}
.product-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.88);
}
.product-card:hover .product-img { transform: scale(1); filter: saturate(1); }

.product-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 5px;
}
.badge {
  display: inline-block; padding: 4px 10px;
  font-size: 0.48rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
}
.badge-new {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: white;
}
.badge-sale { background: var(--burgundy); color: white; }

.product-actions {
  position: absolute; right: 12px; top: 12px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(14px);
  transition: opacity 0.3s, transform 0.3s;
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.action-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(10,0,8,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  cursor: none; display: flex; align-items: center; justify-content: center;
  color: var(--off-white);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.action-btn:hover {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  border-color: transparent; color: white; transform: scale(1.1);
}
.action-btn.liked { color: var(--magenta); border-color: rgba(247,127,245,0.4); }

.quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  color: white;
  font-size: 0.56rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px; border: none; cursor: none;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: linear-gradient(135deg, var(--magenta) 0%, var(--gold) 100%); }

.product-info { padding: 18px 18px 22px; }
.product-brand {
  font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--purple-lt); margin-bottom: 6px;
}
.product-name {
  font-family: var(--ff-serif); font-size: 1.1rem; font-weight: 400;
  color: var(--white); margin-bottom: 12px; line-height: 1.3;
}
.product-price-row { display: flex; align-items: center; gap: 10px; }
.price { font-size: 0.85rem; font-weight: 500; color: var(--off-white); }
.price-old { font-size: 0.75rem; font-weight: 300; color: var(--muted); text-decoration: line-through; }
.stars { display: flex; gap: 2px; margin-left: auto; color: var(--gold); font-size: 0.58rem; }

/* ─── STORY ──────────────────────────────────────────────────── */
.story-section {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 600px; padding: 0; overflow: hidden;
}
.story-img-side { position: relative; overflow: hidden; }
.story-img-side img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 1s ease;
  filter: saturate(0.85) brightness(0.85);
}
.story-section:hover .story-img-side img { transform: scale(1); }
.story-img-side::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.08);
}
.story-text-side {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 10%;
  position: relative;
}
.story-text-side::before {
  content: ''; position: absolute;
  top: 0; right: 0; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(85,52,236,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.story-body {
  font-size: 0.82rem; font-weight: 300;
  line-height: 2; color: var(--muted); margin-bottom: 40px;
}
.story-stats {
  display: flex; gap: 44px; margin-bottom: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.stat-num {
  font-family: var(--ff-serif); font-size: 2.5rem; font-weight: 300;
  background: linear-gradient(135deg, var(--purple-lt), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-label {
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px;
  border: 1px solid var(--purple-lt);
  color: var(--purple-lt); background: none;
  font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; cursor: none; align-self: flex-start;
  position: relative; overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
}
.btn-outline::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  transform: translateX(-101%); transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-outline:hover::before { transform: translateX(0); }
.btn-outline:hover { color: white; border-color: transparent; }
.btn-outline span, .btn-outline svg { position: relative; z-index: 1; }

/* ─── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter-section {
  background: linear-gradient(135deg, var(--purple) 0%, #2a0a8a 50%, var(--burgundy) 100%);
  padding: 80px 8%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.newsletter-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('logo.png') center right / 340px no-repeat;
  opacity: 0.04; pointer-events: none;
}
.newsletter-text .section-label { color: rgba(197,161,236,0.8); }
.newsletter-text .section-label::before { background: rgba(197,161,236,0.5); }
.newsletter-title {
  font-family: var(--ff-serif); font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 300; color: white;
}
.newsletter-form {
  display: flex; gap: 0; flex: 1; max-width: 460px;
  border: 1px solid rgba(197,161,236,0.4);
  background: rgba(255,255,255,0.05); backdrop-filter: blur(10px);
}
.newsletter-input {
  flex: 1; padding: 16px 22px;
  background: transparent; border: none;
  font-family: var(--ff-sans); font-size: 0.75rem; color: white; outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-btn {
  padding: 16px 28px; background: white; border: none; cursor: none;
  font-family: var(--ff-sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple);
  transition: background 0.3s, color 0.3s;
}
.newsletter-btn:hover { background: var(--gold); color: var(--black); }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section { background: var(--deep); overflow: hidden; }
.testimonials-header { text-align: center; margin-bottom: 60px; }
.testimonials-header .section-label { justify-content: center; }
.testimonials-header .section-label::before { display: none; }
.testimonials-header .section-label::after {
  content: ''; display: block; width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--magenta));
}

.testimonials-track { display: flex; gap: 24px; padding-bottom: 16px; }
.testimonial-card {
  flex: 0 0 370px; padding: 38px 34px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.testimonial-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(247,127,245,0.08) 0%, transparent 70%);
}
.testimonial-card:hover {
  box-shadow: 0 0 30px rgba(85,52,236,0.2), 0 16px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px); border-color: rgba(197,161,236,0.3);
}
.quote-icon {
  font-family: var(--ff-serif); font-size: 5rem; font-weight: 300;
  background: linear-gradient(135deg, var(--purple-lt), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; opacity: 0.4; line-height: 0.6; margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 300;
  line-height: 1.78; color: rgba(245,240,250,0.8);
  font-style: italic; margin-bottom: 28px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif); font-size: 1.1rem; color: white;
  box-shadow: 0 4px 14px rgba(85,52,236,0.4);
}
.author-name { font-size: 0.72rem; font-weight: 500; color: var(--white); }
.author-handle { font-size: 0.6rem; color: var(--muted); margin-top: 3px; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 80px 8% 40px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px; padding-bottom: 56px;
  border-bottom: 1px solid var(--border); margin-bottom: 38px;
}
.footer-logo-img {
  height: 80px; width: auto; object-fit: contain; margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(197,161,236,0.3));
}
.footer-tagline {
  font-size: 0.75rem; font-weight: 300;
  line-height: 1.9; color: var(--muted); margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; cursor: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.social-btn:hover {
  border-color: var(--purple-lt); color: var(--purple-lt);
  background: rgba(85,52,236,0.1);
}
.footer-col-title {
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--off-white); margin-bottom: 22px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-links a {
  font-size: 0.74rem; font-weight: 300;
  color: var(--muted); text-decoration: none; cursor: none;
  transition: color 0.3s, padding-left 0.3s;
}
.footer-links a:hover { color: var(--purple-lt); padding-left: 6px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 0.62rem; color: rgba(197,161,236,0.25); font-weight: 300; }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-badge {
  padding: 4px 12px; border: 1px solid var(--border);
  font-size: 0.52rem; font-weight: 500; letter-spacing: 0.12em;
  color: var(--muted);
}

/* ─── CART DRAWER ─────────────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  pointer-events: none;
}
.cart-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 2001;
  width: 420px; max-width: 100vw;
  background: var(--surface);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px 24px; border-bottom: 1px solid var(--border);
}
.cart-title {
  font-family: var(--ff-serif); font-size: 1.4rem; font-weight: 300;
  letter-spacing: 0.08em; color: var(--white);
}
.cart-close {
  background: none; border: none; cursor: none;
  color: var(--muted); font-size: 1.3rem;
  transition: color 0.3s, transform 0.3s;
}
.cart-close:hover { color: var(--magenta); transform: rotate(90deg); }
.cart-body { flex: 1; overflow-y: auto; padding: 24px 32px; }
.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; gap: 16px;
  color: var(--muted); text-align: center;
}
.cart-empty svg { opacity: 0.2; color: var(--purple-lt); }
.cart-empty p { font-size: 0.8rem; font-weight: 300; }
.cart-item {
  display: flex; gap: 16px; padding: 18px 0;
  border-bottom: 1px solid var(--border);
  animation: fadeUp 0.3s ease;
}
.cart-item-img { width: 80px; height: 100px; object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.cart-item-brand { font-size: 0.52rem; color: var(--purple-lt); letter-spacing: 0.2em; text-transform: uppercase; }
.cart-item-name { font-family: var(--ff-serif); font-size: 1rem; font-weight: 400; color: var(--white); }
.cart-item-price { font-size: 0.82rem; font-weight: 500; color: var(--off-white); margin-top: auto; }
.cart-item-controls { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.qty-btn {
  width: 26px; height: 26px; border: 1px solid var(--border);
  background: none; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--off-white); transition: border-color 0.3s, color 0.3s;
  position: relative; z-index: 10; pointer-events: auto;
}
.qty-btn:hover { border-color: var(--purple-lt); color: var(--purple-lt); }
.qty-val { font-size: 0.8rem; min-width: 20px; text-align: center; color: var(--white); }
.cart-item-remove {
  margin-left: auto;
  align-self: flex-start;
  background: var(--deep);
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--muted);
  font-size: 0.9rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  padding: 0;
  position: relative; z-index: 10; pointer-events: auto;
}
.cart-item-remove:hover {
  color: var(--magenta);
  background: rgba(196, 48, 193, 0.1);
  border-color: rgba(196, 48, 193, 0.3);
  transform: rotate(90deg) scale(1.1);
}
.cart-footer { padding: 24px 32px 32px; border-top: 1px solid var(--border); }
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px;
}
.cart-total-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.cart-total-price {
  font-family: var(--ff-serif); font-size: 1.6rem; font-weight: 300;
  background: linear-gradient(135deg, var(--purple-lt), var(--magenta));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.checkout-btn {
  width: 100%; padding: 18px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  color: white; font-family: var(--ff-sans);
  font-size: 0.63rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: none; cursor: none; position: relative; overflow: hidden;
  box-shadow: 0 8px 24px rgba(85,52,236,0.3);
  transition: box-shadow 0.3s, transform 0.3s;
}
.checkout-btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  opacity: 0; transition: opacity 0.4s;
}
.checkout-btn:hover::before { opacity: 1; }
.checkout-btn:hover { box-shadow: 0 12px 32px rgba(247,127,245,0.35); transform: translateY(-1px); }
.checkout-btn span { position: relative; z-index: 1; }

/* ─── TOAST ──────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%; z-index: 5000;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 14px 28px;
  font-size: 0.7rem; font-weight: 300; letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(197,161,236,0.1);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none; backdrop-filter: blur(12px);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple-lt), var(--magenta));
  box-shadow: 0 0 8px var(--magenta);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }
.reveal-delay-3 { transition-delay: 0.18s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .cat-card:first-child { grid-column: 1 / 3; grid-row: 1; min-height: 360px; }
  .story-section { grid-template-columns: 1fr; }
  .story-img-side { height: 320px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-links.mobile-open {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 5% 24px;
    background: rgba(10,0,8,0.98);
    border-top: 1px solid rgba(197,161,236,0.22);
    border-bottom: 1px solid rgba(197,161,236,0.16);
    box-shadow: 0 18px 38px rgba(0,0,0,0.46);
  }
  .nav-links.mobile-open a {
    color: #ffffff;
    font-weight: 600;
    opacity: 1;
  }
  .nav-links.mobile-open a.active,
  .nav-links.mobile-open a:hover {
    color: #c5a1ec;
  }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .region-modal-overlay {
    justify-content: center;
    padding: 18px;
  }
  .region-modal {
    width: min(330px, 100%);
    padding: 24px 20px;
  }
  .hero {
    height: auto;
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .hero-content { padding: 0 5%; }
  .hero-title { margin-bottom: 16px; }
  .hero-subtitle { margin-bottom: 28px; }
  .hero-scroll { display: none; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .categories-grid { grid-template-columns: 1fr; }
  .cat-card:first-child { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-section { flex-direction: column; }
  .newsletter-form { width: 100%; }
  #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  .btn-primary, .filter-tab, .cat-link, .btn-ghost,
  .btn-outline, .action-btn, .quick-add, .qty-btn,
  .cart-close, .newsletter-btn, .checkout-btn,
  .nav-icon-btn, .hamburger, .social-btn,
  .cart-item-remove, .region-close, .region-option,
  .region-confirm, .region-secondary { cursor: pointer; }
}

/* ─── NEW LUXURY FEATURES ───────────────────────────────────── */
:root[data-theme="light"] {
  --black:      #ffffff;
  --deep:       #fcfaf8;
  --card-bg:    #f5f2ef;
  --surface:    #ffffff;
  --purple:     #3d1e9e;
  --purple-lt:  #6c4bc2;
  --magenta:    #c430c1;
  --burgundy:   #752321;
  --gold:       #b59232;
  --gold-lt:    #d1a938;
  --white:      #0a0008;
  --off-white:  #201524;
  --muted:      #60556b;
  --border:     rgba(85,52,236,0.12);
  --glow-purple: rgba(85,52,236,0.1);
  --glow-magenta: rgba(247,127,245,0.08);
}

/* Nav Dropdown for Currency/Lang */
.nav-currency-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-right: 15px; cursor: pointer;
}
.nav-currency-label {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em;
  color: var(--muted); transition: color var(--transition);
}
.nav-currency-wrap:hover .nav-currency-label { color: var(--purple-lt); }
.nav-currency-dropdown {
  position: absolute; top: 120%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; flex-direction: column; opacity: 0; visibility: hidden;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5); z-index: 100;
}
.nav-currency-wrap:hover .nav-currency-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-currency-dropdown button {
  background: none; border: none; padding: 12px 20px;
  font-family: var(--ff-sans); font-size: 0.6rem; color: var(--off-white);
  cursor: pointer; text-align: left; white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-currency-dropdown button:hover { background: rgba(85,52,236,0.1); color: var(--magenta); }

/* Product Card 3D Tilt */
.product-card {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  will-change: transform;
}
.product-card:hover {
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) scale3d(1.02, 1.02, 1.02) translateY(-6px);
  z-index: 10;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.22);
}
.product-img-wrap { transform: translateZ(20px); }
.product-info { transform: translateZ(30px); }
.product-actions { transform: translateZ(40px); }
.quick-add { transform: translateZ(25px) translateY(100%); }
.product-card:hover .quick-add { transform: translateZ(25px) translateY(0); }

/* Quick View Modal */
.quickview-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s;
}
.quickview-overlay.open { opacity: 1; visibility: visible; }
.quickview-modal {
  position: fixed; top: 50%; left: 50%; z-index: 3001;
  transform: translate(-50%, -45%) scale(0.95);
  width: 900px; max-width: 95vw; height: 500px; max-height: 90vh;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; opacity: 0; visibility: hidden;
  transition: opacity 0.4s, transform 0.4s, visibility 0.4s;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}
.quickview-modal.open { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }
.quickview-close {
  position: absolute; top: 16px; right: 20px; z-index: 10;
  background: none; border: none; font-size: 1.4rem; color: var(--muted);
  cursor: pointer; transition: color 0.3s, transform 0.3s;
}
.quickview-close:hover { color: var(--magenta); transform: rotate(90deg); }
.quickview-content { display: flex; width: 100%; height: 100%; }
.quickview-img-side { width: 45%; height: 100%; position: relative; background: var(--deep); }
.quickview-img-side img { width: 100%; height: 100%; object-fit: cover; }
.quickview-info-side {
  width: 55%; padding: 40px 50px; display: flex; flex-direction: column; justify-content: center;
}
.qv-brand { font-size: 0.6rem; color: var(--purple-lt); letter-spacing: 0.3em; margin-bottom: 10px; }
.qv-name { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 16px; }
.qv-price { font-size: 1.2rem; font-weight: 500; color: var(--gold); margin-bottom: 24px; }
.qv-desc { font-size: 0.85rem; line-height: 1.8; color: var(--muted); margin-bottom: 30px; }
.qv-sizes { margin-bottom: 30px; }
.qv-size-title { font-size: 0.65rem; color: var(--off-white); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.qv-size-options { display: flex; gap: 10px; }
.qv-size-btn {
  width: 40px; height: 40px; border: 1px solid var(--border); background: none; color: var(--off-white);
  font-family: var(--ff-sans); cursor: pointer; transition: all 0.3s;
}
.qv-size-btn:hover, .qv-size-btn.active { border-color: var(--purple-lt); color: var(--magenta); }
.qv-add-btn {
  padding: 18px; background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: white; border: none; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; margin-bottom: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.qv-add-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(85,52,236,0.3); }
.qv-wish-btn {
  background: none; border: none; color: var(--muted); font-size: 0.65rem;
  letter-spacing: 0.1em; cursor: pointer; text-decoration: underline; transition: color 0.3s;
}
.qv-wish-btn:hover { color: var(--purple-lt); }
@media (max-width: 860px) {
  .quickview-modal { flex-direction: column; overflow-y: auto; height: 80vh; }
  .quickview-content { flex-direction: column; }
  .quickview-img-side { width: 100%; height: 300px; flex-shrink: 0; }
  .quickview-info-side { width: 100%; padding: 30px; }
}

/* ─── LIGHT MODE FIXES ──────────────────────────────────────── */
[data-theme="light"] .filter-tab.active { color: #ffffff; }
[data-theme="light"] nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(32,21,36,0.12), 0 10px 28px rgba(32,21,36,0.08);
}
[data-theme="light"] nav {
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1px 0 rgba(32,21,36,0.08);
}
[data-theme="light"] .nav-links a,
[data-theme="light"] .nav-icon-btn { color: #120817; }
[data-theme="light"] .nav-links a { font-weight: 600; }
[data-theme="light"] .nav-currency-label { color: #120817; font-weight: 700; }
[data-theme="light"] .nav-links a:hover,
[data-theme="light"] .nav-links a.active,
[data-theme="light"] .nav-icon-btn:hover,
[data-theme="light"] .nav-currency-wrap:hover .nav-currency-label { color: #3d1e9e; }
[data-theme="light"] .nav-links a::after { background: #3d1e9e; height: 2px; }
[data-theme="light"] .nav-currency-dropdown {
  background: #ffffff; border-color: rgba(32,21,36,0.14); box-shadow: 0 16px 36px rgba(32,21,36,0.16);
}
[data-theme="light"] .nav-currency-dropdown button { color: #120817; }
[data-theme="light"] .hero-eyebrow,
[data-theme="light"] .hero-eyebrow::before,
[data-theme="light"] .hero-title,
[data-theme="light"] .hero-subtitle,
[data-theme="light"] .btn-ghost { color: #120817; }
[data-theme="light"] .hero-title em { background: none; -webkit-text-fill-color: #3d1e9e; color: #3d1e9e; }
[data-theme="light"] .hero-scroll span { color: rgba(18,8,23,0.62); }
[data-theme="light"] .section-title,
[data-theme="light"] .product-name,
[data-theme="light"] .cart-title,
[data-theme="light"] .cart-item-name,
[data-theme="light"] .qv-name { color: #120817; }
[data-theme="light"] .section-sub,
[data-theme="light"] .story-body,
[data-theme="light"] .stat-label,
[data-theme="light"] .footer-tagline,
[data-theme="light"] .footer-links a,
[data-theme="light"] .testimonial-text,
[data-theme="light"] .qv-desc,
[data-theme="light"] .cart-empty,
[data-theme="light"] .footer-copy { color: #3f3447; }
[data-theme="light"] .price,
[data-theme="light"] .cart-item-price,
[data-theme="light"] .cart-total-label,
[data-theme="light"] .qv-size-title { color: #201524; }
[data-theme="light"] .product-brand,
[data-theme="light"] .cart-item-brand,
[data-theme="light"] .qv-brand,
[data-theme="light"] .section-label { color: #4d2ca5; }
[data-theme="light"] .product-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .cart-drawer,
[data-theme="light"] .quickview-modal { background: #ffffff; border-color: rgba(32,21,36,0.14); }
[data-theme="light"] .hero-overlay {
  background: linear-gradient(90deg, rgba(252,250,248,0.62) 0%, rgba(252,250,248,0.32) 34%, rgba(252,250,248,0.06) 68%, rgba(252,250,248,0.12) 100%),
  linear-gradient(to top, rgba(252,250,248,0.42) 0%, rgba(252,250,248,0.08) 45%, rgba(252,250,248,0.03) 100%);
}
[data-theme="light"] .cat-name { color: #ffffff; }
[data-theme="light"] .cat-tag { color: #e8d6ff; }
[data-theme="light"] .cat-link { color: rgba(255, 255, 255, 0.78); }
[data-theme="light"] .cat-link:hover { color: #ffffff; }
[data-theme="light"] .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.28) 56%, rgba(0,0,0,0.06) 100%);
}
[data-theme="light"] .cat-card:hover .cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.34) 58%, rgba(0,0,0,0.08) 100%);
}
[data-theme="light"] .action-btn {
  background: rgba(255, 255, 255, 0.9);
  color: var(--off-white);
  border: 1px solid rgba(85,52,236,0.2);
}
[data-theme="light"] .action-btn:hover {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #ffffff;
}
[data-theme="light"] .nav-logo-img,
[data-theme="light"] .footer-logo-img { filter: invert(1) hue-rotate(180deg) brightness(1.1); }
[data-theme="light"] .nav-logo:hover .nav-logo-img { filter: invert(1) hue-rotate(180deg) brightness(1.3) drop-shadow(0 0 10px rgba(197,161,236,0.5)); }
[data-theme="light"] .region-logo { filter: drop-shadow(0 0 10px rgba(197,161,236,0.28)); }

/* ─── PRODUCT SIZES HOVER ───────────────────────────────────── */
.product-sizes-overlay {
  position: absolute;
  bottom: 65px; /* Just above the quick add button */
  left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px;
  opacity: 0;
  transform: translateY(10px) translateZ(35px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 15;
}
.product-card:hover .product-sizes-overlay {
  opacity: 1;
  transform: translateY(0) translateZ(35px);
  pointer-events: auto;
}
.product-sizes-overlay .size-btn {
  background: rgba(15, 0, 18, 0.85);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(197, 161, 236, 0.22);
  font-family: var(--ff-sans);
  font-size: 0.55rem;
  font-weight: 600;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-sizes-overlay .size-btn:hover {
  border-color: var(--purple-lt);
  color: #ffffff;
  transform: scale(1.08);
}
.product-sizes-overlay .size-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(197, 161, 236, 0.4);
}

[data-theme="light"] .product-sizes-overlay .size-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #120817;
  border: 1px solid rgba(32, 21, 36, 0.14);
}
[data-theme="light"] .product-sizes-overlay .size-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
}
[data-theme="light"] .product-sizes-overlay .size-btn.active {
  background: linear-gradient(135deg, var(--purple), var(--magenta));
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 0 10px rgba(85, 52, 236, 0.35);
}

/* Badge Pulse Animation */
@keyframes badgePulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.pulse-animation {
  animation: badgePulse 0.45s ease-out;
}


/* Final light-mode navbar contrast override */
html[data-theme="light"] #navbar {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 1px 0 rgba(32,21,36,0.1), 0 10px 28px rgba(32,21,36,0.08);
}
html[data-theme="light"] #navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 1px 0 rgba(32,21,36,0.14), 0 12px 30px rgba(32,21,36,0.1);
}
html[data-theme="light"] #navbar .nav-links a,
html[data-theme="light"] #navbar .nav-icon-btn,
html[data-theme="light"] #navbar .nav-currency-label {
  color: #120817;
}
html[data-theme="light"] #navbar .nav-links a {
  font-weight: 600;
}
html[data-theme="light"] #navbar .nav-currency-label {
  font-weight: 700;
}
html[data-theme="light"] #navbar .nav-links a:hover,
html[data-theme="light"] #navbar .nav-links a.active,
html[data-theme="light"] #navbar .nav-icon-btn:hover,
html[data-theme="light"] #navbar .nav-currency-wrap:hover .nav-currency-label {
  color: #3d1e9e;
}
html[data-theme="light"] #navbar .nav-links a::after {
  height: 2px;
  background: #3d1e9e;
}
html[data-theme="light"] #navbar .nav-currency-dropdown {
  background: #ffffff;
  border-color: rgba(32,21,36,0.14);
  box-shadow: 0 16px 36px rgba(32,21,36,0.16);
}
html[data-theme="light"] #navbar .nav-currency-dropdown button {
  color: #120817;
}
@media (max-width: 860px) {
  html[data-theme="light"] #navbar .nav-links.mobile-open {
    background: rgba(255,255,255,0.98);
    border-top-color: rgba(32,21,36,0.14);
    border-bottom-color: rgba(32,21,36,0.1);
    box-shadow: 0 18px 38px rgba(32,21,36,0.14);
  }
  html[data-theme="light"] #navbar .nav-links.mobile-open a {
    color: #120817;
  }
  html[data-theme="light"] #navbar .nav-links.mobile-open a.active,
  html[data-theme="light"] #navbar .nav-links.mobile-open a:hover {
    color: #3d1e9e;
  }
}

/* Out of Stock and Disabled Styles for Size Buttons & Badges */
.qv-size-btn.out-of-stock,
.qv-size-btn:disabled,
.product-sizes-overlay .size-btn.out-of-stock,
.product-sizes-overlay .size-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed !important;
  text-decoration: line-through;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--muted) !important;
  background: rgba(0, 0, 0, 0.2) !important;
  box-shadow: none !important;
  transform: none !important;
  pointer-events: none;
}
.quick-add.out-of-stock,
.quick-add:disabled {
  background: var(--card-bg) !important;
  color: var(--muted) !important;
  border: 1px solid var(--border) !important;
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
}
.badge-sold-out {
  background: #e74c5e !important; /* var(--danger) */
  color: white !important;
  box-shadow: 0 0 10px rgba(231, 76, 94, 0.4);
}
.qv-stock-info {
  margin-top: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ─── BOUTIQUE FILTERS ADVANCED ─────────────────────────────── */
.filter-toggle-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 10px 15px;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  cursor: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-toggle-btn:hover, .filter-toggle-btn.active {
  border-color: var(--purple-lt);
  color: var(--purple-lt);
  box-shadow: 0 0 10px rgba(197, 161, 236, 0.15);
}

.adv-size-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 38px;
  height: 38px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 300;
  cursor: none;
  transition: var(--transition);
}
.adv-size-btn:hover {
  border-color: var(--purple-lt);
  color: var(--purple-lt);
}
.adv-size-btn.active {
  border-color: var(--purple-lt);
  background: rgba(197, 161, 236, 0.15);
  color: var(--purple-lt);
  box-shadow: 0 0 10px rgba(197, 161, 236, 0.2);
}

.filter-reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  cursor: none;
  transition: var(--transition);
  width: 100%;
  text-transform: uppercase;
}
.filter-reset-btn:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  box-shadow: 0 0 10px rgba(247, 127, 245, 0.15);
}

/* Light theme support */
[data-theme="light"] .filter-toggle-btn,
[data-theme="light"] .adv-size-btn {
  color: var(--white);
  border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .filter-toggle-btn:hover,
[data-theme="light"] .filter-toggle-btn.active,
[data-theme="light"] .adv-size-btn:hover,
[data-theme="light"] .adv-size-btn.active {
  color: var(--purple);
  border-color: var(--purple);
}
[data-theme="light"] .filter-reset-btn {
  color: var(--white);
  border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .filter-reset-btn:hover {
  color: var(--purple);
  border-color: var(--purple);
}

/* ─── CLIENT AUTHENTICATION / PROFILE MODAL ─────────────────── */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10005;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.auth-overlay.open {
  opacity: 1;
  visibility: visible;
}

.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 500px;
  background: rgba(15, 0, 18, 0.85);
  backdrop-filter: blur(25px);
  border: 1px solid var(--border);
  padding: 40px;
  z-index: 10006;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(85,52,236,0.15);
  max-height: 85vh;
  overflow-y: auto;
}
.auth-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.auth-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: none;
  transition: var(--transition);
}
.auth-close:hover {
  color: var(--white);
}

.auth-brand {
  font-family: var(--ff-serif);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  text-align: center;
}

.auth-title {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 0.02em;
}

.auth-subtitle {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-lt);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(197, 161, 236, 0.15);
}

.auth-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  border: none;
  color: var(--white);
  padding: 14px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
  margin-top: 10px;
}
.auth-submit-btn:hover {
  box-shadow: 0 0 20px rgba(247, 127, 245, 0.4);
  transform: translateY(-2px);
}

.auth-switch {
  margin-top: 25px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.switch-link-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  cursor: none;
  margin-left: 5px;
  transition: var(--transition);
  font-weight: 500;
}
.switch-link-btn:hover {
  color: var(--gold-lt);
  text-decoration: underline;
}

/* ─── LOGGED IN PROFILE AREA ────────────────────────────────── */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.profile-welcome {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--white);
}
.profile-email {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}
.profile-logout-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--muted);
  padding: 8px 16px;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  cursor: none;
  transition: var(--transition);
}
.profile-logout-btn:hover {
  border-color: #e74c5e;
  color: #e74c5e;
  background: rgba(231, 76, 94, 0.05);
}

.profile-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}
.profile-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  padding: 12px;
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: none;
  transition: var(--transition);
}
.profile-tab-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.profile-tab-content {
  min-height: 200px;
}

/* Orders list styling */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.order-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 15px;
  transition: var(--transition);
}
.order-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.order-card-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.order-id {
  font-weight: 500;
  color: var(--white);
}
.order-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 10px;
}
.order-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--off-white);
}
.order-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 10px;
  font-size: 0.8rem;
}
.order-status-badge {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  font-weight: 500;
}
.order-status-badge.status-paid {
  background: rgba(78, 205, 196, 0.12);
  color: #4ecdc4;
  border: 1px solid rgba(78, 205, 196, 0.2);
}
.order-status-badge.status-pending {
  background: rgba(201, 168, 76, 0.12);
  color: #c9a84c;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.order-status-badge.status-expired {
  background: rgba(231, 76, 94, 0.12);
  color: #e74c5e;
  border: 1px solid rgba(231, 76, 94, 0.2);
}
.order-total {
  color: var(--muted);
}
.order-total strong {
  color: var(--white);
  margin-left: 4px;
}

/* Wishlist tab styling inside modal */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
}
.wishlist-item-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px;
  position: relative;
  transition: var(--transition);
}
.wishlist-item-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}
.wish-item-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 10px;
}
.wish-item-info {
  flex-grow: 1;
  margin-bottom: 5px;
}
.wish-item-name {
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.3;
}
.wish-item-price {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 300;
}
.wish-item-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: var(--white);
  font-size: 0.75rem;
  cursor: none;
  padding: 2px 6px;
  border-radius: 50%;
  transition: var(--transition);
  z-index: 2;
}
.wish-item-remove:hover {
  color: #e74c5e;
  background: rgba(0,0,0,0.8);
}

/* Light Theme support for modal */
[data-theme="light"] .auth-modal {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15), 0 0 40px rgba(85,52,236,0.05);
}
[data-theme="light"] .auth-close:hover {
  color: var(--white); /* In light theme, var(--white) is #0a0008 (dark color) */
}
[data-theme="light"] .auth-title,
[data-theme="light"] .profile-welcome,
[data-theme="light"] .order-id,
[data-theme="light"] .order-total strong,
[data-theme="light"] .wishlist-item-card .wish-item-name,
[data-theme="light"] .wishlist-item-card .wish-item-price {
  color: var(--white); /* var(--white) is #0a0008 (dark color) in light theme */
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--white); /* var(--white) is #0a0008 (dark color) in light theme */
}
[data-theme="light"] .form-group input::placeholder,
[data-theme="light"] .form-group textarea::placeholder {
  color: rgba(96, 85, 107, 0.65); /* var(--muted) with opacity */
}
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group textarea:focus {
  background: var(--black); /* var(--black) is #ffffff (white background) in light theme */
  border-color: var(--purple);
}
[data-theme="light"] .profile-tabs {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .order-card,
[data-theme="light"] .wishlist-item-card {
  background: rgba(0, 0, 0, 0.02);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .order-card:hover,
[data-theme="light"] .wishlist-item-card:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.12);
}
[data-theme="light"] .order-card-header {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .order-item-row {
  color: rgba(0,0,0,0.8);
}
[data-theme="light"] .profile-logout-btn {
  border-color: rgba(0,0,0,0.15);
}

/* ─── CONTACT PAGE (APPLE STYLE) ────────────────────────────── */
.contact-section {
  padding: 140px 8% 80px;
  text-align: center;
}
.contact-eyebrow {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple-lt);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact-eyebrow::before {
  content: '✦';
  color: var(--magenta);
}
.contact-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-lt), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 550px;
  margin: 0 auto 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 80px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 30px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 250px;
}
.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197, 161, 236, 0.22);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4), 0 0 25px rgba(85, 52, 236, 0.1);
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 161, 236, 0.05);
  border-radius: 50%;
  padding: 10px;
  transition: var(--transition);
}
.contact-card:hover .contact-card-icon {
  background: rgba(247, 127, 245, 0.12);
  color: var(--magenta);
  transform: scale(1.08);
}
.contact-card-title {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-card-desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.contact-card-link {
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-lt);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.contact-card-link:hover {
  color: var(--magenta);
  gap: 12px;
}
.contact-form-section {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 50px;
  text-align: left;
}
.contact-form-title {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.contact-form-subtitle {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 40px;
}
.contact-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  border: none;
  color: #ffffff;
  padding: 16px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.contact-submit-btn:hover {
  box-shadow: 0 0 25px rgba(247, 127, 245, 0.45);
  transform: translateY(-2px);
}

/* Light theme overrides for contact page */
[data-theme="light"] .contact-card {
  background: rgba(0, 0, 0, 0.01);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .contact-card:hover {
  border-color: rgba(85, 52, 236, 0.18);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08), 0 0 25px rgba(85, 52, 236, 0.04);
}
[data-theme="light"] .contact-card-icon {
  background: rgba(85, 52, 236, 0.05);
  color: var(--purple);
}
[data-theme="light"] .contact-form-section {
  background: rgba(0, 0, 0, 0.01);
  border-color: rgba(0, 0, 0, 0.06);
}
[data-theme="light"] .contact-card:hover .contact-card-icon {
  background: rgba(196, 48, 193, 0.08);
  color: var(--magenta);
}

@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .contact-form-section {
    padding: 40px 24px;
  }
}

/* ─── CONTACT HERO STACKED (APPLE STYLE) ───────────────────── */
.contact-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 160px 8% 80px;
}
.contact-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
}
.contact-hero-text .contact-eyebrow {
  margin-bottom: 20px;
}
.contact-hero-text .contact-title {
  margin-bottom: 20px;
  text-align: center;
}
.contact-hero-text .contact-subtitle {
  margin: 0;
  text-align: center;
  max-width: 650px;
}
.btn-explore-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 100%);
  border: none;
  color: #ffffff;
  padding: 16px 32px;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-explore-contact:hover {
  box-shadow: 0 0 25px rgba(247, 127, 245, 0.45);
  transform: translateY(-2px);
}
.btn-explore-contact svg {
  transition: transform 0.3s;
}
.btn-explore-contact:hover svg {
  transform: translateY(3px);
}
.contact-hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px;
  width: 100%;
  margin-bottom: 50px;
}
.contact-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 35px 80px rgba(0,0,0,0.65), 0 0 45px rgba(85,52,236,0.15);
  background: var(--surface);
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.5s;
  will-change: transform;
}
.contact-mockup-wrapper:hover {
  box-shadow: 0 45px 100px rgba(0,0,0,0.85), 0 0 65px rgba(196,48,193,0.25);
}
.contact-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  pointer-events: none;
}
.contact-mockup-glare {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
  mix-blend-mode: overlay;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.contact-hero-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/* Light theme overrides for new elements */
[data-theme="light"] .contact-mockup-wrapper {
  box-shadow: 0 25px 60px rgba(32, 21, 36, 0.12), 0 0 40px rgba(85, 52, 236, 0.04);
  background: #ffffff;
  border-color: rgba(32, 21, 36, 0.08);
}
[data-theme="light"] .contact-mockup-wrapper:hover {
  box-shadow: 0 35px 80px rgba(32, 21, 36, 0.22), 0 0 50px rgba(196, 48, 193, 0.1);
}

.contact-main-section {
  padding: 60px 8% 80px;
  text-align: center;
}

@media (max-width: 900px) {
  .contact-hero-container {
    padding: 130px 6% 60px;
  }
  .contact-mockup-wrapper {
    max-width: 100%;
  }
}

/* ─── CONTACT VIDEO HERO (CINEMATIC BACKGROUND) ─────────────── */
.contact-video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

/* Vídeo de fundo — cobre toda a seção como object-fit: cover */
.contact-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.contact-video-bg.loaded {
  opacity: 1;
}

/* Overlay multi-camada: fundo escuro + gradiente inferior para fade para a próxima seção */
.contact-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(85,52,236,0.18) 0%, transparent 70%),
    linear-gradient(to bottom,
      rgba(8,0,16,0.55) 0%,
      rgba(8,0,16,0.35) 40%,
      rgba(8,0,16,0.60) 80%,
      rgba(8,0,16,0.92) 100%
    );
  pointer-events: none;
}

/* Conteúdo sobreposto ao vídeo — centralizado */
.contact-video-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 6%;
  max-width: 900px;
  animation: contactVideoFadeIn 1.4s ease both;
}
@keyframes contactVideoFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Sobreposições de texto dentro do hero de vídeo */
.contact-video-content .contact-eyebrow {
  margin-bottom: 22px;
  animation-delay: 0.2s;
}
.contact-video-content .contact-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.contact-video-content .contact-subtitle {
  margin: 0 0 44px 0;
  max-width: 620px;
  text-shadow: 0 1px 16px rgba(0,0,0,0.5);
}

/* Partículas de luz ambiente flutuantes */
.contact-video-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.cvp {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: cvpFloat linear infinite;
}
.cvp-1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(196,48,193,0.18) 0%, transparent 70%);
  left: -5%; top: 10%;
  animation-duration: 18s; animation-delay: 0s;
}
.cvp-2 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(85,52,236,0.22) 0%, transparent 70%);
  right: 5%; top: 20%;
  animation-duration: 22s; animation-delay: -6s;
}
.cvp-3 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(201,168,76,0.16) 0%, transparent 70%);
  left: 40%; bottom: 15%;
  animation-duration: 16s; animation-delay: -3s;
}
.cvp-4 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(85,52,236,0.14) 0%, transparent 70%);
  right: 20%; bottom: 25%;
  animation-duration: 24s; animation-delay: -9s;
}
.cvp-5 {
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(196,48,193,0.12) 0%, transparent 70%);
  left: 20%; top: 60%;
  animation-duration: 20s; animation-delay: -12s;
}
@keyframes cvpFloat {
  0%   { opacity: 0;    transform: translateY(0px)   scale(1); }
  15%  { opacity: 1; }
  50%  { opacity: 0.7;  transform: translateY(-40px) scale(1.1); }
  85%  { opacity: 1; }
  100% { opacity: 0;    transform: translateY(0px)   scale(1); }
}

/* Indicador de scroll animado na parte inferior */
.contact-video-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  animation: cvshFade 2.5s ease 2s forwards;
}
@keyframes cvshFade {
  from { opacity: 0; }
  to   { opacity: 0.5; }
}
.cvsh-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: cvshPulse 2s ease-in-out infinite;
}
@keyframes cvshPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Modo Claro — ajustar overlay e efeitos */
[data-theme="light"] .contact-video-overlay {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(85,52,236,0.10) 0%, transparent 70%),
    linear-gradient(to bottom,
      rgba(240,234,248,0.45) 0%,
      rgba(240,234,248,0.20) 40%,
      rgba(240,234,248,0.55) 80%,
      rgba(240,234,248,0.90) 100%
    );
}
[data-theme="light"] .contact-video-content .contact-title {
  text-shadow: 0 2px 24px rgba(255,255,255,0.6);
}
[data-theme="light"] .contact-video-content .contact-subtitle {
  text-shadow: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-video-hero { min-height: 100svh; }
  .contact-video-content .contact-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .contact-video-scroll-hint { display: none; }
}



