/* ============================================================
   MOESS WATCHES — Luxury Design System
   Rose Gold #D4A373 · Burgundy #6E1020 · Matte Black #0A0A0A
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-soft: #101010;
  --card: #161514;
  --card-2: #1D1B1A;
  --line: rgba(212, 163, 115, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);
  --rose: #D4A373;
  --rose-light: #E8C49C;
  --rose-pale: #F3E6D2;
  --burgundy: #6E1020;
  --burgundy-soft: #8A1A2E;
  --text: #F4EFEA;
  --text-dim: #A89F98;
  --text-faint: #6E6660;
  --gold-grad: linear-gradient(135deg, #E8C49C 0%, #D4A373 45%, #A06A38 100%);
  --lux-grad: linear-gradient(135deg, #D4A373 0%, #6E1020 100%);
  --glass: rgba(22, 20, 20, 0.55);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.55);
  --shadow-rose: 0 12px 40px rgba(212, 163, 115, 0.22);
  --radius: 18px;
  --radius-lg: 26px;
  --font-serif: "Playfair Display", "Georgia", serif;
  --font-sans: "Montserrat", "Helvetica Neue", sans-serif;
  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

::selection { background: rgba(212, 163, 115, 0.35); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #0A0A0A; }
::-webkit-scrollbar-thumb { background: #2A2523; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #D4A373; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; letter-spacing: 0.01em; }

.container { width: min(1240px, 92vw); margin-inline: auto; }
.container-wide { width: min(1420px, 94vw); margin-inline: auto; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 12px; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--rose); font-weight: 400;
}
.eyebrow::before, .eyebrow.center::after {
  content: ""; width: 42px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose));
}
.eyebrow.center::after { background: linear-gradient(90deg, var(--rose), transparent); }

.section-title { font-size: clamp(30px, 4vw, 46px); margin: 14px 0 10px; }
.section-sub { color: var(--text-dim); max-width: 560px; font-size: 16px; }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }

.text-grad {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: 100px; border: none;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), background 0.45s, color 0.45s, border-color 0.45s;
  overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--gold-grad); color: #1A0508;
  box-shadow: 0 8px 30px rgba(212, 163, 115, 0.30);
}
.btn-primary::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.9s var(--ease-lux);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(212, 163, 115, 0.45); }
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(212, 163, 115, 0.45);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--rose); color: var(--rose-light);
  box-shadow: inset 0 0 24px rgba(212, 163, 115, 0.12), 0 10px 30px rgba(0,0,0,0.4);
  transform: translateY(-3px);
}
.btn-dark {
  background: var(--card-2); color: var(--text);
  border: 1px solid var(--line-soft);
}
.btn-dark:hover { border-color: var(--rose); color: var(--rose-light); transform: translateY(-2px); }
.btn-burgundy {
  background: linear-gradient(135deg, var(--burgundy-soft), var(--burgundy)); color: #F8E9EB;
  box-shadow: 0 8px 30px rgba(110, 16, 32, 0.5);
}
.btn-burgundy:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(110, 16, 32, 0.65); }
.btn-sm { padding: 11px 24px; font-size: 11px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background 0.5s var(--ease-lux), box-shadow 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.header-top {
  background: linear-gradient(90deg, rgba(110,16,32,0.9), rgba(122,10,30,0.9), rgba(110,16,32,0.9));
  text-align: center; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  padding: 8px 16px; color: var(--rose-pale);
}
.header-main {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 24px;
}
.logo { display: flex; align-items: center; gap: 13px; }
.logo-crown { width: 34px; height: 34px; flex-shrink: 0; filter: drop-shadow(0 2px 10px rgba(212,163,115,0.5)); transition: transform .6s var(--ease-lux); }
.logo:hover .logo-crown { transform: rotate(-8deg) scale(1.08); }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--font-serif); font-size: 23px; font-weight: 700; letter-spacing: 0.24em;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-tag { font-size: 8.5px; letter-spacing: 0.5em; text-transform: uppercase; color: var(--text-dim); margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a, .nav-drop > button {
  position: relative; padding: 10px 15px; font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim); background: none; border: none; font-weight: 400;
  transition: color 0.35s; display: inline-flex; align-items: center; gap: 6px;
}
.main-nav > a::after, .nav-drop > button::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease-lux);
}
.main-nav > a:hover, .main-nav > a.active, .nav-drop > button:hover { color: var(--rose-light); }
.main-nav > a:hover::after, .main-nav > a.active::after, .nav-drop:hover > button::after { transform: scaleX(1); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(12px);
  min-width: 250px; padding: 14px; border-radius: var(--radius);
  background: rgba(18, 16, 16, 0.9); backdrop-filter: blur(24px);
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transition: all 0.4s var(--ease-lux);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu a {
  padding: 10px 14px; border-radius: 10px; font-size: 13px; color: var(--text-dim);
  transition: all 0.3s;
}
.nav-drop-menu a:hover { background: rgba(212, 163, 115, 0.1); color: var(--rose-light); padding-left: 18px; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: transparent; border: 1px solid transparent;
  color: var(--text-dim); transition: all 0.35s var(--ease-lux);
}
.icon-btn:hover { color: var(--rose-light); border-color: var(--line); background: rgba(212,163,115,0.07); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }
.icon-badge {
  position: absolute; top: 2px; right: 0; min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 100px; background: var(--lux-grad); color: #fff;
  font-size: 10px; font-weight: 500; display: grid; place-items: center;
  box-shadow: 0 2px 8px rgba(110,16,32,0.6);
}
.burger { display: none; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 0; z-index: 950; visibility: hidden;
}
.mobile-nav.open { visibility: visible; }
.mobile-nav-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.mobile-nav.open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute; top: 0; left: 0; bottom: 0; width: min(360px, 88vw);
  background: rgba(14, 13, 13, 0.97); border-right: 1px solid var(--line);
  padding: 32px 28px; overflow-y: auto;
  transform: translateX(-102%); transition: transform 0.5s var(--ease-lux);
}
.mobile-nav.open .mobile-nav-panel { transform: none; }
.mobile-nav-panel a { display: block; padding: 12px 4px; font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); border-bottom: 1px solid var(--line-soft); transition: color .3s, padding-left .3s; }
.mobile-nav-panel a:hover { color: var(--rose-light); padding-left: 12px; }
.mobile-nav-label { font-size: 11px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--rose); margin: 26px 0 6px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(ellipse 70% 55% at 78% 38%, rgba(110, 16, 32, 0.5), transparent 65%),
  radial-gradient(ellipse 55% 45% at 18% 78%, rgba(212, 163, 115, 0.13), transparent 60%),
  radial-gradient(ellipse 40% 35% at 55% 8%, rgba(212, 163, 115, 0.09), transparent 65%),
  #0A0A0A;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 26px 26px; opacity: 0.7;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 30%, transparent 75%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero-eyebrow { margin-bottom: 8px; }
.hero h1 { font-size: clamp(42px, 5.6vw, 78px); font-weight: 600; line-height: 1.08; margin: 18px 0 26px; }
.hero h1 em { font-style: italic; font-weight: 500; }
.hero-sub { color: var(--text-dim); font-size: 17.5px; max-width: 520px; margin-bottom: 42px; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; flex-wrap: wrap; }
.hero-stat b { display: block; font-family: var(--font-serif); font-size: 30px; font-weight: 600; color: var(--rose-light); }
.hero-stat span { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-faint); }

.hero-visual { position: relative; display: grid; place-items: center; }
.hero-watch { width: min(440px, 80vw); filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7)) drop-shadow(0 0 60px rgba(212,163,115,0.12)); animation: floaty 7s ease-in-out infinite; }
.hero-halo {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  border: 1px solid rgba(212, 163, 115, 0.18);
  animation: spin 40s linear infinite;
}
.hero-halo::before {
  content: ""; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose); box-shadow: 0 0 18px 4px rgba(212,163,115,0.6);
}
.hero-halo.h2 { width: 620px; height: 620px; animation-duration: 60s; animation-direction: reverse; opacity: 0.5; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-22px) rotate(2deg); } }
@keyframes spin { to { transform: rotate(360deg); } }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--text-faint);
}
.scroll-hint::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--rose), transparent); animation: drip 2s ease-in-out infinite; }
@keyframes drip { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 56% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 20px 0; background: rgba(212,163,115,0.03); }
.marquee-track { display: flex; gap: 70px; width: max-content; animation: marquee 34s linear infinite; }
.marquee span { font-family: var(--font-serif); font-size: 17px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--text-faint); display: flex; align-items: center; gap: 70px; white-space: nowrap; }
.marquee i { color: var(--rose); font-style: normal; font-size: 11px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.p-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(165deg, var(--card-2), var(--card) 55%);
  border: 1px solid var(--line-soft);
  transition: transform 0.55s var(--ease-lux), box-shadow 0.55s var(--ease-lux), border-color 0.55s;
  display: flex; flex-direction: column;
}
.p-card:hover {
  transform: translateY(-9px);
  border-color: rgba(212, 163, 115, 0.4);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(212,163,115,0.15), var(--shadow-rose);
}
.p-card-media {
  position: relative; aspect-ratio: 1 / 1.06; display: grid; place-items: center;
  background: radial-gradient(ellipse 75% 65% at 50% 42%, rgba(212,163,115,0.09), transparent 70%), radial-gradient(ellipse 100% 80% at 50% 110%, rgba(110,16,32,0.25), transparent 70%);
  overflow: hidden;
}
.p-card-media svg, .p-card-media img { width: 68%; transition: transform 0.7s var(--ease-lux); filter: drop-shadow(0 18px 34px rgba(0,0,0,0.6)); }
.p-card:hover .p-card-media svg, .p-card:hover .p-card-media img { transform: scale(1.07) rotate(-2deg); }
.p-card-badges { position: absolute; top: 16px; left: 16px; display: flex; flex-direction: column; gap: 7px; z-index: 2; }
.badge {
  font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 500;
  padding: 6px 13px; border-radius: 100px; backdrop-filter: blur(8px); width: max-content;
}
.badge-new { background: rgba(212, 163, 115, 0.92); color: #1A0508; }
.badge-sale { background: rgba(110, 16, 32, 0.92); color: #F3D9DC; }
.badge-best { background: rgba(244, 239, 234, 0.92); color: #0A0A0A; }
.badge-limited { background: linear-gradient(135deg, #2A2523, #0F0D0D); color: var(--rose-light); border: 1px solid rgba(212,163,115,0.5); }
.badge-out { background: rgba(30,28,27,0.9); color: var(--text-faint); border: 1px solid var(--line-soft); }

.p-card-actions {
  position: absolute; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 9px; z-index: 2;
  opacity: 0; transform: translateX(10px); transition: all 0.45s var(--ease-lux);
}
.p-card:hover .p-card-actions { opacity: 1; transform: none; }
.p-act {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(14, 13, 13, 0.8); backdrop-filter: blur(10px); color: var(--text-dim);
  display: grid; place-items: center; transition: all 0.3s;
}
.p-act:hover { color: var(--rose-light); border-color: var(--rose); transform: scale(1.1); }
.p-act.active { background: var(--gold-grad); color: #1A0508; border-color: transparent; }
.p-act svg { width: 17px; height: 17px; }

.p-card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.p-card-brand { font-size: 10.5px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--rose); }
.p-card-name { font-family: var(--font-serif); font-size: 19.5px; font-weight: 600; line-height: 1.25; }
.p-card-name a:hover { color: var(--rose-light); }
.p-card-meta { font-size: 12px; color: var(--text-faint); letter-spacing: 0.06em; }
.p-card-foot { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 14px; gap: 10px; }
.p-price { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; }
.p-price b { font-family: var(--font-serif); font-size: 21px; font-weight: 600; color: var(--rose-light); }
.p-price s { font-size: 13.5px; color: var(--text-faint); }
.p-card .btn-sm { flex-shrink: 0; }
.stars { color: var(--rose); font-size: 12px; letter-spacing: 3px; }
.stars .dim { color: #3A3432; }

/* ---------- Section shells ---------- */
.band {
  background: linear-gradient(180deg, transparent, rgba(110, 16, 32, 0.10) 50%, transparent);
}
.band-charcoal { background: linear-gradient(180deg, var(--bg-soft), #131110 55%, var(--bg-soft)); border-block: 1px solid var(--line-soft); }

/* ---------- Category tiles ---------- */
.cat-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-tile {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 250px;
  display: flex; align-items: flex-end; padding: 30px;
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--line-soft); transition: all 0.55s var(--ease-lux);
}
.cat-tile::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 90% 90% at 80% 15%, rgba(212,163,115,0.14), transparent 60%);
  opacity: 0.6; transition: opacity .5s;
}
.cat-tile:hover { transform: translateY(-7px); border-color: rgba(212,163,115,0.4); box-shadow: var(--shadow-card); }
.cat-tile:hover::before { opacity: 1; }
.cat-tile svg.cat-art { position: absolute; right: 6%; top: 12%; width: 38%; opacity: 0.9; transition: transform .6s var(--ease-lux); filter: drop-shadow(0 14px 30px rgba(0,0,0,.6)); }
.cat-tile:hover svg.cat-art { transform: scale(1.08) rotate(-4deg); }
.cat-tile h3 { font-size: 24px; margin-bottom: 4px; }
.cat-tile p { font-size: 13px; color: var(--text-dim); }
.cat-tile .link-more { margin-top: 12px; }

