:root {
  --bg: #04090e;
  --bg-2: #08141c;
  --cyan: #4fd6e8;
  --cyan-dim: #2a8fa0;
  --gold: #e8c14a;
  --gold-dim: #a88820;
  --ink: #f4f7fb;
  --muted: #8aa0b0;
  --btn: #12222c;
  --line: #2c4a57;
  --card: #0b1820;
  --danger: #e07a6a;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
  --nav-h: 66px;
  --radius: 20px;
  --dock-h: 68px;
}

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

html { scroll-behavior: smooth; }

html, body { min-height: 100%; overflow-x: hidden; }
[hidden] { display: none !important; }

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 50% -8%, #18485a 0%, transparent 42%),
    radial-gradient(ellipse at 100% 0%, rgba(232, 193, 74, 0.12), transparent 32%),
    radial-gradient(ellipse at 0% 80%, rgba(79, 214, 232, 0.08), transparent 36%),
    var(--bg);
  padding-bottom: calc(var(--dock-h) + 18px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(79, 214, 232, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 64%, rgba(232, 193, 74, 0.14) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.06) 0 1px, transparent 2px);
  background-size: 140px 140px, 180px 180px, 90px 90px;
}

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

.skip { position: absolute; left: -999px; top: 8px; }
.skip:focus { left: 12px; z-index: 80; background: var(--gold); color: #111; padding: 8px 12px; border-radius: 8px; }

.ribbon {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 7px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1408;
  background: linear-gradient(90deg, #b8922c, var(--gold), #b8922c);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(4, 9, 14, 0.72);
  border-bottom: 1px solid rgba(79, 214, 232, 0.16);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

body.is-scrolled .site-header {
  background: rgba(4, 9, 14, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(232, 193, 74, 0.28);
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  min-height: var(--nav-h);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand { display: flex; align-items: center; gap: 10px; }

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 0 0 2px #0b1c24, 0 0 22px rgba(79, 214, 232, 0.35);
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 1.08rem;
  text-shadow: 2px 2px 0 #000, 0 0 16px rgba(79, 214, 232, 0.32);
}

.nav-links { display: none; align-items: center; gap: 4px; }

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.86rem;
  border: 1px solid transparent;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: var(--cyan);
  border-color: rgba(79, 214, 232, 0.3);
  background: rgba(16, 36, 44, 0.75);
}

.nav-tools { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.drop { position: relative; }

.drop > button,
.icon-btn,
.burger {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--btn);
  color: var(--ink);
  cursor: pointer;
}

.drop > button { font-size: 0.76rem; font-weight: 800; letter-spacing: 0.04em; color: var(--cyan); }

.icon-btn { width: 40px; padding: 0; display: grid; place-items: center; position: relative; }

.badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1408;
  font-size: 0.68rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}

.menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #0c1a22;
  box-shadow: var(--shadow);
  z-index: 20;
}

.drop.open .menu { display: grid; gap: 4px; }

.menu button {
  text-align: left;
  padding: 9px 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  border-radius: 10px;
  cursor: pointer;
}

.menu button:hover { background: #122832; color: var(--cyan); }

.burger { width: 40px; padding: 0; display: grid; place-items: center; gap: 4px; }
.burger span { display: block; width: 16px; height: 2px; background: var(--cyan); }

.drawer { display: none; position: fixed; inset: 0; z-index: 40; }
.drawer.open { display: block; }
.drawer-bg { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.58); }
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(86vw, 320px);
  height: 100%;
  padding: 22px 18px;
  background: #07141b;
  border-left: 1px solid var(--line);
  display: grid;
  align-content: start;
  gap: 10px;
}

.drawer-panel a,
.drawer-panel button {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--ink);
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 14px 28px;
}

.hero-block {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  padding: 8px 0 4px;
}

.hero-glow {
  position: relative;
  isolation: isolate;
  width: min(78vw, 360px);
}

.hero-glow::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 40px;
  background: conic-gradient(from 120deg, rgba(79, 214, 232, 0.45), rgba(232, 193, 74, 0.16), rgba(79, 214, 232, 0.45));
  filter: blur(18px);
  opacity: 0.55;
  animation: spin 10s linear infinite;
  z-index: -1;
}

.hero {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 0 0 3px #0b1c24, 0 22px 56px rgba(0, 0, 0, 0.5);
}

@keyframes spin { to { transform: rotate(1turn); } }

.mark {
  font-size: clamp(2.3rem, 10vw, 4.8rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.9;
  text-shadow: 3px 4px 0 #0a0a0a, 0 0 28px rgba(79, 214, 232, 0.42);
}

h1, .gold-title {
  font-size: clamp(1.3rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.sub, .muted { color: var(--muted); }

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.stat {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(79, 214, 232, 0.22);
  background: rgba(10, 22, 28, 0.7);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.search-row { width: min(100%, 760px); display: grid; gap: 10px; }

.search-box {
  display: flex;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(79, 214, 232, 0.28);
  background: rgba(10, 22, 28, 0.88);
  box-shadow: 0 0 0 4px rgba(79, 214, 232, 0.04);
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.search-box button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: linear-gradient(180deg, #1c4a56, #16323c);
  color: var(--cyan);
  font-weight: 800;
  cursor: pointer;
}

.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }

.chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #0a161c;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.16s ease;
}

.chip.is-on, .chip:hover {
  border-color: rgba(79, 214, 232, 0.5);
  color: var(--cyan);
  background: #10242c;
  box-shadow: 0 0 16px rgba(79, 214, 232, 0.12);
}

.vitrine { margin-top: 26px; }

.section-head { text-align: center; margin-bottom: 16px; }

.section-head h2 {
  font-size: clamp(1.4rem, 5vw, 2rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(79, 214, 232, 0.32);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.card {
  background: linear-gradient(180deg, #10232c 0%, var(--card) 40%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card.is-hidden { display: none; }

.card:hover {
  border-color: rgba(79, 214, 232, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42), 0 0 24px rgba(79, 214, 232, 0.12);
}

.tile-wrap { position: relative; overflow: hidden; }

.tile-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.12) 48%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}

.card:hover .tile-wrap::after { animation: shine 0.7s ease; }

@keyframes shine { to { transform: translateX(120%); } }

.tile {
  height: 168px;
  position: relative;
  overflow: hidden;
  background: #07141b;
}

.tile::before {
  content: "";
  position: absolute;
  inset: -10%;
  background: url("hero.png") center / cover no-repeat;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tile-a::before { background-position: 50% 10%; background-size: 230%; filter: saturate(1.28) contrast(1.14); }
.tile-b::before { background-position: 88% 36%; background-size: 250%; filter: hue-rotate(42deg) saturate(1.45) contrast(1.1); }
.tile-c::before { background-position: 12% 70%; background-size: 260%; filter: hue-rotate(148deg) saturate(0.92) brightness(1.05); }
.tile-d::before { background-position: 70% 48%; background-size: 240%; filter: sepia(0.3) saturate(1.35) contrast(1.12); }
.tile-e::before { background-position: 30% 22%; background-size: 210%; filter: hue-rotate(198deg) saturate(1.25) brightness(0.96); }
.tile-f::before { background-position: 60% 80%; background-size: 280%; filter: grayscale(0.22) contrast(1.28) brightness(1.08) sepia(0.18); }
.tile-g::before { background-position: 18% 55%; background-size: 245%; filter: hue-rotate(88deg) saturate(1.32); }
.tile-h::before { background-position: 95% 18%; background-size: 270%; filter: hue-rotate(276deg) saturate(1.4) contrast(1.08); }
.tile-i::before { background-position: 40% 90%; background-size: 220%; filter: hue-rotate(186deg) saturate(0.82) contrast(1.22); }
.tile-j::before { background-position: 8% 40%; background-size: 255%; filter: hue-rotate(24deg) saturate(1.55) brightness(1.05); }
.tile-k::before { background-position: 55% 5%; background-size: 200%; filter: hue-rotate(208deg) brightness(0.78) contrast(1.2); }
.tile-l::before { background-position: 78% 72%; background-size: 290%; filter: hue-rotate(328deg) contrast(1.3) saturate(1.12) brightness(0.88); }

.tile-a::after { background: linear-gradient(180deg, rgba(79,214,232,.1), rgba(6,16,24,.68)); }
.tile-b::after { background: repeating-linear-gradient(90deg, transparent 0 17px, rgba(232,193,74,.1) 17px 18px), linear-gradient(180deg, transparent 42%, rgba(6,16,24,.74)); }
.tile-c::after { background: radial-gradient(circle at 74% 28%, rgba(79,214,232,.22), transparent 40%), linear-gradient(180deg, transparent 38%, rgba(6,16,24,.7)); }
.tile-d::after { background: repeating-linear-gradient(135deg, transparent 0 12px, rgba(232,193,74,.08) 12px 13px), linear-gradient(180deg, transparent 40%, rgba(20,14,6,.72)); }
.tile-e::after { background: linear-gradient(160deg, rgba(79,214,232,.22), transparent 50%), linear-gradient(180deg, transparent 36%, rgba(6,16,24,.75)); }
.tile-f::after { background: radial-gradient(circle at 20% 80%, rgba(232,193,74,.2), transparent 36%), linear-gradient(180deg, transparent 40%, rgba(6,16,24,.7)); }
.tile-g::after { background: repeating-linear-gradient(0deg, transparent 0 14px, rgba(79,214,232,.08) 14px 15px), linear-gradient(180deg, transparent 42%, rgba(6,16,24,.72)); }
.tile-h::after { background: radial-gradient(circle at 80% 20%, rgba(180,120,255,.22), transparent 38%), linear-gradient(180deg, transparent 40%, rgba(6,16,24,.74)); }
.tile-i::after { background: linear-gradient(115deg, rgba(40,90,110,.25), transparent 48%), linear-gradient(180deg, transparent 38%, rgba(6,16,24,.76)); }
.tile-j::after { background: repeating-linear-gradient(45deg, transparent 0 10px, rgba(255,255,255,.05) 10px 11px), linear-gradient(180deg, transparent 40%, rgba(6,16,24,.7)); }
.tile-k::after { background: linear-gradient(200deg, rgba(20,40,70,.3), transparent 46%), linear-gradient(180deg, transparent 36%, rgba(4,10,16,.8)); }
.tile-l::after { background: radial-gradient(circle at 50% 100%, rgba(232,193,74,.16), transparent 42%), linear-gradient(180deg, rgba(4,8,14,.2), rgba(4,8,14,.78)); }

.pill {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(8, 16, 22, 0.72);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.pill-new { color: var(--gold); border: 1px solid rgba(232, 193, 74, 0.35); }
.pill-map { color: var(--cyan); border: 1px solid rgba(79, 214, 232, 0.35); }
.pill-wave { color: #9ce8f2; border: 1px solid rgba(79, 214, 232, 0.45); }
.pill-set { color: #e8d9a0; border: 1px solid rgba(232, 193, 74, 0.28); }
.pill-line { color: #c8d8e0; border: 1px solid rgba(200, 216, 224, 0.28); }

.sku {
  position: absolute;
  left: 8px;
  bottom: 8px;
  z-index: 2;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(6, 14, 20, 0.72);
  border: 1px solid rgba(79, 214, 232, 0.22);
  color: var(--cyan);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.heart {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 16, 22, 0.66);
  color: #fff;
  cursor: pointer;
  transition: 0.16s ease;
}

.heart.is-on { color: var(--gold); border-color: rgba(232, 193, 74, 0.6); transform: scale(1.08); }

.card-body { padding: 12px 12px 14px; display: grid; gap: 7px; }
.card h3 { font-size: 1rem; font-weight: 800; letter-spacing: 0.02em; }

.spec {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  min-height: 2.1em;
}

.soon {
  color: var(--gold);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-gallery { display: grid; gap: 10px; }
.product-stage .tile { height: min(52vw, 320px); border-radius: 24px; box-shadow: var(--shadow); }
.thumbs { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.thumbs .tile {
  height: 64px;
  border-radius: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}
.thumbs .tile.is-on { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(79, 214, 232, 0.28); }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 10px 0 14px;
}
.product-meta .pill { position: static; }
.product-desc { color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.related a { text-align: center; }

.ghost-btn, .cta, .tab, .field button, .logout {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--btn);
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.ghost-btn, .cta { display: block; width: 100%; padding: 9px 10px; font-size: 0.78rem; text-align: center; }
.ghost-btn[disabled], .cta[disabled], button[disabled] { cursor: not-allowed; opacity: 0.5; }

.auth-banner {
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px dashed rgba(232, 193, 74, 0.45);
  background: rgba(26, 20, 8, 0.45);
  color: var(--gold);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 700;
}

.panel {
  max-width: 560px;
  margin: 0 auto;
  padding: 22px 16px 24px;
  border-radius: 24px;
  border: 1px solid rgba(79, 214, 232, 0.22);
  background: linear-gradient(180deg, rgba(16, 36, 44, 0.96), rgba(11, 24, 32, 0.94));
  box-shadow: var(--shadow);
}

.panel.wide { max-width: 720px; }

.tabs {
  display: flex;
  gap: 6px;
  margin: 8px 0 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.tab { flex: 1 0 auto; padding: 10px 12px; font-size: 0.78rem; white-space: nowrap; }
.tab.is-on { background: #16323c; border-color: rgba(79, 214, 232, 0.45); color: var(--gold); }

.field { display: grid; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 0.76rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.field input, .field textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #07141b;
  color: var(--ink);
}

.field button, .logout, .cta { padding: 12px 14px; }

.switch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(44, 74, 87, 0.5);
  color: var(--muted);
}

.cabinet-head { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }

.avatar {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: #061018;
  background: linear-gradient(160deg, rgba(6,16,24,.15), rgba(6,16,24,.4)), url("hero.png") center 20% / 180% no-repeat;
  box-shadow: 0 0 0 2px var(--gold), 0 0 18px rgba(232, 193, 74, 0.25);
  cursor: pointer;
}

.avatar.shift-b { background-position: 70% 40%; }
.avatar.shift-c { background-position: 20% 80%; }

.empty {
  padding: 40px 16px;
  text-align: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 18px;
  background: rgba(7, 20, 27, 0.45);
}

.empty strong { display: block; color: var(--gold); margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; }

.detail { display: grid; gap: 16px; }
.detail-hero { width: 100%; max-height: 420px; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow); }

.prose { display: grid; gap: 12px; color: var(--muted); line-height: 1.55; }
.prose h2 { color: var(--cyan); letter-spacing: 0.08em; text-transform: uppercase; font-size: 1rem; }
.faq { display: grid; gap: 8px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #0b1820;
  padding: 12px 14px;
}
.faq summary { cursor: pointer; font-weight: 800; color: var(--ink); }
.faq p { margin-top: 8px; color: var(--muted); }

.lost {
  text-align: center;
  padding: 36px 12px;
}
.lost .mark { font-size: clamp(3rem, 16vw, 6rem); }

.skeletons { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; }
.skel {
  height: 280px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, #0b1820 20%, #16303a 50%, #0b1820 80%);
  background-size: 200% 100%;
  animation: pulse 1.1s ease infinite;
}
@keyframes pulse { 50% { background-position: 100% 0; } }

.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }

.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8px 16px 18px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.foot-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 8px; }

.dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(79, 214, 232, 0.22);
  background: rgba(6, 14, 20, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.dock a,
.dock button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 4px;
  border-radius: 14px;
  cursor: pointer;
}

.dock a.is-active,
.dock a:hover,
.dock button:hover { color: var(--cyan); background: #10242c; }

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--dock-h) + 14px);
  transform: translateX(-50%) translateY(16px);
  z-index: 60;
  padding: 10px 16px;
  border-radius: 999px;
  background: #12222c;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  white-space: normal;
  max-width: min(92vw, 420px);
  text-align: center;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (min-width: 760px) {
  body { padding-bottom: 24px; }
  .nav-links { display: flex; margin-left: 8px; }
  .burger, .dock { display: none; }
  .grid, .skeletons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-block { padding-top: 18px; }
  .detail { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .toast { bottom: 22px; }
}

@media (min-width: 1080px) {
  .grid, .skeletons { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .tile { height: 186px; }
  .product-stage .tile { height: 360px; }
}
