/* =====================================================
   APPEL GADGETS — STYLE.CSS
   Premium dark theme · champagne accents
   ===================================================== */

/* ---------- 1. TOKENS ---------- */
:root {
  --bg-0:        #050505;
  --bg-1:        #0a0a0a;
  --bg-2:        #111111;
  --bg-3:        #1a1a1a;
  --bg-4:        #232323;
  --line:        rgba(229, 201, 160, 0.12);
  --line-strong: rgba(229, 201, 160, 0.28);

  --fg:          #f5f1ea;
  --fg-soft:     rgba(245, 241, 234, 0.72);
  --fg-mute:     rgba(245, 241, 234, 0.48);

  --gold:        #E5C9A0;
  --gold-light:  #F2E0BC;
  --gold-deep:   #B89766;
  --gold-shadow: rgba(229, 201, 160, 0.35);

  --error:       #ff6b6b;
  --success:     #6bd9a3;

  --radius-s:    8px;
  --radius-m:    16px;
  --radius-l:    24px;
  --radius-xl:   32px;

  --shadow-1:    0 4px 20px rgba(0,0,0,0.4);
  --shadow-2:    0 12px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 60px rgba(229, 201, 160, 0.18);

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container:   1280px;
  --gutter:      clamp(20px, 4vw, 48px);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: transparent; color: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; }
p { margin: 0 0 1em 0; }

/* ---------- 3. CANVAS / DOTS BG ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 600px at 80% -10%, rgba(229, 201, 160, 0.08), transparent 70%),
    radial-gradient(700px 500px at -10% 30%, rgba(229, 201, 160, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(229, 201, 160, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
}

main, header, footer, section { position: relative; z-index: 1; }

/* ---------- 4. PRELOADER ---------- */
.preloader {
  position: fixed; inset: 0; background: var(--bg-0); z-index: 100;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out);
}
.preloader.hidden { opacity: 0; pointer-events: none; }
.preloader__logo { animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.7; } 50% { transform: scale(1.1); opacity: 1; } }

/* ---------- 5. PAGE TRANSITION ---------- */
.page-transition {
  position: fixed; inset: 0; background: var(--bg-0);
  z-index: 999; pointer-events: none;
  transform: translateY(100%);
}
.page-transition__inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.page-transition svg { width: 56px; height: 56px; opacity: 0; }

/* ---------- 6. CUSTOM CURSOR ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none;
  z-index: 9999; mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}
body.cursor-hover .cursor-dot { width: 0; height: 0; }
body.cursor-hover .cursor-ring { width: 60px; height: 60px; border-color: var(--gold-light); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- 7. CONTAINER ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- 8. NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background 0.4s var(--ease-out), backdrop-filter 0.4s, padding 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; height: 44px; }
.nav__logo svg { height: 44px; width: auto; }
.nav__menu {
  display: flex; align-items: center; gap: 36px;
}
.nav__link {
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--fg-soft);
  transition: color 0.3s;
  position: relative; padding: 6px 0;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover, .nav__link.active { color: var(--fg); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); transform-origin: left; }
.nav__actions { display: flex; align-items: center; gap: 16px; }
.nav__lang {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; letter-spacing: 0.1em; color: var(--fg-mute);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px;
}
.nav__lang button {
  padding: 2px 6px; border-radius: 999px;
  font-size: 12px; letter-spacing: 0.1em;
  color: var(--fg-mute); transition: color 0.3s, background 0.3s;
}
.nav__lang button.active { background: var(--gold); color: var(--bg-0); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 999px; border: 1px solid var(--line);
}
.nav__burger svg { width: 18px; height: 18px; stroke: var(--gold); }

@media (max-width: 860px) {
  .nav__menu, .nav__lang { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ---------- 9. MOBILE MENU ---------- */