.link-more {
  display: inline-flex; align-items: center; gap: 9px; font-size: 11.5px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--rose-light); transition: gap .35s var(--ease-lux);
}
.link-more::after { content: "⟶"; transition: transform .35s; }
.link-more:hover { gap: 14px; }

/* ---------- Why choose us ---------- */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  padding: 34px 28px; border-radius: var(--radius); text-align: left;
  background: rgba(22, 20, 20, 0.5); backdrop-filter: blur(12px);
  border: 1px solid var(--line-soft); transition: all 0.5s var(--ease-lux);
}
.feature:hover { border-color: rgba(212,163,115,0.4); transform: translateY(-6px); background: rgba(28, 24, 24, 0.65); box-shadow: var(--shadow-soft); }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(212,163,115,0.16), rgba(110,16,32,0.25));
  border: 1px solid var(--line); color: var(--rose-light);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.04em; }
.feature p { font-size: 13.5px; color: var(--text-dim); }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--card-2), var(--card));
  border: 1px solid var(--line-soft); position: relative; overflow: hidden;
  transition: all .5s var(--ease-lux); display: flex; flex-direction: column; gap: 14px;
}
.review-card::before {
  content: "”"; position: absolute; top: -30px; right: 14px; font-family: var(--font-serif);
  font-size: 150px; color: rgba(212, 163, 115, 0.09); line-height: 1;
}
.review-card:hover { transform: translateY(-6px); border-color: rgba(212,163,115,0.35); box-shadow: var(--shadow-soft); }
.review-card p { font-size: 14.5px; color: var(--text-dim); font-style: italic; flex: 1; }
.review-who { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 18px; color: #1A0508; background: var(--gold-grad); flex-shrink: 0;
}
.review-who b { display: block; font-weight: 500; font-size: 14.5px; letter-spacing: 0.04em; }
.review-who span { font-size: 12px; color: var(--text-faint); }

/* ---------- Experience / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split-visual {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 480px;
  background: radial-gradient(ellipse 80% 70% at 50% 35%, rgba(110,16,32,0.55), transparent 75%), linear-gradient(160deg, #171413, #0D0C0C);
  border: 1px solid var(--line); display: grid; place-items: center;
}
.split-visual svg { width: 62%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7)); }
.check-list { list-style: none; margin-top: 26px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-dim); font-size: 15px; }
.check-list li::before {
  content: "✦"; color: var(--rose); font-size: 13px; margin-top: 3px;
}

/* ---------- Instagram ---------- */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta-tile {
  position: relative; aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line-soft); display: grid; place-items: center;
  transition: all .45s var(--ease-lux);
}
.insta-tile svg { width: 62%; filter: drop-shadow(0 8px 18px rgba(0,0,0,.55)); transition: transform .5s var(--ease-lux); }
.insta-tile::after {
  content: "♥"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(110, 16, 32, 0.55); backdrop-filter: blur(4px); color: #fff; font-size: 24px;
  opacity: 0; transition: opacity .4s;
}
.insta-tile:hover::after { opacity: 1; }
.insta-tile:hover { transform: translateY(-4px); border-color: rgba(212,163,115,0.4); }

/* ---------- Newsletter ---------- */
.newsletter {
  border-radius: var(--radius-lg); padding: 70px 60px; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(140deg, rgba(110,16,32,0.55), rgba(20,10,12,0.9) 55%), var(--card);
  border: 1px solid rgba(212,163,115,0.28);
}
.newsletter::before {
  content: ""; position: absolute; inset: -40%;
  background: radial-gradient(ellipse 30% 40% at 20% 30%, rgba(212,163,115,0.16), transparent 60%);
  animation: floaty 9s ease-in-out infinite;
}
.newsletter h2 { font-size: clamp(26px, 3.4vw, 40px); margin-bottom: 12px; position: relative; }
.newsletter p { color: var(--text-dim); max-width: 480px; margin: 0 auto 34px; position: relative; }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin-inline: auto; position: relative; }
.newsletter-form input {
  flex: 1; padding: 16px 24px; border-radius: 100px; border: 1px solid rgba(212,163,115,0.35);
  background: rgba(11, 11, 11, 0.6); color: var(--text); font-size: 14.5px; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.newsletter-form input:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(212,163,115,0.12); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--bg), #0D0A0B); padding: 80px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-grid h4 { font-family: var(--font-sans); font-weight: 500; font-size: 12.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-bottom: 22px; }
.footer-grid ul { list-style: none; display: grid; gap: 11px; }
.footer-grid ul a { color: var(--text-dim); font-size: 14px; transition: color .3s, padding-left .3s; }
.footer-grid ul a:hover { color: var(--rose-light); padding-left: 6px; }
.footer-about p { color: var(--text-dim); font-size: 14px; margin: 18px 0 24px; max-width: 320px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid var(--line-soft); color: var(--text-dim); transition: all .35s var(--ease-lux);
}
.social-row a:hover { color: #1A0508; background: var(--gold-grad); border-color: transparent; transform: translateY(-3px); box-shadow: var(--shadow-rose); }
.social-row svg { width: 17px; height: 17px; }
.footer-contact li { display: flex; gap: 12px; color: var(--text-dim); font-size: 14px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--rose); margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid var(--line-soft); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--text-faint);
}
.footer-bottom a { color: var(--text-dim); } .footer-bottom a:hover { color: var(--rose-light); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: calc(var(--header-h) + 100px) 0 70px; text-align: center; position: relative; overflow: hidden;
  background: radial-gradient(ellipse 60% 70% at 50% -10%, rgba(110,16,32,0.45), transparent 70%);
}
.page-hero h1 { font-size: clamp(34px, 4.6vw, 58px); margin: 16px 0 14px; }
.page-hero p { color: var(--text-dim); max-width: 620px; margin-inline: auto; }
.crumbs { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); margin-top: 22px; }
.crumbs a:hover { color: var(--rose-light); }
.crumbs i { font-style: normal; margin: 0 10px; color: var(--rose); }

/* ---------- Shop layout ---------- */
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 44px; align-items: start; }
.filters-panel {
  position: sticky; top: calc(var(--header-h) + 24px);
  border-radius: var(--radius-lg); border: 1px solid var(--line-soft);
  background: rgba(22, 20, 20, 0.55); backdrop-filter: blur(14px); padding: 28px 26px;
  display: grid; gap: 26px; max-height: calc(100vh - var(--header-h) - 48px); overflow-y: auto;
}
.filter-group h4 { font-family: var(--font-sans); font-size: 11.5px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.filter-opt { display: flex; align-items: center; gap: 11px; padding: 6px 0; font-size: 14px; color: var(--text-dim); cursor: pointer; transition: color .25s; }
.filter-opt:hover { color: var(--text); }
.filter-opt input { accent-color: var(--rose); width: 15px; height: 15px; }
.filter-opt span.count { margin-left: auto; font-size: 11.5px; color: var(--text-faint); }
.price-inputs { display: flex; align-items: center; gap: 10px; }
.price-inputs input {
  width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--line-soft);
  background: rgba(11,11,11,0.5); color: var(--text); font-size: 13.5px; outline: none;
}
.price-inputs input:focus { border-color: var(--rose); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.shop-count { font-size: 13.5px; color: var(--text-dim); }
.shop-count b { color: var(--rose-light); font-weight: 500; }
.select-lux {
  padding: 12px 40px 12px 18px; border-radius: 100px; border: 1px solid var(--line);
  background: var(--card-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23D4A373' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 18px center;
  color: var(--text); font-size: 13px; letter-spacing: 0.06em; outline: none; appearance: none; cursor: pointer;
  transition: border-color .3s;
}
.select-lux:focus, .select-lux:hover { border-color: var(--rose); }
.filters-toggle { display: none; }

/* ---------- Product page ---------- */
.product-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: start; }
.gallery-main {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(212,163,115,0.1), transparent 70%), linear-gradient(165deg, var(--card-2), #100E0E);
  border: 1px solid var(--line-soft); display: grid; place-items: center; cursor: zoom-in;
}
.gallery-main svg { width: 64%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.7)); transition: transform .5s var(--ease-lux); }
.gallery-main:hover svg { transform: scale(1.35); }
.gallery-tools { position: absolute; bottom: 18px; right: 18px; display: flex; gap: 10px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.gallery-thumb {
  aspect-ratio: 1; border-radius: 14px; border: 1px solid var(--line-soft); display: grid; place-items: center;
  background: linear-gradient(160deg, var(--card-2), var(--card)); cursor: pointer; transition: all .35s;
}
.gallery-thumb svg { width: 62%; }
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(212,163,115,0.15); }

.prod-brand { font-size: 12px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--rose); }
.prod-title { font-size: clamp(30px, 3.4vw, 44px); margin: 10px 0 6px; }
.prod-model { color: var(--text-faint); font-size: 13.5px; letter-spacing: 0.14em; text-transform: uppercase; }
.prod-rating { display: flex; align-items: center; gap: 12px; margin: 18px 0; font-size: 13px; color: var(--text-dim); }
.prod-price { display: flex; align-items: baseline; gap: 16px; margin: 20px 0 8px; flex-wrap: wrap; }
.prod-price b { font-family: var(--font-serif); font-size: 38px; font-weight: 600; color: var(--rose-light); }
.prod-price s { font-size: 19px; color: var(--text-faint); }
.prod-price .save { font-size: 12px; padding: 5px 14px; border-radius: 100px; background: rgba(110,16,32,0.6); color: var(--rose-pale); letter-spacing: 0.1em; }
.stock { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; letter-spacing: 0.08em; margin-bottom: 22px; }
.stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.stock.in { color: #9BC49B; } .stock.in::before { background: #7FBF7F; box-shadow: 0 0 10px #7FBF7F; }
.stock.out { color: var(--text-faint); } .stock.out::before { background: var(--text-faint); }
.prod-desc { color: var(--text-dim); font-size: 15.5px; margin-bottom: 30px; }
.prod-buy { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.qty button { width: 46px; height: 52px; background: none; border: none; color: var(--rose-light); font-size: 18px; transition: background .3s; }
.qty button:hover { background: rgba(212,163,115,0.12); }
.qty span { min-width: 40px; text-align: center; font-size: 15px; }
.prod-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.trust-chip { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 14px; border: 1px solid var(--line-soft); background: rgba(22,20,20,0.5); font-size: 12.5px; color: var(--text-dim); letter-spacing: 0.04em; }
.trust-chip svg { width: 18px; height: 18px; color: var(--rose); flex-shrink: 0; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line-soft); }
.spec-table td { padding: 15px 10px; font-size: 14.5px; }
.spec-table td:first-child { color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; font-size: 11.5px; width: 42%; }
.tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--line-soft); margin-bottom: 30px; flex-wrap: wrap; }
.tab-btn {
  padding: 14px 24px; background: none; border: none; color: var(--text-dim); font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase; position: relative; transition: color .3s;
}
.tab-btn::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold-grad); transform: scaleX(0); transition: transform .4s var(--ease-lux); }
.tab-btn.active { color: var(--rose-light); } .tab-btn.active::after { transform: none; }
.tab-panel { display: none; } .tab-panel.active { display: block; animation: fadeUp .5s var(--ease-lux); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 1100; background: rgba(5,4,4,0.92); backdrop-filter: blur(16px); display: none; place-items: center; }
.lightbox.open { display: grid; animation: fadeIn .35s; }
.lightbox svg { width: min(70vh, 84vw); }
.lightbox-close { position: absolute; top: 26px; right: 30px; }

