/* ============ BreezeRun — global stylesheet ============ */

/* Fonts (self-hosted, variable) */
@font-face {
  font-family: "Fraunces";
  src: url("/assets/fonts/fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---- Design tokens ---- */
:root {
  --c-bg: #16130F;
  --c-bg-2: #1E1A14;
  --c-panel: #221D16;
  --c-line: #2E271E;
  --c-line-soft: rgba(237, 230, 216, .09);
  --c-copper: #E07A3E;
  --c-copper-2: #F0904A;
  --c-copper-ink: #1a0e05;
  --c-olive: #8FA06B;
  --c-text: #EDE6D8;
  --c-muted: #A99F8E;
  --c-dim: #7C7364;
  --c-grad: linear-gradient(135deg, #E07A3E 0%, #F0904A 55%, #C9612B 100%);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-2: cubic-bezier(.34, 1.4, .5, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .7);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1240px;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background:
    radial-gradient(1100px 600px at 82% -8%, rgba(224, 122, 62, .10), transparent 60%),
    radial-gradient(900px 500px at 6% 4%, rgba(143, 160, 107, .06), transparent 55%),
    var(--c-bg);
  background-attachment: fixed;
}

main { flex: 1 0 auto; }

[hidden] { display: none !important; }

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

a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  overflow-wrap: break-word;
  word-break: break-word;
  font-optical-sizing: auto;
}
p { margin: 0 0 1rem; overflow-wrap: break-word; }
figure, blockquote { margin: 0; }
a { overflow-wrap: break-word; word-break: break-word; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2em; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 520px) { .container { padding-inline: 16px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Section rhythm */
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 6vw, 72px); }

.eyebrow-off { display: none; } /* guard: no eyebrows used */

.section__head { margin-bottom: clamp(28px, 4vw, 52px); }
.section__title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
.section__lead { color: var(--c-muted); font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 62ch; }
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--c-copper); margin-bottom: 14px;
}
.kicker::before { content: ""; width: 26px; height: 2px; background: var(--c-grad); border-radius: 2px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600; font-size: .98rem;
  padding: 13px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  text-align: center; line-height: 1.1;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  -webkit-user-select: none; user-select: none;
}
.btn svg { width: 20px; height: 20px; }
.btn--primary {
  background: var(--c-grad); color: var(--c-copper-ink);
  box-shadow: 0 12px 28px -12px rgba(224, 122, 62, .7);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(224, 122, 62, .85); }
.btn--ghost { background: transparent; color: var(--c-text); border-color: var(--c-line); }
.btn--ghost:hover { border-color: var(--c-copper); color: var(--c-copper-2); transform: translateY(-2px); }
.btn--sm { padding: 9px 16px; font-size: .88rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(22, 19, 15, .82);
  border-bottom: 1px solid var(--c-line);
  overflow: visible;
}
.site-header__row {
  display: flex; align-items: center; gap: 20px;
  padding-block: 12px;
}
.brand { display: inline-flex; align-items: center; gap: 6px; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.32rem; color: var(--c-text); flex-shrink: 0; }
.brand svg { width: 38px; height: 38px; color: var(--c-copper); }
.brand b { color: var(--c-copper-2); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav > a { font-weight: 500; font-size: .96rem; color: var(--c-muted); transition: color .3s var(--ease); position: relative; }
.nav > a:hover { color: var(--c-text); }
.nav > a.is-active { color: var(--c-copper-2); }

.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.icon-btn {
  position: relative;
  width: 42px; height: 42px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid transparent; background: transparent;
  color: var(--c-muted); cursor: pointer;
  transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.icon-btn svg { width: 21px; height: 21px; }
.icon-btn:hover { color: var(--c-text); background: rgba(237, 230, 216, .05); border-color: var(--c-line); }
.icon-btn__badge {
  position: absolute; top: 3px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px;
  display: none; align-items: center; justify-content: center;
  font-family: "Inter", sans-serif; font-size: .66rem; font-weight: 700; line-height: 1;
  color: var(--c-copper-ink); background: var(--c-copper-2); border-radius: 999px;
}
.icon-btn__badge[data-count]:not([data-count="0"]) { display: inline-flex; }

.header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--c-muted); font-weight: 600; font-size: .92rem; padding-inline: 8px; transition: color .3s var(--ease); white-space: nowrap; }
.header-phone svg { width: 18px; height: 18px; color: var(--c-copper); }
.header-phone:hover { color: var(--c-text); }