.mmenu {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg-0);
  display: flex; flex-direction: column;
  padding: 80px 32px 32px;
  transform: translateY(-100%);
  transition: transform 0.6s var(--ease-out);
}
.mmenu.open { transform: translateY(0); }
.mmenu__close {
  position: absolute; top: 24px; right: 32px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 999px;
}
.mmenu__list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.mmenu__list a {
  font-family: var(--font-display);
  font-size: 36px; color: var(--fg);
}
.mmenu__lang { margin-top: auto; display: flex; gap: 12px; }
.mmenu__lang button {
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; letter-spacing: 0.1em; color: var(--fg-mute);
}
.mmenu__lang button.active { background: var(--gold); color: var(--bg-0); border-color: var(--gold); }

/* ---------- 10. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px; letter-spacing: 0.04em; font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.btn--primary {
  background: var(--gold);
  color: #1a1208;
  box-shadow: 0 8px 30px rgba(229, 201, 160, 0.25);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 14px 40px rgba(229, 201, 160, 0.35); }
.btn--ghost {
  border: 1px solid var(--line-strong);
  color: var(--fg);
}
.btn--ghost:hover { background: var(--gold); color: #1a1208; border-color: var(--gold); }
.btn--dark {
  background: var(--bg-3);
  color: var(--fg);
}
.btn--dark:hover { background: var(--bg-4); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn--sm { padding: 10px 18px; font-size: 13px; }
.btn[disabled], .btn[aria-disabled="true"] { opacity: 0.4; cursor: not-allowed; }
.btn svg { width: 16px; height: 16px; }

/* ---------- 11. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.9;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px;
  align-items: center;
  z-index: 2;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding-top: 120px; }
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__kicker::before {
  content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 12px var(--gold);
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  0% { box-shadow: 0 0 8px var(--gold); }
  100% { box-shadow: 0 0 20px var(--gold), 0 0 28px var(--gold-shadow); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 144px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  max-width: 480px;
  margin: 24px 0 36px;
  color: var(--fg-soft);
  font-size: clamp(15px, 1.4vw, 18px);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #1a1208 0%, #050505 70%);
}
.hero__visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(229, 201, 160, 0.3), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(229, 201, 160, 0.15), transparent 50%);
  filter: blur(30px);
  animation: orbit 14s linear infinite;
}
@keyframes orbit { to { transform: rotate(360deg); } }
.hero__visual-3d {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.hero__scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.3em; color: var(--fg-mute);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Floating product card inside hero visual */
.hero__product-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  padding: 20px;
  background: rgba(10, 10, 10, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; gap: 16px;
}
.hero__product-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__product-card-icon svg { width: 24px; height: 24px; stroke: #1a1208; }
.hero__product-card-text small { color: var(--gold); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.hero__product-card-text strong { display: block; font-size: 14px; font-weight: 500; margin-top: 2px; }

/* ---------- 12. SECTIONS ---------- */
.section { padding: clamp(80px, 12vw, 140px) 0; position: relative; }
.section--alt { background: var(--bg-1); }
.section__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; margin-bottom: 56px; flex-wrap: wrap;
}
.section__kicker {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.01em;
  max-width: 16ch;
}
.section__sub { color: var(--fg-soft); max-width: 50ch; }
.section__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.04em; color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, gap 0.3s;
}
.section__link:hover { border-color: var(--gold); gap: 16px; }