/* ---------- Compare ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--line-soft); }
.compare-table { width: 100%; min-width: 760px; border-collapse: collapse; background: var(--card); }
.compare-table th, .compare-table td { padding: 18px 22px; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); font-size: 14px; text-align: left; vertical-align: top; }
.compare-table td:first-child { color: var(--text-faint); text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.14em; width: 180px; background: rgba(11,11,11,0.4); }
.compare-table .cmp-media { width: 130px; margin-bottom: 10px; }

/* ---------- Forms ---------- */
.lux-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label { display: block; font-size: 11.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 9px; }
.field label b { color: var(--rose); }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 20px; border-radius: 14px; border: 1px solid var(--line-soft);
  background: rgba(15, 14, 14, 0.7); color: var(--text); font-size: 15px; outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(212,163,115,0.1); }
.field .error-msg { display: none; color: #E08A96; font-size: 12.5px; margin-top: 7px; letter-spacing: 0.04em; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #96323F; }
.field.invalid .error-msg { display: block; animation: fadeUp .3s; }

.form-card {
  border-radius: var(--radius-lg); border: 1px solid var(--line-soft); padding: 44px;
  background: linear-gradient(170deg, var(--card-2), var(--card));
}
.radio-cards { display: grid; gap: 12px; }
.radio-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; border-radius: 16px;
  border: 1px solid var(--line-soft); cursor: pointer; transition: all .35s var(--ease-lux);
  background: rgba(15,14,14,0.5);
}
.radio-card:hover { border-color: rgba(212,163,115,0.4); }
.radio-card.selected { border-color: var(--rose); background: rgba(212,163,115,0.07); box-shadow: 0 0 0 4px rgba(212,163,115,0.08); }
.radio-card input { accent-color: var(--rose); margin-top: 5px; }
.radio-card b { font-weight: 500; letter-spacing: 0.04em; display: block; }
.radio-card p { font-size: 13px; color: var(--text-dim); margin-top: 3px; }
.notice {
  display: none; padding: 16px 20px; border-radius: 14px; font-size: 13.5px; margin-top: 6px;
  background: rgba(110, 16, 32, 0.28); border: 1px solid rgba(212, 163, 115, 0.35); color: var(--rose-pale);
}
.notice.show { display: block; animation: fadeUp .4s; }

/* ---------- Cart drawer ---------- */
.drawer { position: fixed; inset: 0; z-index: 1000; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); opacity: 0; transition: opacity .4s; }
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 94vw);
  background: rgba(16, 14, 14, 0.97); border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform 0.55s var(--ease-lux);
  box-shadow: -30px 0 80px rgba(0,0,0,0.6);
}
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid var(--line-soft); }
.drawer-head h3 { font-size: 21px; }
.drawer-items { flex: 1; overflow-y: auto; padding: 20px 28px; display: grid; gap: 18px; align-content: start; }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 16px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.cart-item-media { width: 76px; height: 76px; border-radius: 14px; background: linear-gradient(160deg, var(--card-2), var(--card)); border: 1px solid var(--line-soft); display: grid; place-items: center; }
.cart-item-media svg { width: 68%; }
.cart-item h5 { font-family: var(--font-serif); font-size: 15.5px; font-weight: 600; }
.cart-item .ci-meta { font-size: 11px; color: var(--text-faint); letter-spacing: 0.1em; text-transform: uppercase; }
.cart-item .ci-price { font-size: 14px; color: var(--rose-light); margin-top: 4px; }
.ci-qty { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; }
.ci-qty button { width: 24px; height: 24px; border-radius: 8px; border: 1px solid var(--line-soft); background: none; color: var(--text-dim); font-size: 13px; }
.ci-qty button:hover { border-color: var(--rose); color: var(--rose-light); }
.ci-remove { background: none; border: none; color: var(--text-faint); transition: color .3s; align-self: start; }
.ci-remove:hover { color: #E08A96; }
.drawer-foot { padding: 24px 28px 30px; border-top: 1px solid var(--line-soft); display: grid; gap: 14px; }
.drawer-total { display: flex; justify-content: space-between; font-size: 15px; }
.drawer-total b { font-family: var(--font-serif); font-size: 22px; color: var(--rose-light); }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: 1050; background: rgba(7, 6, 6, 0.9); backdrop-filter: blur(20px);
  display: none; padding: 12vh 20px 40px; overflow-y: auto;
}
.search-overlay.open { display: block; animation: fadeIn .35s; }
.search-box { width: min(720px, 100%); margin-inline: auto; }
.search-input-wrap { position: relative; }
.search-input-wrap svg { position: absolute; left: 26px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--rose); }
#search-input {
  width: 100%; padding: 22px 60px 22px 62px; border-radius: 100px;
  border: 1px solid rgba(212,163,115,0.45); background: rgba(18, 16, 16, 0.85);
  color: var(--text); font-size: 17px; outline: none; font-family: var(--font-sans);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
#search-input:focus { border-color: var(--rose); box-shadow: 0 0 0 5px rgba(212,163,115,0.12), 0 30px 80px rgba(0,0,0,0.6); }
.search-hint { text-align: center; font-size: 12px; color: var(--text-faint); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 18px; }
.search-results { margin-top: 26px; display: grid; gap: 10px; }
.search-result {
  display: grid; grid-template-columns: 64px 1fr auto; gap: 18px; align-items: center;
  padding: 14px 18px; border-radius: 18px; border: 1px solid var(--line-soft);
  background: rgba(20, 18, 18, 0.8); transition: all .3s var(--ease-lux);
}
.search-result:hover { border-color: var(--rose); transform: translateX(6px); background: rgba(28, 23, 23, 0.9); }
.search-result .sr-media { width: 64px; height: 64px; border-radius: 12px; display: grid; place-items: center; background: var(--card-2); }
.search-result .sr-media svg { width: 70%; }
.search-result b { font-family: var(--font-serif); font-size: 16px; font-weight: 600; display: block; }
.search-result span { font-size: 12px; color: var(--text-faint); letter-spacing: 0.06em; }
.search-result .sr-price { color: var(--rose-light); font-family: var(--font-serif); font-size: 17px; }
.search-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.search-tags button {
  padding: 9px 20px; border-radius: 100px; border: 1px solid var(--line-soft); background: none;
  color: var(--text-dim); font-size: 12.5px; letter-spacing: 0.1em; transition: all .3s;
}
.search-tags button:hover { border-color: var(--rose); color: var(--rose-light); }

/* ---------- Toasts ---------- */
.toast-stack { position: fixed; bottom: 28px; right: 28px; z-index: 1200; display: grid; gap: 12px; }
.toast {
  display: flex; align-items: center; gap: 14px; min-width: 300px; max-width: 380px;
  padding: 16px 22px; border-radius: 16px;
  background: rgba(20, 17, 17, 0.92); backdrop-filter: blur(18px);
  border: 1px solid rgba(212, 163, 115, 0.4); box-shadow: var(--shadow-card);
  animation: toastIn .55s var(--ease-lux); font-size: 14px;
}
.toast.leaving { animation: toastOut .4s var(--ease-lux) forwards; }
.toast-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--gold-grad); color: #1A0508; display: grid; place-items: center; flex-shrink: 0; }
.toast-icon svg { width: 16px; height: 16px; }
.toast b { display: block; font-weight: 500; letter-spacing: 0.04em; }
.toast span { font-size: 12.5px; color: var(--text-dim); }
@keyframes toastIn { from { transform: translateX(120%); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes toastOut { to { transform: translateX(120%); opacity: 0; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 24px; left: 24px; z-index: 1150; width: min(420px, calc(100vw - 48px));
  padding: 26px 28px; border-radius: var(--radius-lg);
  background: rgba(18, 16, 16, 0.94); backdrop-filter: blur(20px);
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transform: translateY(140%); transition: transform .7s var(--ease-lux);
}
.cookie-banner.show { transform: none; }
.cookie-banner h4 { font-size: 17px; margin-bottom: 8px; }
.cookie-banner p { font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
.cookie-banner .row { display: flex; gap: 12px; }

/* ---------- Scroll top ---------- */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 890;
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(212,163,115,0.5);
  background: rgba(16, 14, 14, 0.85); backdrop-filter: blur(12px); color: var(--rose-light);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: all .5s var(--ease-lux);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: none; }
.scroll-top:hover { background: var(--gold-grad); color: #1A0508; box-shadow: var(--shadow-rose); }
.scroll-top svg { width: 18px; height: 18px; }

/* ---------- Loading screen ---------- */
.loader {
  position: fixed; inset: 0; z-index: 2000; background: var(--bg);
  display: grid; place-items: center; transition: opacity .7s var(--ease-lux), visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-crown { width: 54px; margin: 0 auto 18px; animation: loaderPulse 1.6s ease-in-out infinite; }
.loader-name { font-family: var(--font-serif); font-size: 24px; letter-spacing: 0.4em; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.loader-bar { width: 160px; height: 1px; background: var(--line-soft); margin: 22px auto 0; overflow: hidden; }
.loader-bar::after { content: ""; display: block; height: 100%; width: 40%; background: var(--gold-grad); animation: loaderBar 1.2s var(--ease-lux) infinite; }
@keyframes loaderPulse { 0%,100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.12); opacity: 1; } }
@keyframes loaderBar { from { transform: translateX(-120%); } to { transform: translateX(420%); } }

/* ---------- Skeletons ---------- */
.skeleton { border-radius: var(--radius-lg); background: var(--card); overflow: hidden; position: relative; min-height: 380px; border: 1px solid var(--line-soft); }
.skeleton::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(212,163,115,0.07) 50%, transparent 70%);
  animation: shimmer 1.6s infinite;
}
@keyframes shimmer { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

/* ---------- Empty states ---------- */
.empty-state { text-align: center; padding: 90px 24px; }
.empty-state .empty-icon {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 28px;
  display: grid; place-items: center; color: var(--rose);
  background: radial-gradient(circle, rgba(212,163,115,0.12), transparent 70%);
  border: 1px dashed rgba(212,163,115,0.4);
}
.empty-state .empty-icon svg { width: 38px; height: 38px; }
.empty-state h3 { font-size: 26px; margin-bottom: 10px; }
.empty-state p { color: var(--text-dim); max-width: 380px; margin: 0 auto 30px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--card); overflow: hidden; transition: border-color .4s; }
.faq-item.open { border-color: rgba(212,163,115,0.45); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 24px 28px; background: none; border: none; color: var(--text); text-align: left;
  font-family: var(--font-serif); font-size: 18px; font-weight: 600;
}
.faq-q .fx { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--rose); font-size: 16px; transition: transform .45s var(--ease-lux), background .3s; flex-shrink: 0; font-family: var(--font-sans); font-weight: 300; }
.faq-item.open .fx { transform: rotate(45deg); background: rgba(212,163,115,0.15); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease-lux); }
.faq-a p { padding: 0 28px 26px; color: var(--text-dim); font-size: 14.5px; }

/* ---------- Legal / prose ---------- */
.prose { max-width: 780px; margin-inline: auto; }
.prose h2 { font-size: 26px; margin: 44px 0 14px; color: var(--rose-light); }
.prose p, .prose li { color: var(--text-dim); font-size: 15px; margin-bottom: 12px; }
.prose ul { padding-left: 22px; }