.header-cta { margin-left: 4px; }
.nav-extra { display: none; }

/* Burger */
.burger {
  display: none; width: 44px; height: 44px; position: relative; z-index: 110; flex-shrink: 0;
  border-radius: 12px; background: rgba(237, 230, 216, .05); border: 1px solid var(--c-line);
  cursor: pointer; touch-action: manipulation; -webkit-user-select: none; user-select: none;
}
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--c-text); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease); }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .header-phone, .header-cta { display: none; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%; max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 64px)); z-index: 100; box-sizing: border-box;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 24px 26px;
    background: linear-gradient(165deg, #1E1A14 0%, #16130F 100%);
    border-top: 1px solid var(--c-line);
    box-shadow: var(--shadow);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav > a { width: 100%; padding: 15px 0; font-size: 1.22rem; color: var(--c-text); border-bottom: 1px solid var(--c-line); }
  .nav > a.is-active::before { display: none; }
  .nav-extra { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; }
  .nav-extra .header-phone { display: inline-flex; padding: 0; }
  .nav-extra .btn { width: 100%; }
  body[data-nav-open="true"] { overflow: hidden; }
  body[data-nav-open="true"] .site-header { position: fixed; top: 0; left: 0; right: 0; backdrop-filter: none; -webkit-backdrop-filter: none; background-color: var(--c-bg); }
}

/* ---- Hero (full-bleed video) ---- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(560px, 88vh, 860px);
  display: flex; align-items: center;
}
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  background: #0A0806 url("/assets/img/hero/poster.avif") center/cover no-repeat;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22, 19, 15, .55) 0%, rgba(22, 19, 15, .35) 40%, rgba(22, 19, 15, .92) 100%),
    radial-gradient(120% 90% at 50% 20%, transparent 30%, rgba(22, 19, 15, .55) 100%);
}
.hero__inner { text-align: center; padding-block: 90px; margin-inline: auto; max-width: 900px; }
.hero__title { font-size: clamp(2.5rem, 6.4vw, 5rem); font-weight: 600; letter-spacing: -.02em; }
.hero__title em { font-style: italic; color: var(--c-copper-2); }
.hero__sub { color: var(--c-text); font-size: clamp(1.05rem, 2vw, 1.35rem); opacity: .92; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 34px; justify-content: center; margin-top: 46px; }
.hero__stat b { display: block; font-family: "Fraunces", serif; font-size: 1.9rem; color: var(--c-copper-2); line-height: 1; }
.hero__stat span { font-size: .85rem; color: var(--c-muted); letter-spacing: .04em; }

/* Hero entrance — pure CSS keyframes (above the fold) */
@keyframes riseIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.first-reveal { opacity: 0; animation: riseIn .9s var(--ease) forwards; }
.first-reveal.d1 { animation-delay: .12s; }
.first-reveal.d2 { animation-delay: .24s; }
.first-reveal.d3 { animation-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .first-reveal { animation: none; opacity: 1; }
}

/* ---- Reveal on scroll (progressive enhancement: hidden only when JS is active) ---- */
html.js-anim .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js-anim .reveal.is-in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { html.js-anim .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Grids ---- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ---- Product / game card ---- */
.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius);
  overflow: hidden; min-width: 0;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: rgba(224, 122, 62, .5); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-bg-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__media::after, .pd-main::after, .qv__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: linear-gradient(165deg, rgba(224, 122, 62, .18) 0%, rgba(22, 19, 15, .10) 45%, rgba(22, 19, 15, .46) 100%);
  mix-blend-mode: multiply; transition: opacity .5s var(--ease);
}
.card:hover .card__media::after { opacity: .5; }
.card__badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; flex-wrap: wrap; gap: 6px; max-width: calc(100% - 24px); }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 600; letter-spacing: .02em;
  padding: 4px 10px; border-radius: 999px; backdrop-filter: blur(4px);
  background: rgba(22, 19, 15, .78); color: var(--c-text); border: 1px solid var(--c-line-soft);
}
.badge--copper { background: rgba(224, 122, 62, .92); color: var(--c-copper-ink); border-color: transparent; }
.badge--olive { background: rgba(143, 160, 107, .9); color: #14180d; border-color: transparent; }
.card__fav {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(22, 19, 15, .74); border: 1px solid var(--c-line-soft); color: var(--c-text);
  cursor: pointer; backdrop-filter: blur(4px); transition: color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.card__fav svg { width: 19px; height: 19px; }
.card__fav:hover { transform: scale(1.1); color: var(--c-copper-2); }
.card__fav.is-active { color: #ff6b6b; background: rgba(255, 107, 107, .16); }
.card__fav.is-active svg { fill: currentColor; }
.card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__genre { font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-olive); font-weight: 600; }
.card__name { font-family: "Fraunces", serif; font-size: 1.18rem; font-weight: 600; line-height: 1.18; }
.card__name a:hover { color: var(--c-copper-2); }
.card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 10px; }
.card__price { font-family: "Fraunces", serif; font-size: 1.32rem; color: var(--c-copper-2); font-weight: 600; }
.card__actions { display: flex; gap: 8px; }
.card__stock { font-size: .8rem; color: var(--c-olive); display: inline-flex; align-items: center; gap: 5px; }
.card__stock::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-olive); }