/* ---------- 13. CATEGORY GRID ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.cat-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: linear-gradient(145deg, var(--bg-2), var(--bg-1));
  aspect-ratio: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
}
.cat-card::before {
  content: '';
  position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(229, 201, 160, 0.12), transparent 50%);
  opacity: 0; transition: opacity 0.6s;
}
.cat-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.cat-card:hover::before { opacity: 1; }
.cat-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(229, 201, 160, 0.08);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s, transform 0.4s;
}
.cat-card:hover .cat-card__icon { background: var(--gold); transform: rotate(-6deg) scale(1.06); }
.cat-card:hover .cat-card__icon svg { stroke: #1a1208; }
.cat-card__icon svg { width: 28px; height: 28px; stroke: var(--gold); transition: stroke 0.4s; }
.cat-card__label {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
}
.cat-card__arrow {
  position: absolute; top: 28px; right: 28px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--line);
  transition: background 0.4s, border-color 0.4s, transform 0.4s;
}
.cat-card__arrow svg { width: 14px; height: 14px; stroke: var(--gold); }
.cat-card:hover .cat-card__arrow { background: var(--gold); border-color: var(--gold); transform: rotate(-45deg); }
.cat-card:hover .cat-card__arrow svg { stroke: #1a1208; }

/* ---------- 14. PRODUCT CARDS ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.product-card {
  position: relative;
  display: flex; flex-direction: column;
  border-radius: var(--radius-l);
  background: var(--bg-1);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, box-shadow 0.4s;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.product-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-2);
}
.product-card__media-gradient {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.product-card__media-icon {
  width: 84px; height: 84px;
  stroke: rgba(229, 201, 160, 0.55);
  stroke-width: 1.4;
  filter: drop-shadow(0 0 30px rgba(229, 201, 160, 0.25));
}
.product-card__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out), opacity 0.4s;
}
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}
.badge {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 10px;
  background: var(--bg-0); color: var(--gold);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}
.badge--sale { background: var(--gold); color: #1a1208; border-color: var(--gold); }
.badge--new { background: var(--fg); color: #050505; border-color: var(--fg); }
.product-card__quickbuy {
  position: absolute; right: 14px; top: 14px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-0); border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s, background 0.3s;
  z-index: 2;
}
.product-card:hover .product-card__quickbuy { opacity: 1; transform: translateY(0); }
.product-card__quickbuy:hover { background: var(--gold); }
.product-card__quickbuy:hover svg { stroke: #1a1208; }
.product-card__quickbuy svg { width: 16px; height: 16px; stroke: var(--gold); transition: stroke 0.3s; }
.product-card__body {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-card__brand {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 22px; line-height: 1.15;
  margin-bottom: 6px;
}
.product-card__tag {
  font-size: 13px;
  color: var(--fg-soft);
  margin-bottom: 18px;
  line-height: 1.45;
}
.product-card__bottom {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.price { display: flex; flex-direction: column; }
.price__now {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
}
.price__old {
  font-size: 12px;
  color: var(--fg-mute);
  text-decoration: line-through;
}
.rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--fg-soft); }
.rating svg { width: 14px; height: 14px; fill: var(--gold); stroke: var(--gold); }

/* ---------- 15. BRANDS MARQUEE ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  padding: 36px 0;
}
.marquee__track {
  display: flex; gap: 80px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--fg-mute);
  display: flex; align-items: center; gap: 24px;
}
.marquee__item::after { content: '✦'; color: var(--gold); font-size: 18px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 16. STATS ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  padding: 56px 32px;
  text-align: left;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 84px);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label { color: var(--fg-soft); margin-top: 12px; font-size: 14px; }
@media (max-width: 720px) {
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ---------- 17. PROCESS / STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 40px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg-1);
  position: relative;
  overflow: hidden;
}
.step__num {
  font-family: var(--font-display);
  font-size: 84px;
  position: absolute; right: 24px; top: 8px;
  color: rgba(229, 201, 160, 0.07);
  line-height: 1;
}
.step__title {
  font-family: var(--font-display);
  font-size: 28px; margin-bottom: 14px;
}
.step__text { color: var(--fg-soft); font-size: 15px; }

/* ---------- 18. CTA BLOCK ---------- */
.cta-block {
  margin: 100px 0 0;
  padding: clamp(48px, 8vw, 100px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(229, 201, 160, 0.14) 0%, rgba(184, 151, 102, 0.08) 100%),
    var(--bg-1);
  border: 1px solid var(--line-strong);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(229, 201, 160, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-block__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  position: relative;
}
.cta-block__sub { color: var(--fg-soft); margin-bottom: 32px; position: relative; }
.cta-block .btn { position: relative; }

/* ---------- 19. FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-1);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr;
  gap: 56px;
  margin-bottom: 56px;
}
@media (max-width: 980px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__news { grid-column: 1 / -1; }
}
.footer__brand svg { height: 44px; width: auto; }
.footer__tag { color: var(--fg-soft); margin-top: 16px; font-size: 14px; max-width: 280px; }
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul a {
  color: var(--fg-soft); font-size: 14px;
  transition: color 0.3s;
}
.footer__col ul a:hover { color: var(--fg); }
.footer__news .news {
  display: flex; gap: 8px; margin-top: 16px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px;
}
.footer__news input {
  flex: 1; background: transparent; border: 0; padding: 8px 14px;
  color: var(--fg); outline: none;
  font-size: 14px;
}
.footer__news button {
  background: var(--gold); color: #1a1208;
  padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 500;
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--fg-mute);
}

/* ---------- 20. SHOP PAGE ---------- */
.page-head {
  padding: 160px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-head__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 120px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.page-head__sub {
  color: var(--fg-soft);
  margin-top: 18px;
  max-width: 56ch;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 60px 0 120px;
}
@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside { order: 2; }
}

.shop-aside { position: sticky; top: 100px; align-self: start; }
.shop-aside h4 {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.shop-aside__group { margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
.shop-aside__group:last-child { border-bottom: 0; }
.filter-list label {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 14px; color: var(--fg-soft);
  cursor: pointer; transition: color 0.3s;
}
.filter-list label:hover { color: var(--fg); }
.filter-list input[type="checkbox"], .filter-list input[type="radio"] {
  appearance: none;
  width: 16px; height: 16px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  position: relative; cursor: pointer;
  flex-shrink: 0;
}
.filter-list input[type="radio"] { border-radius: 50%; }
.filter-list input[type="checkbox"]:checked,
.filter-list input[type="radio"]:checked { background: var(--gold); border-color: var(--gold); }
.filter-list input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 4px; top: 1px;
  width: 5px; height: 9px;
  border-right: 2px solid #1a1208;
  border-bottom: 2px solid #1a1208;
  transform: rotate(45deg);
}
.filter-list input[type="radio"]:checked::after {
  content: ''; position: absolute;
  inset: 3px;
  border-radius: 50%; background: #1a1208;
}
.price-inputs {
  display: flex; gap: 8px; align-items: center;
}
.price-inputs input {
  width: 100%;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px;
  color: var(--fg); font-size: 13px;
}
.shop-main__toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 32px; flex-wrap: wrap;
}
.shop-search {
  flex: 1; min-width: 260px;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: 999px;
}
.shop-search input {
  flex: 1; border: 0; background: transparent; outline: none;
  font-size: 14px; color: var(--fg);
}
.shop-search input::placeholder { color: var(--fg-mute); }
.shop-search svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }
.shop-sort {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: 999px; padding: 12px 16px;
  color: var(--fg); font-size: 14px;
  outline: none; cursor: pointer;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
                    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% + 2px), calc(100% - 11px) calc(50% + 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.shop-count { color: var(--fg-mute); font-size: 13px; }

.shop-empty {
  padding: 80px 20px; text-align: center;
  color: var(--fg-soft);
}
.shop-empty h3 {
  font-family: var(--font-display); font-size: 32px; margin-bottom: 12px;
}

/* ---------- 21. PRODUCT DETAIL ---------- */
.pd-layout {
  padding: 140px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 920px) { .pd-layout { grid-template-columns: 1fr; gap: 40px; padding-top: 110px; } }

.pd-gallery { position: sticky; top: 110px; align-self: start; }
.pd-gallery__main {
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-2);
  position: relative;
}
.pd-gallery__main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.pd-gallery__main:hover img { transform: scale(1.04); }
.pd-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-top: 14px;
}
.pd-gallery__thumb {
  aspect-ratio: 1;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s;
  position: relative;
}
.pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-gallery__thumb.active { border-color: var(--gold); }