/* ---------- Admin ---------- */
.admin-shell { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; padding-top: 0; }
.admin-side { background: #0E0C0C; border-right: 1px solid var(--line-soft); padding: 30px 20px; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.admin-side .logo { margin-bottom: 40px; padding-left: 8px; }
.admin-nav { display: grid; gap: 4px; }
.admin-nav button {
  display: flex; align-items: center; gap: 13px; width: 100%; padding: 13px 16px; border-radius: 13px;
  background: none; border: none; color: var(--text-dim); font-size: 14px; letter-spacing: 0.05em; text-align: left;
  transition: all .3s;
}
.admin-nav button svg { width: 18px; height: 18px; }
.admin-nav button:hover { color: var(--rose-light); background: rgba(212,163,115,0.06); }
.admin-nav button.active { background: linear-gradient(135deg, rgba(212,163,115,0.18), rgba(110,16,32,0.25)); color: var(--rose-light); }
.admin-main { padding: 40px 44px; background: var(--bg-soft); min-height: 100vh; }
.admin-title { font-size: 30px; margin-bottom: 30px; }
.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.stat-card { padding: 26px; border-radius: var(--radius); border: 1px solid var(--line-soft); background: var(--card); position: relative; overflow: hidden; }
.stat-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); }
.stat-card .sc-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-faint); }
.stat-card .sc-value { font-family: var(--font-serif); font-size: 34px; color: var(--rose-light); margin: 8px 0 2px; }
.stat-card .sc-sub { font-size: 12px; color: var(--text-dim); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius); overflow: hidden; }
.admin-table th { text-align: left; padding: 15px 18px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--rose); background: rgba(11,11,11,0.5); font-weight: 500; }
.admin-table td { padding: 14px 18px; border-top: 1px solid var(--line-soft); font-size: 14px; }
.admin-table tr:hover td { background: rgba(212,163,115,0.035); }
.pill { display: inline-block; padding: 4px 13px; border-radius: 100px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.pill-ok { background: rgba(60, 110, 60, 0.25); color: #9BC49B; }
.pill-warn { background: rgba(150, 110, 30, 0.22); color: #D9B97F; }
.pill-rose { background: rgba(212, 163, 115, 0.18); color: var(--rose-light); }
.pill-red { background: rgba(110, 16, 32, 0.4); color: #E08A96; }
.admin-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; }
.admin-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity .9s var(--ease-lux), transform .9s var(--ease-lux); }
.reveal-scale.visible { opacity: 1; transform: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.anim-fade-up { animation: fadeUp .7s var(--ease-lux) both; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 404 ---------- */
.page-404 { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px 20px 60px; position: relative; overflow: hidden; }
.page-404 .big { font-family: var(--font-serif); font-size: clamp(110px, 22vw, 240px); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.9; }
.page-404 h1 { font-size: clamp(24px, 3vw, 36px); margin: 10px 0 14px; }
.page-404 p { color: var(--text-dim); max-width: 420px; margin: 0 auto 34px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 44px; align-items: start; }
.contact-info-card { border-radius: var(--radius-lg); border: 1px solid var(--line); padding: 40px; background: linear-gradient(150deg, rgba(110,16,32,0.35), var(--card) 60%); display: grid; gap: 26px; }
.contact-line { display: flex; gap: 18px; align-items: flex-start; }
.contact-line .cl-icon { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: rgba(212,163,115,0.12); border: 1px solid var(--line); color: var(--rose-light); }
.contact-line .cl-icon svg { width: 20px; height: 20px; }
.contact-line b { display: block; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 3px; }
.contact-line p, .contact-line a { font-size: 14px; color: var(--text-dim); }
.contact-line a:hover { color: var(--rose-light); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); margin-top: 44px; filter: grayscale(1) invert(0.92) hue-rotate(180deg) contrast(0.9); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: start; }
.summary-card { position: sticky; top: calc(var(--header-h) + 24px); border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--card); padding: 34px; }
.summary-card h3 { font-size: 22px; margin-bottom: 22px; }
.sum-line { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-dim); padding: 9px 0; }
.sum-line.total { border-top: 1px solid var(--line-soft); margin-top: 12px; padding-top: 18px; color: var(--text); font-size: 16px; }
.sum-line.total b { font-family: var(--font-serif); font-size: 26px; color: var(--rose-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .main-nav > a, .nav-drop > button { padding: 10px 10px; font-size: 12px; }
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .burger { display: grid; }
  .hero-grid, .split, .contact-grid, .checkout-grid, .product-layout { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-watch { width: min(320px, 62vw); }
  .hero-halo { width: 380px; height: 380px; } .hero-halo.h2 { width: 460px; height: 460px; }
  .hero { min-height: auto; }
  .features-grid, .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .cat-tiles, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-panel { position: fixed; inset: 0; z-index: 960; border-radius: 0; max-height: none; transform: translateX(-102%); transition: transform .5s var(--ease-lux); padding-top: 80px; }
  .filters-panel.open { transform: none; }
  .filters-toggle { display: inline-flex; }
  .filters-close { position: absolute; top: 20px; right: 20px; }
  .summary-card { position: static; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; height: auto; }
}
@media (max-width: 720px) {
  section { padding: 64px 0; }
  .product-grid, .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cat-tiles, .reviews-grid, .features-grid, .form-row { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter { padding: 48px 26px; }
  .newsletter-form { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .p-card-body { padding: 16px 16px 20px; }
  .p-card-name { font-size: 16px; }
  .p-card .btn-sm { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-card { padding: 28px 22px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .toast-stack { left: 16px; right: 16px; } .toast { min-width: 0; width: 100%; }
  .stat-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .admin-main { padding: 26px 18px; }
  .header-top { font-size: 9.5px; letter-spacing: 0.2em; }
}

/* ============================================================
   V2 — PREMIUM BOUTIQUE LAYER
   Royal Blue #1B4D8C · Emerald #0E8F68 · cinematic FX
   ============================================================ */

:root {
  --royal: #1B4D8C;
  --royal-light: #4E7FBE;
  --emerald: #0E8F68;
  --emerald-light: #3FBD96;
  --purple: #5B2A86;
  --grad-royal: linear-gradient(135deg, #4E7FBE 0%, #1B4D8C 45%, #5B2A86 100%);
  --grad-emerald: linear-gradient(135deg, #3FBD96 0%, #0E8F68 50%, #1B4D8C 100%);
  --grad-burgundy-black: linear-gradient(160deg, #6E1020 0%, #2A060C 55%, #0A0A0A 100%);
}

.text-grad-royal {
  background: var(--grad-royal);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.text-grad-emerald {
  background: var(--grad-emerald);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- Blur reveals (no content appears abruptly) ---------- */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  filter: blur(14px);
  transition: opacity 1s var(--ease-lux), transform 1s var(--ease-lux), filter 1s var(--ease-lux);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { filter: blur(0); }

/* ---------- Shrink-on-scroll navigation ---------- */
.header-main { transition: height 0.5s var(--ease-lux); }
.site-header.scrolled .header-main { height: 62px; }
.header-top { max-height: 40px; overflow: hidden; transition: max-height .5s var(--ease-lux), padding .5s var(--ease-lux), opacity .4s; }
.site-header.scrolled .header-top { max-height: 0; padding-block: 0; opacity: 0; }
.site-header.scrolled .logo-name { font-size: 20px; }
.logo-name { transition: font-size .5s var(--ease-lux); }

/* custom cursor removed — system cursor + interaction polish instead */

/* ---------- Button glow + ripple ---------- */
.btn { will-change: transform; }
.btn-primary { box-shadow: 0 8px 30px rgba(212,163,115,.30), 0 0 0 0 rgba(212,163,115,0); }
.btn-primary:hover { box-shadow: 0 16px 44px rgba(212,163,115,.45), 0 0 34px rgba(212,163,115,.28); }
.btn-burgundy:hover { box-shadow: 0 14px 40px rgba(110,16,32,.65), 0 0 30px rgba(110,16,32,.5); }
.fx-ripple {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 65%);
  transform: scale(0); animation: fxRipple .75s var(--ease-lux) forwards;
}
@keyframes fxRipple { to { transform: scale(2.6); opacity: 0; } }

/* ---------- Cinematic hero ---------- */
.hero-bg {
  background:
    radial-gradient(ellipse 70% 55% at 78% 38%, rgba(110, 16, 32, 0.52), transparent 65%),
    radial-gradient(ellipse 55% 45% at 18% 78%, rgba(212, 163, 115, 0.13), transparent 60%),
    radial-gradient(ellipse 45% 40% at 8% 12%, rgba(27, 77, 140, 0.20), transparent 65%),
    radial-gradient(ellipse 35% 30% at 60% 100%, rgba(14, 143, 104, 0.10), transparent 65%),
    #0A0A0A;
  background-size: 160% 160%;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 60%; }
}
#fx-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }

.fx-orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: -1;
  filter: blur(70px); opacity: .5; will-change: transform;
}
.fx-orb.o-rose { width: 380px; height: 380px; background: radial-gradient(circle, rgba(212,163,115,.32), transparent 70%); top: 8%; right: 4%; animation: orbFloat 13s ease-in-out infinite; }
.fx-orb.o-royal { width: 320px; height: 320px; background: radial-gradient(circle, rgba(27,77,140,.4), transparent 70%); bottom: 6%; left: -4%; animation: orbFloat 17s ease-in-out infinite reverse; }
.fx-orb.o-emerald { width: 240px; height: 240px; background: radial-gradient(circle, rgba(14,143,104,.3), transparent 70%); top: 46%; left: 38%; animation: orbFloat 21s ease-in-out infinite; }
.fx-orb.o-wine { width: 420px; height: 420px; background: radial-gradient(circle, rgba(110,16,32,.42), transparent 70%); bottom: -10%; right: 22%; animation: orbFloat 19s ease-in-out infinite reverse; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -50px) scale(1.12); }
  66% { transform: translate(-30px, 30px) scale(0.94); }
}

/* Headline word cascade */
.hw {
  display: inline-block; opacity: 0;
  transform: translateY(46px) rotate(2.5deg); filter: blur(10px);
  animation: hwIn 1.1s var(--ease-lux) forwards;
}
@keyframes hwIn { to { opacity: 1; transform: none; filter: blur(0); } }

.hero-glass-chip {
  position: absolute; bottom: 8%; left: 0;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-radius: 18px;
  background: rgba(20, 17, 14, 0.5);
  backdrop-filter: blur(18px) saturate(1.3); -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(212, 163, 115, 0.25);
  box-shadow: 0 18px 50px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08);
  animation: chipIn 1.2s var(--ease-lux) .9s both;
}
.hero-glass-chip .chip-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--emerald-light); box-shadow: 0 0 12px var(--emerald-light); animation: loaderPulse 2s infinite; }
.hero-glass-chip b { display: block; font-weight: 500; font-size: 13px; letter-spacing: .06em; }
.hero-glass-chip span { font-size: 11px; color: var(--text-dim); letter-spacing: .12em; text-transform: uppercase; }
@keyframes chipIn { from { opacity: 0; transform: translateY(26px); filter: blur(8px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* ---------- Subtle card reflection ---------- */
.p-card-media::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 7%;
  height: 12px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(212,163,115,.22), transparent 70%);
  filter: blur(6px); opacity: .6; transition: all .6s var(--ease-lux);
}
.p-card:hover .p-card-media::after { transform: scaleX(1.15); opacity: 1; }

/* ---------- Stats band ---------- */
.stats-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse 40% 90% at 12% 50%, rgba(27,77,140,.14), transparent 65%),
    radial-gradient(ellipse 40% 90% at 88% 50%, rgba(110,16,32,.20), transparent 65%),
    linear-gradient(180deg, #100D0B, #0A0A0A);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-big b {
  display: block; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(38px, 4.6vw, 62px); line-height: 1.1;
}
.stat-big span { font-size: 12px; letter-spacing: .32em; text-transform: uppercase; color: var(--text-dim); }
@media (max-width: 720px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 34px 16px; } }

/* ---------- Accent variants for feature icons / tiles ---------- */
.feature-icon.acc-royal { background: linear-gradient(135deg, rgba(27,77,140,.22), rgba(91,42,134,.2)); color: var(--royal-light); border-color: rgba(78,127,190,.3); }
.feature-icon.acc-emerald { background: linear-gradient(135deg, rgba(14,143,104,.2), rgba(27,77,140,.16)); color: var(--emerald-light); border-color: rgba(63,189,150,.3); }
.feature-icon.acc-wine { background: linear-gradient(135deg, rgba(110,16,32,.3), rgba(42,6,12,.4)); color: #E8A3AC; border-color: rgba(110,16,32,.45); }
.cat-tile.tile-royal::before { background: radial-gradient(ellipse 90% 90% at 80% 15%, rgba(27,77,140,.24), transparent 60%); }
.cat-tile.tile-emerald::before { background: radial-gradient(ellipse 90% 90% at 80% 15%, rgba(14,143,104,.2), transparent 60%); }
.cat-tile.tile-wine::before { background: radial-gradient(ellipse 90% 90% at 80% 15%, rgba(110,16,32,.32), transparent 60%); }

/* ---------- Packaging section ---------- */
.packaging-visual {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(212,163,115,.12), transparent 70%),
    var(--grad-burgundy-black);
}
.packaging-visual svg { animation: floaty 8s ease-in-out infinite; }

/* ---------- Newsletter → burgundy-black gradient ---------- */
.newsletter { background: radial-gradient(ellipse 60% 80% at 80% 10%, rgba(212,163,115,.10), transparent 60%), var(--grad-burgundy-black); }

/* ---------- Animated stars ---------- */
.stars span { display: inline-block; }
.stars-anim span { opacity: 0; transform: scale(.2) rotate(-40deg); animation: starPop .5s var(--ease-lux) forwards; }
.stars-anim span:nth-child(1) { animation-delay: .05s; }
.stars-anim span:nth-child(2) { animation-delay: .15s; }
.stars-anim span:nth-child(3) { animation-delay: .25s; }
.stars-anim span:nth-child(4) { animation-delay: .35s; }
.stars-anim span:nth-child(5) { animation-delay: .45s; }
@keyframes starPop { to { opacity: 1; transform: none; } }

/* ---------- Review avatar ring ---------- */
.review-avatar { position: relative; }
.review-avatar::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(212,163,115,.5); border-top-color: transparent;
  animation: spin 7s linear infinite;
}

/* ---------- Empty states, upgraded ---------- */
.empty-state .empty-icon { position: relative; animation: floaty 5s ease-in-out infinite; }
.empty-state .empty-icon::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px dashed rgba(212,163,115,.25); animation: spin 24s linear infinite;
}
.empty-state .empty-icon::after {
  content: "✦"; position: absolute; top: -8px; right: -4px;
  color: var(--rose); font-size: 13px; animation: loaderPulse 2.4s infinite;
}

/* ---------- Loader progress ---------- */
.loader-pct {
  margin-top: 14px; font-size: 11px; letter-spacing: .4em;
  color: var(--text-faint); font-variant-numeric: tabular-nums;
}

/* ---------- Section entrance glow lines ---------- */
.section-head .section-title { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { filter: none; }
  .hw { animation: none; opacity: 1; transform: none; filter: none; }
}

/* ============================================================
   V3 — BILINGUAL LAYER (language switcher + Cyrillic-safe layout)
   ============================================================ */

.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 15px; border-radius: 100px;
  border: 1px solid var(--line); background: rgba(212,163,115,0.06);
  color: var(--text); font-size: 12.5px; font-weight: 500; letter-spacing: 0.08em;
  transition: all .35s var(--ease-lux); white-space: nowrap;
}
.lang-btn:hover { border-color: var(--rose); color: var(--rose-light); transform: translateY(-1px); }
.lang-caret { font-size: 8px; color: var(--rose); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 175px;
  padding: 8px; border-radius: 16px;
  background: rgba(18, 16, 14, 0.95); backdrop-filter: blur(20px);
  border: 1px solid var(--line); box-shadow: var(--shadow-card);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .35s var(--ease-lux); z-index: 60;
}
.lang-switch:hover .lang-menu, .lang-switch:focus-within .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button {
  display: flex; align-items: center; gap: 10px; width: 100%;
  padding: 11px 14px; border-radius: 10px; border: none; background: none;
  color: var(--text-dim); font-size: 13.5px; text-align: left; transition: all .3s;
}
.lang-menu button:hover { background: rgba(212,163,115,0.1); color: var(--rose-light); }
.lang-menu button.active { color: var(--rose-light); background: rgba(212,163,115,0.07); }
.lang-menu button.active::after { content: "✓"; margin-left: auto; font-size: 11px; }
.mobile-nav-panel .lang-switch { display: inline-block; }
.mobile-nav-panel .lang-menu { left: 0; right: auto; }