/* ---- Category tiles ---- */
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.cat-tile {
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  padding: 26px 14px; border-radius: var(--radius); background: var(--c-panel); border: 1px solid var(--c-line);
  transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.cat-tile:hover { transform: translateY(-6px); border-color: rgba(224, 122, 62, .5); background: var(--c-bg-2); }
.cat-tile__ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: rgba(224, 122, 62, .12); color: var(--c-copper-2); transition: transform .45s var(--ease-2); }
.cat-tile:hover .cat-tile__ico { transform: rotate(-8deg) scale(1.08); }
.cat-tile__ico svg { width: 30px; height: 30px; }
.cat-tile span { font-weight: 600; font-size: .96rem; }
.cat-tile small { color: var(--c-muted); font-size: .8rem; }

/* ---- Split feature (why us / about) ---- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--flip .split__media { order: -1; }
.split__media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 16px; }
.feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.feature-list .fi { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(143, 160, 107, .14); color: var(--c-olive); flex-shrink: 0; }
.feature-list .fi svg { width: 22px; height: 22px; }
.feature-list b { display: block; font-family: "Fraunces", serif; font-size: 1.08rem; font-weight: 600; }
.feature-list p { margin: 2px 0 0; color: var(--c-muted); font-size: .94rem; }

/* ---- Blog cards ---- */
.post {
  display: flex; flex-direction: column; background: var(--c-panel); border: 1px solid var(--c-line);
  border-radius: var(--radius); overflow: hidden; min-width: 0;
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
}
.post:hover { transform: translateY(-6px); border-color: rgba(224, 122, 62, .5); box-shadow: var(--shadow); }
.post__media { aspect-ratio: 16/10; overflow: hidden; background: var(--c-bg-2); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__body { padding: 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post__meta { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--c-muted); }
.post__tag { color: var(--c-copper); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.post__title { font-size: 1.2rem; }
.post__excerpt { color: var(--c-muted); font-size: .92rem; margin: 0; }
.post__foot { margin-top: auto; padding-top: 8px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.post__more { color: var(--c-copper-2); font-weight: 600; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.post__more:hover { color: var(--c-copper); }
.post__more svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.post:hover .post__more svg { transform: translateX(4px); }
.icon-mini { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--c-line); background: transparent; color: var(--c-muted); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: color .3s var(--ease), border-color .3s var(--ease); }
.icon-mini svg { width: 18px; height: 18px; }
.icon-mini:hover { color: var(--c-copper-2); border-color: var(--c-copper); }

/* ---- Reviews (static grid, not carousel) ---- */
.review {
  background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 13px; min-width: 0; overflow: hidden;
}
.review__photo { margin: -22px -22px 4px; aspect-ratio: 16 / 10; overflow: hidden; background: var(--c-bg-2); position: relative; }
.review__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.review:hover .review__photo img { transform: scale(1.05); }
.review__photo::after { content: "Verified purchase"; position: absolute; bottom: 10px; left: 10px; font-size: .68rem; font-weight: 600; letter-spacing: .02em; color: var(--c-text); background: rgba(22,19,15,.8); border: 1px solid var(--c-line-soft); backdrop-filter: blur(4px); padding: 3px 9px; border-radius: 999px; }
.review__date { font-size: .76rem; color: var(--c-dim); }
.review__stars { display: inline-flex; gap: 2px; color: var(--c-copper-2); }
.review__stars svg { width: 17px; height: 17px; }
.review__text { font-size: 1rem; margin: 0; color: var(--c-text); }
.review__who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review__who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 1px solid var(--c-line); }
.review__who b { font-family: "Fraunces", serif; font-weight: 600; font-size: 1rem; }
.review__who span { display: block; font-size: .8rem; color: var(--c-muted); }

/* ---- Info tiles (buy & delivery) ---- */
.info-tile { background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 28px; transition: border-color .45s var(--ease), transform .45s var(--ease); }
.info-tile:hover { border-color: rgba(224, 122, 62, .45); transform: translateY(-4px); }
.info-tile__ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: rgba(224, 122, 62, .12); color: var(--c-copper-2); margin-bottom: 16px; }
.info-tile__ico svg { width: 26px; height: 26px; }
.info-tile h3 { font-size: 1.16rem; }
.info-tile p { color: var(--c-muted); font-size: .94rem; margin: 0; }

/* ---- Lead magnet banner ---- */
.lead {
  position: relative; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--c-line);
  background: linear-gradient(120deg, rgba(224, 122, 62, .16), rgba(143, 160, 107, .08)), var(--c-panel);
  display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 30px;
}
.lead__body { padding: clamp(28px, 4vw, 52px); }
.lead__body h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
.lead__media { align-self: stretch; }
.lead__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

/* ---- Contacts / map ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contact-card { background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.contact-row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; }
.contact-row .fi { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(224, 122, 62, .12); color: var(--c-copper-2); flex-shrink: 0; }
.contact-row .fi svg { width: 21px; height: 21px; }
.contact-row b { display: block; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); }
.contact-row a, .contact-row span { color: var(--c-text); }
.contact-row a:hover { color: var(--c-copper-2); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(.3) saturate(.85) brightness(.9); }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-size: .84rem; font-weight: 600; color: var(--c-muted); }
.input, .textarea, .cselect__trigger {
  width: 100%; font-family: inherit; font-size: .96rem; color: var(--c-text);
  background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  padding: 12px 14px; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.input::placeholder, .textarea::placeholder { color: var(--c-dim); }
.input:focus, .textarea:focus, .cselect__trigger:focus { outline: none; border-color: var(--c-copper); box-shadow: 0 0 0 3px rgba(224, 122, 62, .18); }
.textarea { resize: none; min-height: 130px; }

/* Custom select */
.cselect { position: relative; }
.cselect__trigger { display: flex; align-items: center; justify-content: space-between; gap: 10px; cursor: pointer; text-align: left; }
.cselect__trigger::after { content: ""; width: 9px; height: 9px; border-right: 2px solid var(--c-muted); border-bottom: 2px solid var(--c-muted); transform: rotate(45deg); transition: transform .3s var(--ease); margin-top: -4px; }
.cselect.is-open .cselect__trigger::after { transform: rotate(-135deg); margin-top: 2px; }
.cselect__panel {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 6px; max-height: 260px; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.cselect.is-open .cselect__panel { opacity: 1; visibility: visible; transform: none; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s; }
.cselect__opt { padding: 10px 12px; border-radius: 8px; cursor: pointer; font-size: .92rem; transition: background .2s var(--ease); }
.cselect__opt:hover, .cselect__opt.is-sel { background: rgba(224, 122, 62, .14); color: var(--c-copper-2); }

/* ---- Cart dropdown ---- */
.cart-pop {
  position: fixed; top: 70px; right: 20px; z-index: 200; width: min(380px, calc(100vw - 32px));
  background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.98); transform-origin: top right;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.cart-pop.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear 0s; }
.cart-pop__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--c-line); }
.cart-pop__head b { font-family: "Fraunces", serif; font-size: 1.1rem; }
.cart-pop__list { max-height: 320px; overflow-y: auto; padding: 8px; }
.cart-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 12px; align-items: center; padding: 10px; border-radius: 10px; }
.cart-item:hover { background: var(--c-bg-2); }
.cart-item img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; }
.cart-item__name { font-size: .9rem; font-weight: 600; line-height: 1.2; }
.cart-item__price { font-size: .84rem; color: var(--c-copper-2); }
.cart-item__rm { color: var(--c-dim); background: none; border: none; cursor: pointer; padding: 4px; }
.cart-item__rm:hover { color: #ff6b6b; }
.cart-item__rm svg { width: 16px; height: 16px; }
.cart-pop__empty { padding: 34px 18px; text-align: center; color: var(--c-muted); }
.cart-pop__foot { padding: 16px 18px; border-top: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 12px; }
.cart-pop__total { display: flex; align-items: center; justify-content: space-between; font-weight: 600; }
.cart-pop__total span:last-child { font-family: "Fraunces", serif; color: var(--c-copper-2); font-size: 1.2rem; }

/* ---- Wishlist modal list ---- */
.wish-list { display: flex; flex-direction: column; gap: 10px; max-height: 56vh; overflow-y: auto; margin-top: 8px; }
.wish-list .cart-item { grid-template-columns: 54px 1fr auto; }
.cart-item__body { min-width: 0; }
.wish-actions { display: flex; align-items: center; gap: 8px; }

/* ---- Modal ---- */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none !important; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(8, 6, 4, .74); backdrop-filter: blur(4px); animation: fadeIn .3s var(--ease); }
.modal__box {
  position: relative; z-index: 1; width: min(760px, 100%); max-height: 88vh; overflow-y: auto;
  background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius); box-shadow: var(--shadow);
  animation: popIn .4s var(--ease);
}
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 2; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: translateY(18px) scale(.97); } to { opacity: 1; transform: none; } }

/* ---- Checkout modal ---- */
.checkout { display: grid; grid-template-columns: 1.3fr 1fr; }
.checkout__form { padding: clamp(24px, 3vw, 36px); }
.checkout__summary { background: var(--c-bg-2); padding: clamp(24px, 3vw, 36px); border-left: 1px solid var(--c-line); display: flex; flex-direction: column; gap: 10px; }
.checkout__summary h4 { font-family: "Fraunces", serif; font-size: 1.1rem; margin-bottom: 6px; }
.co-lines { display: flex; flex-direction: column; gap: 8px; padding-bottom: 12px; margin-bottom: 6px; border-bottom: 1px solid var(--c-line); }
.co-line { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; font-size: .92rem; color: var(--c-muted); }
.co-line b { color: var(--c-text); font-weight: 600; }
.co-line--total { border-top: 1px solid var(--c-line); padding-top: 12px; margin-top: 6px; font-size: 1rem; color: var(--c-text); }
.co-line--total b { font-family: "Fraunces", serif; color: var(--c-copper-2); font-size: 1.3rem; }
.co-note { font-size: .8rem; color: var(--c-dim); margin: 12px 0 0; }
@media (max-width: 720px) { .checkout { grid-template-columns: 1fr; } .checkout__summary { border-left: none; border-top: 1px solid var(--c-line); order: -1; } }

/* ---- Toast ---- */
.toast-wrap { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center; pointer-events: none; }
.toast { pointer-events: none; display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-radius: 14px; background: var(--c-panel); border: 1px solid var(--c-line); box-shadow: var(--shadow); font-weight: 600; animation: popIn .35s var(--ease); }
.toast .fi { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(143, 160, 107, .18); color: var(--c-olive); }
.toast--err .fi { background: rgba(255, 107, 107, .18); color: #ff8a8a; }
.toast .fi svg { width: 20px; height: 20px; }

/* ---- Footer ---- */
.site-footer { background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .28)); border-top: 1px solid var(--c-line); margin-top: auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 34px; padding-block: clamp(44px, 6vw, 72px); }
.footer-brand .brand { font-size: 1.3rem; margin-bottom: 14px; }
.footer-brand p { color: var(--c-muted); font-size: .92rem; }
.footer-legal-entity { font-size: .84rem; color: var(--c-dim); line-height: 1.7; }
.footer-legal-entity b { color: var(--c-muted); }
.footer-col h4 { font-family: "Inter", sans-serif; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-copper); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--c-muted); font-size: .92rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--c-text); }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--c-line); display: grid; place-items: center; color: var(--c-muted); transition: color .3s var(--ease), border-color .3s var(--ease); }
.footer-social a:hover { color: var(--c-copper-2); border-color: var(--c-copper); }
.footer-social svg { width: 19px; height: 19px; }
.footer-pay { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.footer-pay svg { width: 46px; height: 31px; color: var(--c-muted); }
.footer-return { border-top: 1px solid var(--c-line); border-bottom: 1px solid var(--c-line); padding-block: 20px; color: var(--c-muted); font-size: .88rem; }
.footer-return b { color: var(--c-text); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; color: var(--c-dim); font-size: .84rem; }
.footer-bottom nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--c-text); }