.pd-info { padding-top: 8px; }
.pd-info__brand {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.pd-info__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.pd-info__tag { color: var(--fg-soft); margin-bottom: 28px; font-size: 17px; }
.pd-info__rating { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.pd-info__rating .stars { display: flex; gap: 2px; }
.pd-info__rating .stars svg { width: 16px; height: 16px; fill: var(--gold); stroke: var(--gold); }
.pd-info__price-row {
  display: flex; align-items: baseline; gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.pd-info__price {
  font-family: var(--font-display);
  font-size: 44px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.pd-info__price-old { color: var(--fg-mute); text-decoration: line-through; font-size: 18px; }
.pd-info__price-stock {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--success);
}
.pd-info__price-stock.out { color: var(--error); }
.pd-info__price-stock::before {
  content: ''; width: 8px; height: 8px;
  border-radius: 50%; background: currentColor;
  box-shadow: 0 0 12px currentColor;
}
.pd-info__buy { display: flex; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.pd-info__delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  padding: 24px; margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--bg-1);
}
.pd-info__delivery div { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--fg-soft); }
.pd-info__delivery svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; }

.pd-tabs {
  padding: 40px 0 80px;
  border-top: 1px solid var(--line);
}
.pd-tabs__nav {
  display: flex; gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.pd-tabs__btn {
  padding: 14px 22px;
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--fg-mute);
  position: relative;
  transition: color 0.3s;
}
.pd-tabs__btn::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s var(--ease-out);
}
.pd-tabs__btn.active { color: var(--fg); }
.pd-tabs__btn.active::after { transform: scaleX(1); }
.pd-tabs__panel { display: none; }
.pd-tabs__panel.active { display: block; }
.pd-tabs__panel p { color: var(--fg-soft); max-width: 70ch; }