/* ---- Cyrillic-safe layout: longer strings must never break the chrome ---- */
.main-nav > a, .nav-drop > button { white-space: nowrap; }
@media (max-width: 1360px) {
  .main-nav > a, .nav-drop > button { padding: 10px 9px; font-size: 11.5px; letter-spacing: 0.1em; }
}
@media (max-width: 1180px) {
  .main-nav > a, .nav-drop > button { padding: 10px 7px; font-size: 11px; letter-spacing: 0.06em; }
  .lang-btn { padding: 8px 11px; font-size: 11.5px; }
}
.btn { text-align: center; }
.hero-cta .btn, .drawer-foot .btn, .form-card .btn { min-width: 0; }
.p-card .btn-sm { padding-inline: 18px; }
.tab-btn { letter-spacing: 0.12em; }
.footer-grid h4, .filter-group h4 { letter-spacing: 0.22em; }
.field label { letter-spacing: 0.18em; }

/* ============================================================
   V4 — BRIGHT LUXURY BOUTIQUE THEME
   Warm Ivory #F8F6F2 · Burgundy #7A1026 · Champagne #D8B26E
   Dark stays only in: Hero, Footer, Lightbox, Admin.
   ============================================================ */

:root {
  --bg: #F8F6F2;
  --bg-soft: #FFFFFF;
  --card: #FCFCFC;
  --card-2: #FFFFFF;
  --line: #E5DFD2;
  --line-soft: #ECEAE3;
  --rose: #A87B3D;
  --rose-light: #8F6528;
  --rose-pale: #7A5A24;
  --burgundy: #7A1026;
  --burgundy-soft: #8F1F35;
  --text: #1D1D1D;
  --text-dim: #666666;
  --text-faint: #9A958C;
  --gold-grad: linear-gradient(135deg, #E9CD9A 0%, #D8B26E 45%, #B08948 100%);
  --gold-text-grad: linear-gradient(135deg, #C9A054 0%, #A87B3D 50%, #8F6528 100%);
  --lux-grad: linear-gradient(135deg, #8F1F35 0%, #7A1026 100%);
  --glass: rgba(255, 255, 255, 0.6);
  --shadow-soft: 0 10px 34px rgba(29, 29, 29, 0.07);
  --shadow-card: 0 22px 55px rgba(29, 29, 29, 0.10);
  --shadow-rose: 0 12px 36px rgba(216, 178, 110, 0.35);
}

body { background: var(--bg); color: var(--text); }
::selection { background: rgba(122, 16, 38, 0.18); color: #1D1D1D; }
::-webkit-scrollbar-track { background: #F1EFE9; }
::-webkit-scrollbar-thumb { background: #D9D3C6; }
::-webkit-scrollbar-thumb:hover { background: #D8B26E; }

/* readable gold gradient for headings on light backgrounds */
.text-grad, .logo-name, .loader-name, .page-404 .big {
  background: var(--gold-text-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stars .dim { color: #DCD6C9; }

/* ---------- section rhythm: ivory / beige / white / gray ---------- */
section { padding: 112px 0; }
section.tight { padding: 76px 0; }
.band { background: #F6F0E4; border-block: 1px solid #EFE7D6; }
.band-charcoal { background: #FFFFFF; border-block: 1px solid var(--line-soft); }
.stats-band {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(ellipse 40% 90% at 12% 50%, rgba(122, 16, 38, 0.05), transparent 65%),
    radial-gradient(ellipse 40% 90% at 88% 50%, rgba(216, 178, 110, 0.14), transparent 65%),
    #F1EFEA;
}

/* ---------- HERO stays dark, with a smooth fade into ivory ---------- */
.hero {
  --text: #F6F1EA; --text-dim: #C9BFB2; --text-faint: #8F8880;
  --line: rgba(216, 178, 110, 0.2); --line-soft: rgba(255, 255, 255, 0.08);
  color: var(--text);
}
.hero .text-grad {
  background: linear-gradient(135deg, #E9CD9A, #D8B26E 45%, #B08948);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-bg {
  background:
    radial-gradient(ellipse 70% 55% at 78% 38%, rgba(122, 16, 38, 0.55), transparent 65%),
    radial-gradient(ellipse 55% 45% at 18% 78%, rgba(216, 178, 110, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 40% at 8% 12%, rgba(27, 77, 140, 0.16), transparent 65%),
    #120D0C;
  background-size: 160% 160%;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 180px; z-index: -1;
  background: linear-gradient(180deg, transparent, rgba(248, 246, 242, 0.55) 60%, #F8F6F2);
  pointer-events: none;
}
.hero .btn-ghost { background: rgba(255,255,255,0.06); color: #F6F1EA; border-color: rgba(216,178,110,0.5); backdrop-filter: blur(8px); }
.hero .btn-ghost:hover { background: #FFFFFF; color: #7A1026; border-color: #FFFFFF; }

/* marquee — light transition band under the hero */
.marquee { background: #F3EEE2; border-block: 1px solid #EBE3D2; }

/* ---------- Navigation: white glass → solid white ---------- */
.site-header {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(229, 223, 210, 0.6);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 8px 30px rgba(29, 29, 29, 0.08);
}
.header-top { background: linear-gradient(90deg, #5C0A1B, #7A1026, #5C0A1B); color: #EFD9C2; }
.main-nav > a, .nav-drop > button { color: #555; }
.main-nav > a:hover, .main-nav > a.active, .nav-drop:hover > button { color: #7A1026; }
.main-nav > a::after, .nav-drop > button::after { background: var(--lux-grad); }
.icon-btn { color: #555; }
.icon-btn:hover { color: #7A1026; background: rgba(122, 16, 38, 0.05); border-color: rgba(122, 16, 38, 0.15); }
.icon-badge { background: var(--lux-grad); }
.nav-drop-menu { background: rgba(255, 255, 255, 0.97); border-color: var(--line-soft); box-shadow: var(--shadow-card); }
.nav-drop-menu a { color: #666; }
.nav-drop-menu a:hover { background: rgba(122, 16, 38, 0.05); color: #7A1026; }
.lang-btn { background: #FFFFFF; border-color: var(--line); color: #444; }
.lang-btn:hover { border-color: #7A1026; color: #7A1026; }
.lang-menu { background: rgba(255, 255, 255, 0.98); border-color: var(--line-soft); }
.lang-menu button { color: #666; }
.lang-menu button:hover, .lang-menu button.active { background: rgba(122, 16, 38, 0.05); color: #7A1026; }
.mobile-nav-panel { background: #FFFFFF; border-right-color: var(--line-soft); }
.mobile-nav-panel a { color: #555; border-bottom-color: var(--line-soft); }
.mobile-nav-panel a:hover { color: #7A1026; }

/* ---------- Buttons: burgundy primary, champagne hover ---------- */
.btn-primary {
  background: linear-gradient(135deg, #8F1F35, #7A1026 55%, #5C0A1B);
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(122, 16, 38, 0.28);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #E2BE7E, #D8B26E 45%, #B8894A);
  color: #FFFFFF; text-shadow: 0 1px 6px rgba(90, 60, 10, 0.35);
  box-shadow: 0 16px 40px rgba(216, 178, 110, 0.5);
}
.btn-ghost { background: #FFFFFF; color: #7A1026; border: 1px solid rgba(122, 16, 38, 0.4); }
.btn-ghost:hover { background: #7A1026; color: #FFFFFF; border-color: #7A1026; box-shadow: 0 12px 30px rgba(122, 16, 38, 0.3); }
.btn-dark { background: #FFFFFF; color: #1D1D1D; border: 1px solid var(--line); }
.btn-dark:hover { border-color: #7A1026; color: #7A1026; }
.btn-burgundy { background: linear-gradient(135deg, #8F1F35, #7A1026); color: #FFF4EC; box-shadow: 0 8px 26px rgba(122, 16, 38, 0.35); }
.btn-burgundy:hover { box-shadow: 0 14px 36px rgba(122, 16, 38, 0.45); }

/* ---------- Product cards: bright, gold on hover ---------- */
.p-card {
  background: #FFFFFF;
  border: 1px solid var(--line-soft);
  box-shadow: 0 6px 22px rgba(29, 29, 29, 0.05);
}
.p-card:hover {
  border-color: rgba(216, 178, 110, 0.75);
  box-shadow: 0 26px 60px rgba(29, 29, 29, 0.12), 0 0 0 1px rgba(216, 178, 110, 0.4), 0 14px 40px rgba(216, 178, 110, 0.22);
}
.p-card-media {
  background:
    radial-gradient(ellipse 75% 65% at 50% 42%, rgba(216, 178, 110, 0.14), transparent 70%),
    linear-gradient(170deg, #FBF8F1, #F4EFE5);
}
.p-card-media svg, .p-card-media img { filter: drop-shadow(0 16px 28px rgba(29, 29, 29, 0.18)); }
.p-card-media::after { background: radial-gradient(ellipse, rgba(29, 29, 29, 0.10), transparent 70%); }
.p-act { background: rgba(255, 255, 255, 0.88); border-color: var(--line); color: #666; }
.p-act:hover { color: #7A1026; border-color: #7A1026; }
.p-act.active { background: var(--lux-grad); color: #fff; }
.p-card-brand { color: #A87B3D; }
.p-price b { color: #7A1026; }
.badge-new { background: #D8B26E; color: #2A1D07; }
.badge-sale { background: #7A1026; color: #F7E3D6; }
.badge-best { background: #1D1D1D; color: #F8F6F2; }
.badge-limited { background: #FFFFFF; color: #A87B3D; border: 1px solid rgba(176, 137, 72, 0.6); }
.badge-out { background: #EFEDE7; color: #8A8579; border: 1px solid var(--line-soft); }

/* ---------- Tiles / features / reviews ---------- */
.cat-tile { background: #FFFFFF; border-color: var(--line-soft); }
.cat-tile::before { background: radial-gradient(ellipse 90% 90% at 80% 15%, rgba(216, 178, 110, 0.2), transparent 60%); }
.cat-tile.tile-royal::before { background: radial-gradient(ellipse 90% 90% at 80% 15%, rgba(27, 77, 140, 0.12), transparent 60%); }
.cat-tile.tile-wine::before { background: radial-gradient(ellipse 90% 90% at 80% 15%, rgba(122, 16, 38, 0.12), transparent 60%); }
.cat-tile:hover { border-color: rgba(216, 178, 110, 0.7); box-shadow: var(--shadow-card); }
.feature { background: #FFFFFF; border-color: var(--line-soft); }
.feature:hover { background: #FFFFFF; border-color: rgba(216, 178, 110, 0.65); box-shadow: var(--shadow-soft); }
.feature-icon { background: linear-gradient(135deg, rgba(216, 178, 110, 0.18), rgba(122, 16, 38, 0.08)); border-color: rgba(216, 178, 110, 0.4); color: #A87B3D; }
.feature-icon.acc-royal { color: #1B4D8C; }
.feature-icon.acc-emerald { color: #0E8F68; }
.feature-icon.acc-wine { color: #7A1026; border-color: rgba(122, 16, 38, 0.25); }
.review-card { background: #FFFFFF; border-color: var(--line-soft); }
.review-card::before { color: rgba(216, 178, 110, 0.25); }
.review-card:hover { border-color: rgba(216, 178, 110, 0.6); }
.split-visual {
  background:
    radial-gradient(ellipse 80% 70% at 50% 35%, rgba(216, 178, 110, 0.2), transparent 75%),
    linear-gradient(165deg, #FFFFFF, #F3EDE0);
  border-color: var(--line);
}
.packaging-visual {
  background:
    radial-gradient(ellipse 70% 60% at 50% 30%, rgba(216, 178, 110, 0.16), transparent 70%),
    linear-gradient(160deg, #8F1F35, #4A0916 70%);
  border-color: rgba(122, 16, 38, 0.35);
}
.insta-tile { border-color: var(--line-soft); }
.insta-tile::after { background: rgba(122, 16, 38, 0.5); }
.check-list li::before { color: #A87B3D; }

/* ---------- Page heroes / breadcrumbs (inner pages, light) ---------- */
.page-hero { background: radial-gradient(ellipse 60% 70% at 50% -10%, rgba(122, 16, 38, 0.07), transparent 70%); }
.page-404 { --text: #1D1D1D; }
.page-404 .hero-bg {
  background:
    radial-gradient(ellipse 60% 50% at 70% 30%, rgba(216, 178, 110, 0.16), transparent 65%),
    radial-gradient(ellipse 50% 45% at 20% 75%, rgba(122, 16, 38, 0.07), transparent 60%),
    #F8F6F2;
  animation: none;
}
.page-404 .hero-bg::after { content: none; }

/* ---------- Shop: filters, sort, gallery ---------- */
.filters-panel { background: rgba(255, 255, 255, 0.9); border-color: var(--line-soft); box-shadow: var(--shadow-soft); }
.filter-opt { color: #666; }
.filter-opt:hover { color: #1D1D1D; }
.filter-opt input { accent-color: #7A1026; }
.filter-group h4 { color: #A87B3D; }
.price-inputs input { background: #FFFFFF; border-color: var(--line); color: #1D1D1D; }
.price-inputs input:focus { border-color: #7A1026; }
.select-lux {
  background: #FFFFFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A1026' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 18px center;
  border-color: var(--line); color: #1D1D1D;
}
.select-lux:focus, .select-lux:hover { border-color: #7A1026; }
.gallery-main {
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(216, 178, 110, 0.16), transparent 70%),
    linear-gradient(170deg, #FDFBF6, #F2ECDF);
  border-color: var(--line-soft);
}
.gallery-main svg { filter: drop-shadow(0 26px 45px rgba(29, 29, 29, 0.22)); }
.gallery-thumb { background: #FFFFFF; border-color: var(--line-soft); }
.gallery-thumb:hover, .gallery-thumb.active { border-color: #B08948; box-shadow: 0 0 0 3px rgba(216, 178, 110, 0.25); }
.prod-brand { color: #A87B3D; }
.prod-price b { color: #7A1026; }
.prod-price .save { background: rgba(122, 16, 38, 0.1); color: #7A1026; }
.stock.in { color: #1E7A4E; } .stock.in::before { background: #1E9A5F; box-shadow: 0 0 8px rgba(30, 154, 95, 0.6); }
.trust-chip { background: #FFFFFF; border-color: var(--line-soft); color: #666; }
.trust-chip svg { color: #A87B3D; }
.qty { border-color: var(--line); background: #FFFFFF; }
.qty button { color: #7A1026; }
.qty button:hover { background: rgba(122, 16, 38, 0.06); }
.tab-btn.active { color: #7A1026; }
.tab-btn::after { background: var(--lux-grad); }
.spec-table tr { border-bottom-color: var(--line-soft); }

/* ---------- Compare ---------- */
.compare-wrap { border-color: var(--line-soft); box-shadow: var(--shadow-soft); }
.compare-table { background: #FFFFFF; }
.compare-table th, .compare-table td { border-color: var(--line-soft); }
.compare-table td:first-child { background: #FAF8F3; }
.pill-ok { background: rgba(30, 122, 78, 0.1); color: #1E7A4E; }
.pill-warn { background: rgba(176, 137, 72, 0.14); color: #8F6528; }
.pill-rose { background: rgba(216, 178, 110, 0.2); color: #8F6528; }
.pill-red { background: rgba(122, 16, 38, 0.1); color: #7A1026; }

/* ---------- Forms ---------- */
.form-card { background: #FFFFFF; border-color: var(--line-soft); box-shadow: var(--shadow-soft); }
.field input, .field select, .field textarea { background: #FFFFFF; border-color: var(--line); color: #1D1D1D; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: #7A1026; box-shadow: 0 0 0 4px rgba(122, 16, 38, 0.07); }
.field label b { color: #7A1026; }
.field .error-msg { color: #A8253C; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #C24C61; }
.radio-card { background: #FFFFFF; border-color: var(--line); }
.radio-card:hover { border-color: rgba(122, 16, 38, 0.4); }
.radio-card.selected { border-color: #7A1026; background: rgba(122, 16, 38, 0.03); box-shadow: 0 0 0 4px rgba(122, 16, 38, 0.06); }
.radio-card input { accent-color: #7A1026; }
.notice { background: rgba(122, 16, 38, 0.06); border-color: rgba(122, 16, 38, 0.25); color: #7A1026; }
.summary-card { background: #FFFFFF; border-color: var(--line); box-shadow: var(--shadow-soft); }
.sum-line.total b { color: #7A1026; }

/* contact info card — rich burgundy accent (light text scope) */
.contact-info-card {
  --text: #F8EDE4; --text-dim: #DCC4B4; --text-faint: #B99C8C;
  color: var(--text);
  background: linear-gradient(150deg, #8F1F35, #5C0A1B 65%);
  border-color: rgba(216, 178, 110, 0.35);
}
.contact-info-card .cl-icon { background: rgba(216, 178, 110, 0.15); border-color: rgba(216, 178, 110, 0.35); color: #E9CD9A; }
.contact-info-card .text-grad {
  background: linear-gradient(135deg, #E9CD9A, #D8B26E);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-info-card .social-row a { border-color: rgba(216, 178, 110, 0.35); color: #DCC4B4; }
.contact-info-card a:hover { color: #E9CD9A; }

/* ---------- Cart drawer / search / toasts / cookie ---------- */
.drawer-panel { background: #FFFFFF; border-left-color: var(--line-soft); box-shadow: -24px 0 60px rgba(29, 29, 29, 0.12); }
.drawer-head, .drawer-foot { border-color: var(--line-soft); }
.cart-item { border-bottom-color: var(--line-soft); }
.cart-item-media { background: linear-gradient(160deg, #FBF8F1, #F3EDE1); border-color: var(--line-soft); }
.ci-price { color: #7A1026 !important; }
.drawer-total b { color: #7A1026; }
.ci-qty button { border-color: var(--line); color: #666; }
.ci-qty button:hover { border-color: #7A1026; color: #7A1026; }
.search-overlay { background: rgba(248, 246, 242, 0.94); }
#search-input { background: #FFFFFF; border-color: rgba(176, 137, 72, 0.4); color: #1D1D1D; box-shadow: 0 24px 60px rgba(29, 29, 29, 0.12); }
#search-input:focus { border-color: #7A1026; box-shadow: 0 0 0 5px rgba(122, 16, 38, 0.06), 0 24px 60px rgba(29, 29, 29, 0.12); }
.search-input-wrap svg { color: #A87B3D; }
.search-result { background: #FFFFFF; border-color: var(--line-soft); }
.search-result:hover { border-color: #B08948; background: #FFFDF8; }
.search-result .sr-price { color: #7A1026; }
.sr-media { background: #F6F1E7 !important; }
.search-tags button { border-color: var(--line); color: #666; background: #FFFFFF; }
.search-tags button:hover { border-color: #7A1026; color: #7A1026; }
.toast { background: rgba(255, 255, 255, 0.97); border-color: rgba(216, 178, 110, 0.5); box-shadow: var(--shadow-card); }
.toast-icon { background: var(--lux-grad); color: #FFF; }
.cookie-banner { background: rgba(255, 255, 255, 0.98); border-color: var(--line); box-shadow: var(--shadow-card); }
.scroll-top { background: rgba(255, 255, 255, 0.94); border-color: rgba(176, 137, 72, 0.5); color: #A87B3D; }
.scroll-top:hover { background: var(--lux-grad); color: #FFF; }
.faq-item { background: #FFFFFF; border-color: var(--line-soft); }
.faq-item.open { border-color: rgba(216, 178, 110, 0.7); }
.faq-q .fx { border-color: var(--line); color: #A87B3D; }
.faq-item.open .fx { background: rgba(216, 178, 110, 0.15); }
.empty-state .empty-icon { color: #A87B3D; background: radial-gradient(circle, rgba(216, 178, 110, 0.15), transparent 70%); border-color: rgba(176, 137, 72, 0.45); }
.empty-state .empty-icon::after { color: #B08948; }
.prose h2 { color: #7A1026; }
.crumbs a:hover { color: #7A1026; }
.crumbs i { color: #B08948; }
.link-more { color: #7A1026; }
.eyebrow { color: #A87B3D; }
.eyebrow::before { background: linear-gradient(90deg, transparent, #B08948); }
.eyebrow.center::after { background: linear-gradient(90deg, #B08948, transparent); }
.skeleton { background: #FFFFFF; border-color: var(--line-soft); }
.skeleton::after { background: linear-gradient(100deg, transparent 30%, rgba(216, 178, 110, 0.12) 50%, transparent 70%); }

/* ---------- Newsletter card stays rich burgundy (accent) ---------- */
.newsletter {
  --text: #F8EDE4; --text-dim: #DCC4B4;
  color: var(--text);
  background:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(216, 178, 110, 0.16), transparent 60%),
    linear-gradient(150deg, #8F1F35, #5C0A1B 60%, #340510);
  border-color: rgba(216, 178, 110, 0.4);
}
.newsletter .text-grad {
  background: linear-gradient(135deg, #E9CD9A, #D8B26E);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.newsletter-form input { background: rgba(255, 255, 255, 0.95); border-color: rgba(216, 178, 110, 0.5); color: #1D1D1D; }
.newsletter-form input:focus { border-color: #D8B26E; box-shadow: 0 0 0 4px rgba(216, 178, 110, 0.25); }
.newsletter .btn-primary:hover { background: linear-gradient(135deg, #E9CD9A, #D8B26E 45%, #B8894A); }

/* ---------- FOOTER stays dark ---------- */
.site-footer {
  --text: #F4EFEA; --text-dim: #A89F98; --text-faint: #6E6660;
  --line: rgba(216, 178, 110, 0.18); --line-soft: rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  background: linear-gradient(180deg, #17100E, #100A0C);
  border-top: 1px solid rgba(216, 178, 110, 0.25);
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; top: -140px; left: 0; right: 0; height: 140px; pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(23, 16, 14, 0.05));
}
.site-footer .logo-name {
  background: linear-gradient(135deg, #E9CD9A, #D8B26E 45%, #B08948);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.site-footer .footer-grid h4 { color: #D8B26E; }
.site-footer .footer-grid ul a:hover, .site-footer .footer-bottom a:hover { color: #E9CD9A; }
.site-footer .footer-contact svg { color: #D8B26E; }
.site-footer .social-row a { border-color: rgba(255, 255, 255, 0.12); color: #A89F98; }
.site-footer .social-row a:hover { color: #2A1D07; background: var(--gold-grad); }

/* ---------- Loader: bright ---------- */
.loader { background: #F8F6F2; }
.loader-bar { background: #E7E2D6; }

/* cursor styles removed */

/* ---------- Reveal blur unchanged; heading spacing airier ---------- */
.section-head { margin-bottom: 60px; }

/* ---------- ADMIN keeps the dark cockpit ---------- */
body[data-page="admin"] {
  --bg: #0A0A0A; --bg-soft: #101010; --card: #161514; --card-2: #1D1B1A;
  --line: rgba(212, 163, 115, 0.16); --line-soft: rgba(255, 255, 255, 0.07);
  --rose: #D4A373; --rose-light: #E8C49C; --rose-pale: #F3E6D2;
  --text: #F4EFEA; --text-dim: #A89F98; --text-faint: #6E6660;
  --gold-grad: linear-gradient(135deg, #E8C49C 0%, #D4A373 45%, #A06A38 100%);
  --lux-grad: linear-gradient(135deg, #D4A373 0%, #6E1020 100%);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.55);
  background: var(--bg); color: var(--text);
}
body[data-page="admin"] .text-grad, body[data-page="admin"] .logo-name {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
body[data-page="admin"] .btn-primary { background: var(--gold-grad); color: #1A0508; }
body[data-page="admin"] .btn-dark { background: var(--card-2); color: var(--text); border-color: var(--line-soft); }
body[data-page="admin"] .btn-dark:hover { border-color: var(--rose); color: var(--rose-light); }
body[data-page="admin"] .form-card { background: linear-gradient(170deg, var(--card-2), var(--card)); border-color: var(--line-soft); }
body[data-page="admin"] .field input, body[data-page="admin"] .field select, body[data-page="admin"] .field textarea { background: rgba(15, 14, 14, 0.7); border-color: var(--line-soft); color: var(--text); }
body[data-page="admin"] .select-lux { background-color: var(--card-2); border-color: var(--line); color: var(--text); }
body[data-page="admin"] .pill-ok { background: rgba(60, 110, 60, 0.25); color: #9BC49B; }
body[data-page="admin"] .pill-warn { background: rgba(150, 110, 30, 0.22); color: #D9B97F; }
body[data-page="admin"] .pill-rose { background: rgba(212, 163, 115, 0.18); color: var(--rose-light); }
body[data-page="admin"] .pill-red { background: rgba(110, 16, 32, 0.4); color: #E08A96; }
body[data-page="admin"] .filter-opt { color: var(--text-dim); }

/* ============================================================
   V5 — DIGITAL LUXURY SHOWROOM (3D hero)
   ============================================================ */
.showroom {
  position: relative; height: 280vh; background: #0d0708;
  --text: #F6F1EA; --text-dim: #C9BFB2; --text-faint: #8F8880;
  color: var(--text);
}
.showroom-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#showroom-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.showroom .text-grad {
  background: linear-gradient(135deg, #E9CD9A, #D8B26E 45%, #B08948);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.showroom-vignette {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background:
    radial-gradient(ellipse 120% 90% at 50% 42%, transparent 55%, rgba(5, 3, 4, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 3, 4, 0.35), transparent 18%);
}
#showroom-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 46vh; z-index: 3;
  background: linear-gradient(180deg, transparent, rgba(248, 246, 242, 0.65) 55%, #F8F6F2);
  opacity: 0; pointer-events: none; transition: opacity .3s linear;
}

/* ---- intro: black, silence, the mark appears ---- */
.showroom-intro {
  position: absolute; inset: 0; z-index: 6; background: #050304;
  display: grid; place-items: center;
  transition: opacity 1.5s var(--ease-lux), visibility 1.5s;
}
.showroom-intro.lift { opacity: 0; visibility: hidden; }
.si-mark { text-align: center; animation: siIn 2.2s var(--ease-lux) both; }
.si-mark svg { width: 46px; margin: 0 auto 14px; filter: drop-shadow(0 0 18px rgba(216, 178, 110, 0.5)); }
.si-mark span {
  display: block; font-family: var(--font-serif); font-size: 30px; font-weight: 700; letter-spacing: 0.5em; padding-left: 0.5em;
  background: linear-gradient(135deg, #E9CD9A, #D8B26E 45%, #B08948);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.si-mark em { display: block; margin-top: 10px; font-style: normal; font-size: 10.5px; letter-spacing: 0.5em; text-transform: uppercase; color: #8F8880; }
@keyframes siIn { 0% { opacity: 0; transform: scale(0.92); filter: blur(10px); } 35% { opacity: 0; } 100% { opacity: 1; transform: none; filter: blur(0); } }

/* ---- overlay UI: appears only after the room is revealed ---- */
.showroom-ui {
  position: absolute; left: 0; right: 0; bottom: 9vh; z-index: 4; text-align: center;
  padding-inline: 5vw; pointer-events: none;
  opacity: 0; transform: translateY(36px); filter: blur(10px);
  transition: opacity 1.4s var(--ease-lux), transform 1.4s var(--ease-lux), filter 1.4s var(--ease-lux);
}
.showroom-ui.visible { opacity: 1; transform: none; filter: blur(0); pointer-events: auto; }
.showroom-ui.visible.dimmed { opacity: 0; transform: translateY(-24px); pointer-events: none; }
.showroom-ui h1 {
  font-size: clamp(38px, 5.4vw, 72px); font-weight: 600; line-height: 1.08;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
}
.showroom-ui .sr-sub { color: var(--text-dim); font-size: 16.5px; max-width: 560px; margin: 16px auto 30px; }
.showroom-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 30px; }
.showroom .btn-ghost { background: rgba(255, 255, 255, 0.06); color: #F6F1EA; border: 1px solid rgba(216, 178, 110, 0.55); backdrop-filter: blur(10px); }
.showroom .btn-ghost:hover { background: #FFFFFF; color: #7A1026; border-color: #FFFFFF; }
.showroom-badges { display: flex; gap: 10px 14px; justify-content: center; flex-wrap: wrap; }
.s-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 100px; font-size: 12px; letter-spacing: 0.08em;
  color: #DDD3C4; background: rgba(20, 12, 10, 0.5);
  border: 1px solid rgba(216, 178, 110, 0.28);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.s-badge i { font-style: normal; color: #D8B26E; font-size: 11px; }
.showroom-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; }

/* ---- fallback (no WebGL / offline): elegant static room ---- */
.showroom-fallback { height: auto; min-height: 100vh; }
.showroom-fallback .showroom-sticky {
  position: relative; min-height: 100vh;
  background:
    radial-gradient(ellipse 70% 55% at 70% 30%, rgba(122, 16, 38, 0.55), transparent 65%),
    radial-gradient(ellipse 50% 45% at 20% 80%, rgba(216, 178, 110, 0.12), transparent 60%),
    #0d0708;
}
.showroom-fallback #showroom-canvas, .showroom-fallback #showroom-fade, .showroom-fallback .showroom-hint { display: none; }
.showroom-fallback .showroom-ui { position: relative; bottom: auto; padding-block: 26vh 14vh; }

@media (max-width: 720px) {
  .showroom { height: 240vh; }
  .showroom-ui { bottom: 7vh; }
  .showroom-ui .sr-sub { font-size: 14.5px; }
  .s-badge { padding: 7px 12px; font-size: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .showroom { height: 100vh; }
  .showroom-ui { transition: none; }
}

/* ============================================================
   V5.1 — WORLD-CLASS SHOWROOM PASS
   Left text stage · cinematic shade · physical buttons
   ============================================================ */

/* protected text area: dark cinematic gradient on the left */
.showroom-shade {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(97deg,
    rgba(5, 3, 4, 0.82) 0%,
    rgba(5, 3, 4, 0.62) 26%,
    rgba(5, 3, 4, 0.28) 44%,
    transparent 60%);
}

/* headline column — left, vertically centred, first thing you see */
.showroom-ui {
  left: 6vw; right: auto; bottom: auto; top: 50%;
  transform: translateY(calc(-50% + 36px));
  max-width: 640px; text-align: left; padding-inline: 0;
}
.showroom-ui.visible { transform: translateY(-50%); }
.showroom-ui.visible.dimmed { transform: translateY(calc(-50% - 26px)); }
.showroom-ui h1 { font-size: clamp(40px, 5vw, 74px); text-shadow: 0 8px 40px rgba(0, 0, 0, 0.75); }
.showroom-ui .sr-sub { margin: 18px 0 32px; max-width: 480px; }
.showroom-cta { justify-content: flex-start; }
.showroom-badges { justify-content: flex-start; max-width: 560px; }

/* ---------- buttons as premium physical objects ---------- */
.btn { transition: transform 0.45s var(--ease-lux), box-shadow 0.45s var(--ease-lux), background 0.45s, color 0.45s, border-color 0.45s, filter .3s; }
.btn:active { transform: translateY(-1px) scale(0.965) !important; filter: brightness(0.94); transition-duration: .12s; }
.showroom .btn-primary {
  background: linear-gradient(160deg, #A02540, #7A1026 45%, #560A1A);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 -8px 16px rgba(0, 0, 0, 0.25) inset,
    0 14px 34px rgba(0, 0, 0, 0.55),
    0 6px 18px rgba(122, 16, 38, 0.5);
}
.showroom .btn-primary:hover {
  background: linear-gradient(160deg, #EBD09E, #D8B26E 45%, #B8894A);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -8px 16px rgba(90, 60, 10, 0.3) inset,
    0 18px 44px rgba(0, 0, 0, 0.5),
    0 8px 26px rgba(216, 178, 110, 0.55);
}
.showroom .btn-ghost {
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 12px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .showroom-shade { background: linear-gradient(180deg, rgba(5,3,4,.6) 0%, rgba(5,3,4,.25) 35%, transparent 55%, rgba(5,3,4,.55) 100%); }
  .showroom-ui { left: 6vw; right: 6vw; top: auto; bottom: 8vh; transform: translateY(30px); max-width: none; }
  .showroom-ui.visible { transform: none; }
  .showroom-ui.visible.dimmed { transform: translateY(-20px); }
}

/* ============================================================
   V5.2 — MICRO-INTERACTIONS (system cursor, handcrafted feel)
   ============================================================ */
:focus-visible { outline: 2px solid rgba(176, 137, 72, 0.7); outline-offset: 3px; border-radius: 4px; }
.link-more, .faq-q, .filter-opt, .nav-drop-menu a, .lang-menu button { transition: all 0.4s var(--ease-lux); }
.p-card .p-card-name a { transition: color .35s var(--ease-lux); }
.icon-btn, .p-act, .lang-btn, .social-row a { will-change: transform; }
.btn-primary, .btn-ghost, .btn-burgundy { position: relative; }
.gallery-thumb:hover { transform: translateY(-2px); }
.insta-tile { transition: transform .5s var(--ease-lux), border-color .5s, box-shadow .5s; }
.insta-tile:hover { box-shadow: 0 14px 34px rgba(29, 29, 29, 0.12); }
.cat-tile, .feature, .review-card, .faq-item { will-change: transform; }

/* ============================================================
   V6 — CREATIVE DIRECTOR PASS
   Editorial typography · brand signature · zero template smell
   ============================================================ */

/* Editorial italic on gradient accent words — the MOESS signature */
.section-title .text-grad,
.section-title .text-grad-royal,
.section-title .text-grad-emerald,
.showroom-ui h1 .text-grad,
.page-hero h1 .text-grad,
.prod-title em {
  font-style: italic;
  padding-right: 0.06em; /* italic overhang breathing room */
}
.section-title { letter-spacing: -0.005em; }
.page-hero h1 { letter-spacing: -0.005em; }

/* The page draws its first breath — nothing snaps into place */
@media (prefers-reduced-motion: no-preference) {
  body { animation: pageBreath 0.9s var(--ease-lux) both; }
  @keyframes pageBreath { from { opacity: 0; } to { opacity: 1; } }
}

/* Brand signature line above the footer columns */
.footer-motto {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 27px);
  color: #CDBFA6;
  padding: 0 20px 64px;
  position: relative;
}
.footer-motto::after {
  content: "✦";
  display: block;
  margin-top: 26px;
  font-style: normal;
  font-size: 12px;
  color: #D8B26E;
  opacity: 0.8;
}

/* Marquee → an engraved hallmark, not a ticker */
.marquee { padding: 26px 0; }
.marquee span {
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.4em;
  color: #A79E8E;
}
.marquee i { color: #C9A054; font-size: 9px; }
.marquee-track { animation-duration: 46s; }

/* Craft details: no raw browser artefacts anywhere */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input[type="number"] { -moz-appearance: textfield; appearance: textfield; }

/* Quiet luxury: links underline with a drawn line, not a browser default */
.prose a, .search-result b { text-underline-offset: 3px; }

/* Product cards: title set in tighter serif, price with tabular calm */
.p-card-name { letter-spacing: 0; }
.p-price b, .prod-price b, .drawer-total b, .sum-line.total b { font-variant-numeric: lining-nums tabular-nums; }

/* Section eyebrows breathe a little more */
.section-head .eyebrow { margin-bottom: 4px; }

/* The last scroll moment before the footer never feels abrupt */
.site-footer { padding-top: 88px; }

/* ============================================================
   V7 — BRAND IDENTITY: engineered monogram + custom wordmark
   ============================================================ */
.logo { color: #1D1D1D; }
.logo-crown { width: 30px; height: 30px; filter: none; }
.logo-crown svg { width: 100%; height: 100%; }
.logo:hover .logo-crown { transform: rotate(0) scale(1.06); }
.logo-word { display: block; }
.logo-word svg { height: 15px; width: auto; display: block; }
.logo-word.sm svg { height: 13px; }
.logo-tag { margin-top: 5px; color: #9A958C; }
.site-footer .logo, body[data-page="admin"] .logo { color: #D8B26E; }
.site-footer .logo-tag { color: #6E6660; }
.mobile-nav-panel .logo { color: #1D1D1D; }
.showroom .logo, .showroom-intro { color: #D8B26E; }

/* loader: line-by-line construction of the mark */
.loader-mono { width: 62px; margin: 0 auto; color: #1D1D1D; display: block; }
.loader-mono .lm {
  stroke-dasharray: 1; stroke-dashoffset: 1;
  animation: lmDraw 1s var(--ease-lux) forwards;
}
.loader-mono .lm2 { animation-delay: 0.4s; }
.loader-mono .lm3 { animation-delay: 0.85s; }
@keyframes lmDraw { to { stroke-dashoffset: 0; } }
.loader-word { width: 138px; margin: 24px auto 0; color: #1D1D1D; opacity: 0; animation: fadeIn 1.1s var(--ease-lux) 1.45s forwards; }
.loader-word svg { width: 100%; height: auto; display: block; }
.loader-tagline {
  margin-top: 16px; font-size: 9px; letter-spacing: 0.52em; padding-left: 0.52em;
  text-transform: uppercase; color: #A87B3D; text-align: center;
  opacity: 0; animation: fadeIn 0.9s var(--ease-lux) 1.95s forwards;
}

/* showroom intro mark — same construction, champagne on black */
.si-mark .si-icon { width: 54px; margin: 0 auto 18px; color: #D8B26E; }
.si-mark .si-icon svg { width: 100%; height: auto; }
.si-mark .si-word { width: 150px; margin: 0 auto; color: #D8B26E; }
.si-mark .si-word svg { width: 100%; height: auto; }
.si-mark .lm { stroke-dasharray: 1; stroke-dashoffset: 1; animation: lmDraw 1.1s var(--ease-lux) forwards; animation-delay: .3s; }
.si-mark .lm2 { animation-delay: .75s; }
.si-mark .lm3 { animation-delay: 1.25s; }
.si-mark .si-word { opacity: 0; animation: fadeIn 1.2s var(--ease-lux) 1.7s forwards; }
.si-mark em { display: block; margin-top: 16px; font-style: normal; font-size: 10.5px; letter-spacing: 0.5em; padding-left: .5em; text-transform: uppercase; color: #8F8880; }

/* ============================================================
   V8 — REAL PRODUCT PHOTOS (admin uploads)
   ============================================================ */
img.p-photo { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.p-card-media img.p-photo { width: 100%; height: 100%; transition: transform 0.7s var(--ease-lux); }
.p-card:hover .p-card-media img.p-photo { transform: scale(1.06); }
.gallery-main img.p-photo { border-radius: inherit; }
.gallery-thumb img.p-photo { border-radius: inherit; }
.cmp-media img.p-photo { border-radius: 12px; aspect-ratio: 1; }
.lightbox img.p-photo { max-width: 86vw; max-height: 80vh; width: auto; height: auto; border-radius: 14px; }
.pimg-thumb {
  position: relative; width: 74px; height: 74px; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line-soft); cursor: pointer;
}
.pimg-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pimg-thumb.main { border-color: var(--rose); box-shadow: 0 0 0 2px rgba(216,178,110,.4); }
.pimg-thumb .pimg-x {
  position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%;
  border: none; background: rgba(0,0,0,.65); color: #fff; font-size: 11px; line-height: 1; cursor: pointer;
}
.pimg-thumb .pimg-main-tag {
  position: absolute; left: 0; right: 0; bottom: 0; font-size: 8.5px; letter-spacing: .08em;
  text-align: center; background: rgba(0,0,0,.55); color: #E9CD9A; padding: 2px 0;
}

/* ============================================================
   V9 — INDIVIDUAL ORDER EXPERIENCE (boutique, not warehouse)
   ============================================================ */
.stock.io { color: #A87B3D; }
.stock.io::before { background: #D8B26E; box-shadow: 0 0 10px rgba(216, 178, 110, 0.7); }
.io-card {
  border: 1px solid rgba(216, 178, 110, 0.45);
  background: linear-gradient(160deg, #FFFDF8, #FAF5EA);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin: 4px 0 26px;
  box-shadow: 0 14px 34px rgba(176, 137, 72, 0.10);
}
.io-head {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-weight: 500; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: #8F6528;
  margin-bottom: 10px;
}
.io-check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 12px;
  background: var(--gold-grad); color: #2A1D07;
}
.io-card p { font-size: 14px; color: #666; margin: 0 0 12px; }
.io-days {
  display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap;
  padding: 12px 18px; border-radius: 14px; margin-bottom: 12px;
  background: rgba(216, 178, 110, 0.12);
}
.io-days span { font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: #A87B3D; }
.io-days b { font-family: var(--font-serif); font-size: 21px; color: #7A1026; }
.io-card .io-note { font-size: 12.5px; color: #9A958C; margin: 0; }

/* home: exclusive selection */
.io-home {
  border: 1px solid rgba(216, 178, 110, 0.4);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, #FFFEFB, #F8F2E6);
  padding: clamp(40px, 6vw, 76px);
  box-shadow: 0 24px 60px rgba(176, 137, 72, 0.10);
}
.io-chips { display: flex; gap: 12px 16px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.io-chip {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 100px; font-size: 12.5px; letter-spacing: 0.06em;
  background: #FFFFFF; border: 1px solid rgba(216, 178, 110, 0.5); color: #666;
}
.io-chip i { font-style: normal; color: #B08948; font-size: 11px; }

/* ============================================================
   V10 — Наличност „по заявка“ + мобилен админ
   ============================================================ */
.badge-req { background: #FFFFFF; color: #8F6528; border: 1px solid rgba(176, 137, 72, .6); }
body[data-page="admin"] .badge-req { background: rgba(212,163,115,.15); color: #E8C49C; border-color: rgba(212,163,115,.4); }

/* ---------- админ панелът на телефон ---------- */
@media (max-width: 900px) {
  body[data-page="admin"] .admin-shell { grid-template-columns: 1fr; }
  body[data-page="admin"] .admin-side {
    position: sticky; top: 0; z-index: 50; height: auto;
    padding: 14px 14px 12px;
    border-right: none; border-bottom: 1px solid var(--line-soft);
    background: rgba(10, 10, 10, .96); backdrop-filter: blur(14px);
  }
  body[data-page="admin"] .admin-side .logo { margin-bottom: 12px; padding-left: 0; }
  body[data-page="admin"] .admin-side .logo-crown { width: 24px; height: 24px; }
  body[data-page="admin"] .admin-side .logo-word svg { height: 12px; }
  /* навигацията става хоризонтална лента */
  body[data-page="admin"] .admin-nav {
    display: flex; gap: 6px; overflow-x: auto; padding-bottom: 4px;
    scrollbar-width: none;
  }
  body[data-page="admin"] .admin-nav::-webkit-scrollbar { display: none; }
  body[data-page="admin"] .admin-nav button {
    flex: 0 0 auto; padding: 9px 14px; font-size: 12.5px; border-radius: 100px;
    border: 1px solid var(--line-soft); white-space: nowrap; gap: 8px;
  }
  body[data-page="admin"] .admin-nav button svg { width: 15px; height: 15px; }
  body[data-page="admin"] .admin-side > div:last-child {
    margin-top: 10px !important; display: flex !important; gap: 8px;
  }
  body[data-page="admin"] .admin-side > div:last-child .btn { flex: 1; padding: 9px 12px; font-size: 10.5px; }
  body[data-page="admin"] .admin-main { padding: 18px 14px 60px; }
  body[data-page="admin"] .admin-title { font-size: 24px; margin-bottom: 18px; }
  body[data-page="admin"] .admin-toolbar { flex-direction: column; align-items: stretch; gap: 12px; }
  body[data-page="admin"] .admin-toolbar > div { display: flex; gap: 8px; }
  body[data-page="admin"] .admin-toolbar .btn { flex: 1; }
  body[data-page="admin"] .stat-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  body[data-page="admin"] .stat-card { padding: 16px 14px; }
  body[data-page="admin"] .stat-card .sc-value { font-size: 25px; }
  body[data-page="admin"] .stat-card .sc-label { font-size: 9.5px; letter-spacing: .18em; }
  body[data-page="admin"] .admin-card { padding: 18px 16px; }
  /* таблиците: скролват се хоризонтално, вместо да се чупят */
  body[data-page="admin"] .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
  body[data-page="admin"] .admin-table td, body[data-page="admin"] .admin-table th { padding: 11px 12px; font-size: 13px; }
  body[data-page="admin"] .admin-table .btn { padding: 7px 12px; font-size: 10px; margin: 2px 0; }
  /* формата за обява — едно поле на ред, удобно за пръст */
  body[data-page="admin"] .form-row { grid-template-columns: 1fr; gap: 14px; }
  body[data-page="admin"] .field input,
  body[data-page="admin"] .field select,
  body[data-page="admin"] .field textarea { font-size: 16px; padding: 13px 16px; } /* 16px спира зуума на iOS */
  body[data-page="admin"] .pimg-thumb { width: 66px; height: 66px; }
}

/* ============================================================
   V11 — Видима навигация на телефон
   ============================================================ */
.mobile-strip { display: none; }

@media (max-width: 1024px) {
  /* лента с категориите — плъзга се хоризонтално, винаги видима */
  .mobile-strip {
    display: flex; gap: 6px; align-items: center;
    padding: 0 4vw 10px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-top: 1px solid rgba(229, 223, 210, .5);
    padding-top: 10px;
    mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 22px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 22px), transparent 100%);
  }
  .mobile-strip::-webkit-scrollbar { display: none; }
  .mobile-strip a {
    flex: 0 0 auto; white-space: nowrap;
    padding: 8px 15px; border-radius: 100px;
    font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
    color: #666; background: #FFFFFF;
    border: 1px solid var(--line-soft);
    transition: all .3s var(--ease-lux);
  }
  .mobile-strip a:hover, .mobile-strip a:active { color: #7A1026; border-color: rgba(122,16,38,.35); }
  .mobile-strip a.active {
    color: #FFFFFF; border-color: transparent;
    background: linear-gradient(135deg, #8F1F35, #7A1026);
    box-shadow: 0 4px 14px rgba(122, 16, 38, .28);
  }
  /* при скрол лентата се скрива, за да не заема място */
  .site-header.scrolled .mobile-strip {
    max-height: 0; padding-top: 0; padding-bottom: 0;
    overflow: hidden; border-top-color: transparent;
    transition: max-height .4s var(--ease-lux), padding .4s var(--ease-lux);
  }
  .mobile-strip { max-height: 60px; transition: max-height .4s var(--ease-lux), padding .4s var(--ease-lux); }

  /* по-компактен хедър, за да има място за всичко */
  :root { --header-h: 66px; }
  .header-main { gap: 8px; padding-inline: 0; }
  .logo-crown { width: 26px; height: 26px; }
  .logo-word svg { height: 13px; }
  .logo-tag { display: none; }
  .header-actions { gap: 0; }
  .icon-btn { width: 38px; height: 38px; }
  .icon-btn svg { width: 18px; height: 18px; }
  .lang-btn { padding: 7px 10px; font-size: 11px; gap: 4px; }
  .lang-menu { right: -8px; }
}

@media (max-width: 420px) {
  .mobile-strip a { padding: 7px 12px; font-size: 11px; }
  .header-actions .lang-switch { display: none; }   /* езикът остава в бургер менюто */
  .logo-word svg { height: 12px; }
}

/* тъмен вариант в шоурума/футъра не се ползва — лентата е само в светлия хедър */
body[data-page="admin"] .mobile-strip { display: none !important; }