/* ---- Support chat ---- */
.chat-toggle {
  position: fixed; right: 22px; bottom: 22px; z-index: 210;
  width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--c-grad); color: var(--c-copper-ink); box-shadow: 0 14px 30px -8px rgba(224, 122, 62, .7);
  display: grid; place-items: center; transition: transform .4s var(--ease-2);
}
.chat-toggle svg { width: 27px; height: 27px; }
.chat-toggle:hover { transform: scale(1.08) rotate(-6deg); }
.chat-toggle .i-close { display: none; }
body[data-chat-open="true"] .chat-toggle .i-chat { display: none; }
body[data-chat-open="true"] .chat-toggle .i-close { display: block; }

.chat-panel {
  position: fixed; right: 22px; bottom: 94px; z-index: 210;
  width: min(360px, calc(100vw - 32px)); height: min(460px, calc(100dvh - 130px));
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--c-panel); border: 1px solid var(--c-line); border-radius: 20px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(18px) scale(.97); transform-origin: bottom right;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
body[data-chat-open="true"] .chat-panel { opacity: 1; visibility: visible; transform: none; transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear 0s; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--c-bg-2); border-bottom: 1px solid var(--c-line); }
.chat-head img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 1px solid var(--c-copper); }
.chat-head b { font-family: "Fraunces", serif; font-size: 1.02rem; display: block; }
.chat-head span { font-size: .76rem; color: var(--c-olive); display: inline-flex; align-items: center; gap: 5px; }
.chat-head span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--c-olive); }
.chat-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 82%; padding: 10px 14px; border-radius: 14px; font-size: .9rem; line-height: 1.45; }
.chat-msg--bot { align-self: flex-start; background: var(--c-bg-2); border: 1px solid var(--c-line); border-bottom-left-radius: 4px; }
.chat-msg--user { align-self: flex-end; background: var(--c-grad); color: var(--c-copper-ink); border-bottom-right-radius: 4px; font-weight: 500; }
.chat-quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 16px 10px; }
.chat-quick button { font-size: .8rem; padding: 7px 12px; border-radius: 999px; border: 1px solid var(--c-line); background: transparent; color: var(--c-muted); cursor: pointer; transition: color .3s var(--ease), border-color .3s var(--ease); }
.chat-quick button:hover { color: var(--c-copper-2); border-color: var(--c-copper); }
.chat-form { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--c-line); }
.chat-form input { flex: 1; min-width: 0; background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: 999px; padding: 10px 14px; color: var(--c-text); font-family: inherit; font-size: .9rem; }
.chat-form input:focus { outline: none; border-color: var(--c-copper); }
.chat-form button { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--c-grad); color: var(--c-copper-ink); cursor: pointer; display: grid; place-items: center; flex-shrink: 0; transition: transform .3s var(--ease); }
.chat-form button:hover { transform: scale(1.08); }
.chat-form button svg { width: 19px; height: 19px; }

/* ---- Page hero (inner pages) ---- */
.page-hero { padding-block: clamp(48px, 7vw, 96px) clamp(28px, 4vw, 44px); text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.page-hero p { color: var(--c-muted); font-size: clamp(1rem, 1.7vw, 1.18rem); max-width: 66ch; margin-inline: auto; }
.crumbs { display: flex; justify-content: center; gap: 8px; font-size: .84rem; color: var(--c-dim); margin-bottom: 18px; }
.crumbs a:hover { color: var(--c-copper-2); }
.crumbs span { color: var(--c-copper); }

/* ---- Prose (legal, articles) ---- */
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-top: 1.8em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.4em; }
.prose p, .prose li { color: var(--c-muted); }
.prose strong { color: var(--c-text); }
.prose a { color: var(--c-copper-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Utility ---- */
.text-center { text-align: center; }
.mt-gap { margin-top: clamp(28px, 4vw, 46px); }
.divider { height: 1px; background: var(--c-line); border: 0; margin: 0; }
.tag-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; border: 1px solid var(--c-line); background: transparent; color: var(--c-muted); font-size: .86rem; font-weight: 500; cursor: pointer; transition: all .3s var(--ease); }
.tag-pill:hover, .tag-pill.is-active { color: var(--c-copper-ink); background: var(--c-copper); border-color: transparent; }

/* ---- Quick view modal ---- */
.qv { display: grid; grid-template-columns: 1fr 1fr; }
.qv__media { position: relative; background: var(--c-bg-2); }
.qv__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.qv__body { padding: clamp(24px, 3vw, 36px); }
.qv__foot { margin: 16px 0; }
.qv__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 640px) { .qv { grid-template-columns: 1fr; } .qv__media img { min-height: 220px; max-height: 260px; } }

/* ---- Catalog layout ---- */
.catalog-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filters { position: sticky; top: calc(var(--header-offset, 70px) + 16px); background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 22px; }
.filters__group h4 { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-copper); margin-bottom: 12px; }
.chip-col { display: flex; flex-wrap: wrap; gap: 8px; }
.range { width: 100%; accent-color: var(--c-copper); }
.range-out { font-family: "Fraunces", serif; color: var(--c-copper-2); font-size: 1.05rem; }
.catalog-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.catalog-bar__count { color: var(--c-muted); font-size: .92rem; }
.catalog-search { position: relative; flex: 1; min-width: 220px; max-width: 340px; }
.catalog-search input { width: 100%; background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: 999px; padding: 11px 16px 11px 42px; color: var(--c-text); font-family: inherit; }
.catalog-search input:focus { outline: none; border-color: var(--c-copper); }
.catalog-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--c-muted); }
.filters-toggle { display: none; }
@media (max-width: 900px) {
  .catalog-wrap { grid-template-columns: 1fr; }
  .filters { position: static; }
  .filters-toggle { display: inline-flex; }
  .filters[data-collapsed="true"] { display: none; }
}

/* ---- Product page ---- */
.pd { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.pd-main { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); background: var(--c-bg-2); }
.pd-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pd-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pd-thumb { width: 84px; height: 66px; border-radius: 10px; overflow: hidden; border: 1px solid var(--c-line); background: var(--c-bg-2); cursor: pointer; padding: 0; transition: border-color .3s var(--ease); }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.is-active { border-color: var(--c-copper); }
.pd-genre { color: var(--c-olive); font-weight: 600; letter-spacing: .04em; }
.pd-price { font-family: "Fraunces", serif; font-size: 2.2rem; color: var(--c-copper-2); margin: 8px 0 16px; }
.pd-desc { color: var(--c-muted); }
.pd-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.card__fav-btn.is-active { color: #ff8a8a; border-color: rgba(255,138,138,.4); }
.card__fav-btn.is-active svg { fill: currentColor; }
.pd-specs { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: var(--c-line); border: 1px solid var(--c-line); border-radius: var(--radius-sm); overflow: hidden; }
.pd-specs li { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: var(--c-panel); }
.pd-specs span { color: var(--c-muted); font-size: .9rem; }
.pd-specs b { font-family: "Fraunces", serif; }
@media (max-width: 820px) { .pd { grid-template-columns: 1fr; } }

/* Delivery table */
.delivery-table { width: 100%; border-collapse: collapse; border: 1px solid var(--c-line); border-radius: var(--radius-sm); overflow: hidden; }
.delivery-table th, .delivery-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--c-line); font-size: .94rem; }
.delivery-table th { background: var(--c-bg-2); color: var(--c-copper); font-family: "Inter", sans-serif; font-weight: 600; letter-spacing: .04em; }
.delivery-table td { color: var(--c-muted); }
.delivery-table tr:last-child td { border-bottom: none; }

/* ---- Slot machine ---- */
.slot-stage { background: linear-gradient(160deg, var(--c-panel), var(--c-bg-2)); border: 1px solid var(--c-line); border-radius: var(--radius); padding: clamp(22px, 4vw, 40px); }
.slot-hud { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 24px; }
.slot-hud__box { background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 14px; padding: 12px 22px; text-align: center; min-width: 108px; }
.slot-hud__box span { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); }
.slot-hud__box b { font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--c-copper-2); }
.slot-reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 440px; margin: 0 auto 22px; }
.reel { height: 96px; overflow: hidden; background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 14px; box-shadow: inset 0 8px 16px -8px rgba(0,0,0,.8), inset 0 -8px 16px -8px rgba(0,0,0,.8); }
.reel__strip { display: flex; flex-direction: column; will-change: transform; }
.reel__strip span { height: 96px; display: grid; place-items: center; font-size: 3rem; line-height: 1; }
.slot-controls { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.bet-ctrl { display: inline-flex; align-items: center; gap: 10px; background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 999px; padding: 6px 8px; }
.bet-ctrl button { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--c-line); background: transparent; color: var(--c-text); cursor: pointer; display: grid; place-items: center; transition: color .3s var(--ease), border-color .3s var(--ease); }
.bet-ctrl button:hover { color: var(--c-copper-2); border-color: var(--c-copper); }
.bet-ctrl button svg { width: 18px; height: 18px; }
.bet-ctrl b { font-family: "Fraunces", serif; min-width: 54px; text-align: center; font-size: 1.2rem; }
.bet-ctrl small { color: var(--c-muted); font-size: .74rem; letter-spacing: .1em; }
.slot__msg { text-align: center; margin-top: 18px; min-height: 26px; font-weight: 600; }
.slot__msg.is-win { color: var(--c-olive); }
.slot__msg.is-lose { color: var(--c-muted); }

/* Legal / RG plates */
.plates { display: flex; flex-wrap: wrap; gap: 14px; }
.plate { display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border: 1px solid var(--c-line); border-radius: 12px; background: var(--c-panel); color: var(--c-muted); font-size: .88rem; font-weight: 600; transition: border-color .3s var(--ease), color .3s var(--ease); }
.plate:hover { border-color: var(--c-copper); color: var(--c-text); }
.age { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--c-copper); color: var(--c-copper-2); display: grid; place-items: center; font-family: "Fraunces", serif; font-weight: 700; font-size: .92rem; flex-shrink: 0; }
.disclaimer { background: linear-gradient(120deg, rgba(224,122,62,.07), transparent 60%), var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius-sm); padding: 20px 24px; color: var(--c-muted); font-size: .92rem; }
.disclaimer b { color: var(--c-text); }

/* Legal content full width */
.legal-content h2 { margin-top: 1.6em; }
.legal-content { color: var(--c-muted); }
.legal-content strong { color: var(--c-text); }

/* Social games info block */
.sg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sg-card { background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px; }
.sg-card__ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: rgba(143,160,107,.14); color: var(--c-olive); margin-bottom: 14px; }
.sg-card__ico svg { width: 26px; height: 26px; }
@media (max-width: 820px) { .sg-grid { grid-template-columns: 1fr; } }

/* Prize list */
.prizes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.prize { text-align: center; padding: 24px; background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius); }
.prize b { display: block; font-family: "Fraunces", serif; font-size: 2rem; color: var(--c-copper-2); }
@media (max-width: 640px) { .prizes { grid-template-columns: 1fr; } }

/* Business model steps */
.bm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.bm-card { background: var(--c-panel); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 26px; }
.bm-card__num { font-family: "Fraunces", serif; font-size: 1.4rem; color: var(--c-copper); }
@media (max-width: 720px) { .bm-grid { grid-template-columns: 1fr; } }

/* Details accordion */
details { border: 1px solid var(--c-line); border-radius: var(--radius-sm); background: var(--c-panel); margin-bottom: 12px; overflow: hidden; }
details summary { list-style: none; cursor: pointer; padding: 18px 20px; font-family: "Fraunces", serif; font-weight: 600; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
details summary::-webkit-details-marker { display: none; }
details summary::after { content: ""; width: 10px; height: 10px; border-right: 2px solid var(--c-muted); border-bottom: 2px solid var(--c-muted); transform: rotate(45deg); transition: transform .3s var(--ease); flex-shrink: 0; }
details.is-open summary::after { transform: rotate(-135deg); }
.details__c { padding: 0 20px 18px; color: var(--c-muted); overflow: hidden; }

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split--flip .split__media { order: 0; }
  .lead { grid-template-columns: 1fr; }
  .lead__media { order: -1; }
  .lead__media img { min-height: 200px; max-height: 260px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .header-actions .header-search-btn { }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .hero { min-height: auto; }
  .hero__inner { padding-block: 68px; }
  .hero__video { display: none; } /* mobile: poster only, saves bandwidth + LCP */
}
@media (max-width: 640px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .hero__inner { padding-block: 54px; }
  .cart-pop { top: auto; bottom: 0; right: 0; left: 0; width: 100%; border-radius: 18px 18px 0 0; }
  .cart-pop { transform: translateY(100%); transform-origin: bottom; }
  .cart-pop.is-open { transform: none; }
}
@media (max-width: 560px) {
  .header-search-btn { display: none; }
  .site-header__row { gap: 10px; }
  .brand { font-size: 1.1rem; }
  .brand svg { width: 32px; height: 32px; }
}
@media (max-width: 420px) {
  .cat-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 20px; }
  .header-actions { gap: 0; }
  .icon-btn { width: 36px; height: 36px; }
  .icon-btn svg { width: 19px; height: 19px; }
  .site-header__row { gap: 8px; padding-block: 10px; }
  .brand { font-size: .98rem; }
  .brand svg { width: 26px; height: 26px; }
  .icon-btn__badge { min-width: 15px; height: 15px; font-size: .56rem; top: 0; right: 0; }
}