.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 16px 0; border-bottom: 1px solid var(--line);
  display: flex; gap: 12px; color: var(--fg-soft); font-size: 15px;
}
.feature-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  margin-top: 10px; flex-shrink: 0;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table td { padding: 14px 0; font-size: 14px; }
.spec-table td:first-child { color: var(--fg-mute); width: 40%; }
.spec-table td:last-child { color: var(--fg); }

.review-list { display: grid; gap: 20px; }
.review {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--bg-1);
}
.review__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; flex-wrap: wrap; gap: 8px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold); color: #1a1208;
  display: flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 14px;
}
.review__name { font-size: 14px; }
.review__verified { font-size: 11px; color: var(--success); display: block; margin-top: 2px; }
.review__stars { display: flex; gap: 2px; }
.review__stars svg { width: 14px; height: 14px; fill: var(--gold); stroke: var(--gold); }
.review__date { font-size: 12px; color: var(--fg-mute); }
.review__text { color: var(--fg-soft); margin: 0; font-size: 14px; }

/* ---------- 22. ABOUT ---------- */
.about-hero {
  padding: 160px 0 80px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}
@media (max-width: 920px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-grid__visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(229, 201, 160, 0.3), transparent 60%),
    var(--bg-1);
  position: relative;
  border: 1px solid var(--line);
}
.about-grid__visual svg.appel-bg {
  position: absolute; inset: 0;
  width: 80%; height: 80%;
  margin: auto;
  opacity: 0.15;
}
.about-grid p { color: var(--fg-soft); font-size: 17px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg-1);
}
.value__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value__icon svg { width: 22px; height: 22px; stroke: #1a1208; }
.value h3 { font-family: var(--font-display); font-size: 26px; margin-bottom: 10px; }
.value p { color: var(--fg-soft); margin: 0; font-size: 15px; }

/* ---------- 23. CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 60px 0 120px;
}
@media (max-width: 920px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-card {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--bg-1);
}
.contact-card h3 { font-family: var(--font-display); font-size: 32px; margin-bottom: 24px; }
.contact-list { display: grid; gap: 14px; margin-bottom: 24px; }
.contact-list dt { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--fg-mute); }
.contact-list dd { margin: 4px 0 0; color: var(--fg); font-size: 15px; }
.contact-list dd small { display: block; color: var(--fg-soft); font-size: 13px; margin-top: 2px; }

/* ---------- 24. SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-stagger.is-visible > * {
  opacity: 1; transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(8) { transition-delay: 0.4s; }

/* Headline reveal — words */
.split-line { display: inline-block; overflow: hidden; vertical-align: top; }
.split-word { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease-out); }
.split-line.is-visible .split-word { transform: translateY(0); }

/* ---------- 25. UTILS ---------- */
.flex { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.text-mute { color: var(--fg-mute); }
.text-soft { color: var(--fg-soft); }
.no-select { user-select: none; }

/* ---------- 26. ACCESSIBILITY ---------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- 27. SCROLLBAR ---------- */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }
