/* ============ POWDER — свобода движения ============ */
:root {
  --ink: #0b0b0c;
  --bg: #ffffff;
  --paper: #f4f4ef;
  --pink: #ff3e8e;
  --green: #a8e815;
  --line: #e4e4de;
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --shadow: 5px 5px 0 var(--ink);
}

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

html { scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: inherit; }
s { text-decoration-thickness: 2px; text-decoration-color: var(--pink); }

.wrap { max-width: 1280px; margin: 0 auto; padding-inline: clamp(16px, 4vw, 48px); }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.01em; }

.price, .num { font-variant-numeric: tabular-nums lining-nums; }

/* маркер-подчёркивания */
.mark-g { background: linear-gradient(transparent 58%, var(--green) 58%, var(--green) 94%, transparent 94%); padding-inline: 0.08em; }
.mark-p { background: linear-gradient(transparent 58%, var(--pink) 58%, var(--pink) 94%, transparent 94%); padding-inline: 0.08em; color: var(--ink); }
.tilt { display: inline-block; transform: rotate(-2deg); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- кнопки ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  padding: 15px 28px;
  box-shadow: 4px 4px 0 var(--green);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  text-align: center;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--pink); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--pink); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: 4px 4px 0 var(--pink); }
.btn-ghost:hover { background: var(--ink); color: #fff; box-shadow: 7px 7px 0 var(--green); }
.btn-pink { background: var(--pink); border-color: var(--ink); color: #fff; box-shadow: 4px 4px 0 var(--ink); }
.btn-pink:hover { background: var(--ink); box-shadow: 7px 7px 0 var(--green); }
.btn-card { width: 100%; padding: 11px 12px; font-size: 11px; box-shadow: 3px 3px 0 var(--green); }
.btn-card:hover { box-shadow: 5px 5px 0 var(--pink); }

/* ---------- бейджи ---------- */
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 5px 10px; border: 2px solid var(--ink);
  transform: rotate(-4deg);
}
.badge-pink { background: var(--pink); color: #fff; }
.badge-green { background: var(--green); color: var(--ink); }
.badge-sale { background: var(--ink); color: var(--green); top: 12px; left: auto; right: 12px; transform: rotate(3deg); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}
.header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 72px; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; display: flex; align-items: baseline; gap: 2px; }
.logo i { font-style: normal; color: var(--pink); }
.logo em { font-style: normal; font-family: var(--font-body); font-weight: 600; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #888; margin-left: 10px; align-self: center; }
.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em;
  padding-block: 4px;
  background: linear-gradient(var(--green), var(--green)) left bottom / 0% 4px no-repeat;
  transition: background-size 0.25s ease;
}
.main-nav a:hover, .main-nav a.active { background-size: 100% 4px; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative; display: flex; align-items: center; gap: 8px;
  background: none; border: 2px solid var(--ink); padding: 9px 14px;
  font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em;
  transition: background 0.18s ease, color 0.18s ease;
}
.cart-btn:hover { background: var(--ink); color: #fff; }
.cart-badge {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px; padding-inline: 5px;
  background: var(--pink); color: #fff; border-radius: 999px;
  font-size: 12px; font-weight: 800; font-variant-numeric: tabular-nums;
  transition: transform 0.2s ease;
}
.cart-badge.is-empty { background: var(--line); color: var(--ink); }
#burger { display: none; background: none; border: 2px solid var(--ink); width: 44px; height: 44px; position: relative; }
#burger span, #burger span::before, #burger span::after {
  content: ''; position: absolute; left: 9px; right: 9px; height: 3px; background: var(--ink); transition: transform 0.25s ease, opacity 0.25s ease;
}
#burger span { top: 50%; margin-top: -1.5px; }
#burger span::before { top: -8px; }
#burger span::after { top: 8px; }
.menu-open #burger span { background: transparent; }
.menu-open #burger span::before { transform: translateY(8px) rotate(45deg); }
.menu-open #burger span::after { transform: translateY(-8px) rotate(-45deg); }

.mobile-nav {
  display: none;
  border-bottom: 2px solid var(--ink);
  background: var(--bg);
}
.mobile-nav a {
  display: block; padding: 15px clamp(16px, 4vw, 48px);
  font-family: var(--font-display); font-weight: 700; font-size: 16px; text-transform: uppercase;
  border-top: 1px solid var(--line);
}
.mobile-nav a:hover { background: var(--paper); }

/* ---------- ticker ---------- */
.ticker { background: var(--ink); color: #fff; overflow: hidden; border-bottom: 2px solid var(--ink); }
.ticker-track { display: flex; width: max-content; animation: ticker 26s linear infinite; }
.ticker-track span {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 10px 0; white-space: nowrap;
}
.ticker-track span i { font-style: normal; margin-inline: 18px; }
.ticker-track span i:nth-child(odd) { color: var(--green); }
.ticker-track span i:nth-child(even) { color: var(--pink); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- hero ---------- */
.hero { position: relative; border-bottom: 2px solid var(--ink); background: var(--paper); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); min-height: 620px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; gap: 26px; padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 48px) clamp(40px, 6vw, 80px); }
.hero-kicker {
  align-self: flex-start;
  font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--ink); color: var(--green); padding: 7px 14px; transform: rotate(-2deg);
}
.hero h1 { font-size: clamp(34px, 4.9vw, 72px); text-transform: uppercase; }
.hero h1 .line2 { display: inline-block; transform: rotate(-1.5deg); }
.hero-sub { font-size: clamp(16px, 1.4vw, 19px); max-width: 46ch; font-weight: 500; color: #333; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; overflow: hidden; border-left: 2px solid var(--ink); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-sticker {
  position: absolute; right: clamp(16px, 3vw, 40px); bottom: clamp(16px, 3vw, 40px);
  background: var(--pink); color: #fff; border: 2px solid var(--ink); box-shadow: var(--shadow);
  font-family: var(--font-display); font-weight: 700; font-size: 13px; text-transform: uppercase;
  padding: 12px 18px; transform: rotate(3deg); line-height: 1.35;
}

/* ---------- секции ---------- */
.section { padding-block: clamp(56px, 8vw, 110px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 48px); text-transform: uppercase; }
.section-link { font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 3px solid var(--pink); padding-bottom: 2px; transition: border-color 0.2s ease, color 0.2s ease; white-space: nowrap; }
.section-link:hover { border-color: var(--green); }

/* категории */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.cat-tile { position: relative; overflow: hidden; border: 2px solid var(--ink); background: var(--ink); aspect-ratio: 3 / 4; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: transform 0.5s ease, opacity 0.4s ease; }
.cat-tile:hover img { transform: scale(1.05) rotate(-1deg); opacity: 0.75; }
.cat-tile-label {
  position: absolute; left: 14px; bottom: 14px; right: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(15px, 1.4vw, 19px); text-transform: uppercase; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.cat-tile-label b { background: var(--ink); box-decoration-break: clone; -webkit-box-decoration-break: clone; padding: 4px 10px; font-weight: 700; line-height: 1.5; }
.cat-tile-label span { background: var(--green); color: var(--ink); border: 2px solid var(--ink); width: 34px; height: 34px; display: grid; place-items: center; font-family: var(--font-body); font-weight: 800; flex: none; transition: background 0.2s ease; }
.cat-tile:hover .cat-tile-label span { background: var(--pink); color: #fff; }
.cat-count { position: absolute; top: 12px; left: 12px; z-index: 2; background: #fff; border: 2px solid var(--ink); font-weight: 800; font-size: 12px; padding: 3px 9px; transform: rotate(-3deg); }

/* сделано в России */
.made { background: var(--paper); border-block: 2px solid var(--ink); }
.made-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.made h2 { font-size: clamp(28px, 3.8vw, 52px); text-transform: uppercase; margin-bottom: 20px; }
.made p { color: #333; font-weight: 500; max-width: 56ch; }
.made p + p { margin-top: 14px; }
.made-media { position: relative; }
.made-media img { border: 2px solid var(--ink); box-shadow: var(--shadow); width: 100%; height: auto; }
.made-media .hero-sticker { right: -10px; top: -18px; bottom: auto; background: var(--green); color: var(--ink); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.stat { border: 2px solid var(--ink); background: #fff; padding: 18px 16px 14px; box-shadow: 4px 4px 0 var(--green); }
.stat:nth-child(2) { box-shadow: 4px 4px 0 var(--pink); }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(22px, 2.6vw, 34px); font-variant-numeric: tabular-nums lining-nums; }
.stat span { font-size: 13px; font-weight: 600; color: #555; }

/* карточки товара */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card { display: flex; flex-direction: column; border: 2px solid var(--ink); background: #fff; transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease; }
.card:hover { box-shadow: 6px 6px 0 var(--green); }
.card:nth-child(even):hover { box-shadow: 6px 6px 0 var(--pink); }
.card-media { position: relative; display: block; overflow: hidden; border-bottom: 2px solid var(--ink); aspect-ratio: 4 / 5; background: var(--paper); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { display: flex; flex-direction: column; gap: 6px; padding: 14px 14px 16px; flex: 1; }
.card-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pink); }
.card-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; line-height: 1.3; min-height: 2.6em; }
.card-name:hover { color: var(--pink); }
.card-price-row { display: flex; align-items: baseline; gap: 10px; margin-block: 2px 10px; }
.card-price { font-weight: 800; font-size: 18px; font-variant-numeric: tabular-nums lining-nums; }
.card-old { color: #999; font-size: 14px; font-variant-numeric: tabular-nums lining-nums; }
.card .btn-card { margin-top: auto; }

/* lookbook */
.lookbook { background: var(--ink); border-block: 2px solid var(--ink); color: #fff; }
.lookbook .section-head h2 .mark-g { background: var(--green); color: var(--ink); padding: 0 0.12em; display: inline-block; transform: rotate(-1.5deg); }
.look-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.look-grid figure { position: relative; overflow: hidden; border: 2px solid #fff; margin: 0; }
.look-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.look-grid figure:hover img { transform: scale(1.06); }
.look-tall { grid-row: span 2; }
.look-wide { grid-column: span 2; }
.look-tag { position: absolute; left: 10px; bottom: 10px; background: var(--green); color: var(--ink); font-weight: 800; font-size: 12px; padding: 3px 9px; border: 2px solid var(--ink); transform: rotate(-2deg); }

/* отзывы */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { border: 2px solid var(--ink); padding: 26px 24px; background: #fff; position: relative; transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.25s ease; }
.review:hover { box-shadow: 6px 6px 0 var(--pink); }
.review::before { content: '“'; position: absolute; top: 2px; right: 18px; font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--green); }
.review-stars { color: var(--pink); font-size: 15px; letter-spacing: 3px; margin-bottom: 12px; }
.review p { font-weight: 500; color: #222; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.review-avatar { width: 44px; height: 44px; border-radius: 999px; border: 2px solid var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; background: var(--green); flex: none; }
.review:nth-child(2) .review-avatar { background: var(--pink); color: #fff; }
.review-author b { display: block; font-weight: 800; line-height: 1.25; }
.review-author span { font-size: 13px; color: #666; }

/* амбассадорская полоса */
.ambassador { background: var(--green); border-block: 2px solid var(--ink); }
.ambassador-in { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-block: clamp(36px, 5vw, 60px); }
.ambassador h2 { font-size: clamp(24px, 3vw, 40px); text-transform: uppercase; max-width: 22ch; }
.ambassador p { font-weight: 600; max-width: 52ch; margin-top: 10px; }

/* ---------- каталог ---------- */
.page-head { padding-block: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 32px); }
.page-head h1 { font-size: clamp(32px, 4.6vw, 64px); text-transform: uppercase; }
.breadcrumbs { font-size: 13px; font-weight: 600; color: #777; margin-bottom: 14px; }
.breadcrumbs a:hover { color: var(--pink); }
.catalog-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(24px, 3.5vw, 48px); align-items: start; padding-bottom: clamp(56px, 8vw, 100px); }
.filters { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 26px; }
.filter-group { border: 2px solid var(--ink); padding: 18px; background: #fff; }
.filter-group h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.filter-option { display: flex; align-items: center; gap: 10px; padding-block: 5px; font-weight: 600; font-size: 14px; cursor: pointer; }
.filter-option:hover { color: var(--pink); }
.filter-option input { accent-color: var(--pink); width: 17px; height: 17px; flex: none; }
.filter-option .num { margin-left: auto; font-size: 12px; color: #999; }
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input { width: 100%; min-width: 0; border: 2px solid var(--ink); padding: 8px 10px; font-weight: 700; font-variant-numeric: tabular-nums; }
.price-inputs input:focus { outline: 2px solid var(--pink); outline-offset: -1px; }
.filters .btn { width: 100%; }
.filter-reset { background: none; border: none; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: #888; border-bottom: 2px solid transparent; align-self: flex-start; padding: 0; }
.filter-reset:hover { color: var(--pink); border-color: var(--pink); }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.catalog-count { font-weight: 700; color: #555; font-size: 14px; }
.catalog-toolbar select { border: 2px solid var(--ink); padding: 10px 14px; font-weight: 700; font-size: 14px; background: #fff; }
.catalog-empty { border: 2px dashed var(--ink); padding: 60px 24px; text-align: center; font-weight: 600; color: #666; grid-column: 1 / -1; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.chip { border: 2px solid var(--ink); background: #fff; padding: 8px 16px; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.03em; transition: background 0.18s ease, color 0.18s ease; }
.chip:hover { background: var(--paper); }
.chip.active { background: var(--ink); color: var(--green); }

/* ---------- карточка товара ---------- */
.product-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(28px, 4.5vw, 64px); padding-block: clamp(28px, 4vw, 56px) clamp(56px, 8vw, 100px); align-items: start; }
.gallery-main { position: relative; border: 2px solid var(--ink); overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper); }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs button { border: 2px solid var(--ink); padding: 0; overflow: hidden; aspect-ratio: 1; background: var(--paper); opacity: 0.65; transition: opacity 0.2s ease, box-shadow 0.2s ease; }
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button.active, .gallery-thumbs button:hover { opacity: 1; box-shadow: 3px 3px 0 var(--pink); }
.product-info h1 { font-size: clamp(26px, 3vw, 42px); text-transform: uppercase; margin-block: 8px 14px; }
.product-cat { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--pink); }
.product-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.product-price { font-family: var(--font-body); font-weight: 800; font-size: clamp(26px, 2.6vw, 36px); font-variant-numeric: tabular-nums lining-nums; }
.product-old { color: #999; font-size: 20px; font-variant-numeric: tabular-nums lining-nums; }
.product-save { background: var(--green); border: 2px solid var(--ink); font-weight: 800; font-size: 13px; padding: 3px 10px; transform: rotate(-2deg); }
.product-desc { color: #333; font-weight: 500; margin-block: 16px 22px; max-width: 58ch; }
.opt-label { font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.chart-toggle { background: none; border: none; padding: 0; font-weight: 700; font-size: 13px; color: var(--pink); border-bottom: 2px solid var(--pink); text-transform: none; letter-spacing: 0; }
.chart-toggle:hover { color: var(--ink); border-color: var(--green); }
.opt-values { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.opt-btn { border: 2px solid var(--ink); background: #fff; min-width: 56px; padding: 11px 14px; font-weight: 800; font-size: 15px; font-variant-numeric: tabular-nums; transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease; }
.opt-btn:hover { box-shadow: 3px 3px 0 var(--green); }
.opt-btn.active { background: var(--ink); color: var(--green); box-shadow: 3px 3px 0 var(--pink); }
.size-chart { border: 2px solid var(--ink); margin-bottom: 22px; overflow-x: auto; }
.size-chart table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 420px; }
.size-chart caption { text-align: left; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; padding: 12px 14px; background: var(--green); border-bottom: 2px solid var(--ink); }
.size-chart th, .size-chart td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.size-chart th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; background: var(--paper); }
.size-chart tr:last-child td { border-bottom: none; }
.size-chart tr.hl td { background: #fdf2f7; font-weight: 700; }
.size-chart[hidden] { display: none; }
.product-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.product-actions .btn { flex: 1; min-width: 200px; }
.specs { border: 2px solid var(--ink); }
.specs h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; padding: 12px 16px; background: var(--paper); border-bottom: 2px solid var(--ink); }
.specs dl { display: grid; grid-template-columns: 1fr 1fr; }
.specs dt, .specs dd { padding: 10px 16px; font-size: 14px; border-bottom: 1px solid var(--line); }
.specs dt { font-weight: 700; color: #555; }
.specs dd { font-weight: 600; }
.specs dt:nth-last-of-type(1), .specs dd:last-of-type { border-bottom: none; }
.product-perks { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.perk { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; }
.perk i { font-style: normal; width: 26px; height: 26px; display: grid; place-items: center; background: var(--green); border: 2px solid var(--ink); font-size: 13px; flex: none; }

/* ---------- checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: clamp(28px, 4vw, 56px); align-items: start; padding-bottom: clamp(56px, 8vw, 100px); }
.checkout-form fieldset { border: 2px solid var(--ink); padding: 22px; margin-bottom: 22px; }
.checkout-form legend { font-family: var(--font-display); font-weight: 700; font-size: 14px; text-transform: uppercase; padding-inline: 10px; background: var(--green); border: 2px solid var(--ink); transform: rotate(-1deg); }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.field input, .field textarea { width: 100%; border: 2px solid var(--ink); padding: 12px 14px; font-weight: 600; background: #fff; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--pink); outline-offset: -1px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.radio-card { display: flex; gap: 12px; align-items: flex-start; border: 2px solid var(--ink); padding: 14px 16px; margin-bottom: 10px; cursor: pointer; transition: box-shadow 0.15s ease, background 0.15s ease; }
.radio-card:hover { box-shadow: 3px 3px 0 var(--green); }
.radio-card input { accent-color: var(--pink); width: 18px; height: 18px; margin-top: 3px; flex: none; }
.radio-card b { display: block; font-weight: 800; }
.radio-card span { font-size: 13px; color: #666; font-weight: 600; }
.radio-card .price { margin-left: auto; font-weight: 800; white-space: nowrap; }
.order-summary { border: 2px solid var(--ink); background: #fff; box-shadow: 6px 6px 0 var(--green); position: sticky; top: 92px; }
.order-summary h2 { font-size: 17px; text-transform: uppercase; padding: 16px 20px; border-bottom: 2px solid var(--ink); background: var(--paper); }
.summary-items { padding: 8px 20px; max-height: 380px; overflow: auto; }
.summary-item { display: flex; gap: 12px; align-items: center; padding-block: 12px; border-bottom: 1px solid var(--line); }
.summary-item:last-child { border-bottom: none; }
.summary-item img { width: 54px; height: 68px; object-fit: cover; border: 2px solid var(--ink); flex: none; }
.summary-item-name { font-weight: 700; font-size: 14px; line-height: 1.3; }
.summary-item-meta { font-size: 12px; color: #777; font-weight: 600; }
.summary-item .price { margin-left: auto; font-weight: 800; white-space: nowrap; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 20px; border-top: 2px solid var(--ink); font-weight: 800; }
.summary-total .price { font-size: 24px; }
.summary-note { padding: 0 20px 18px; font-size: 12px; color: #888; font-weight: 600; }
.checkout-empty { text-align: center; padding: 70px 20px; border: 2px dashed var(--ink); margin-bottom: 60px; }
.checkout-empty h2 { text-transform: uppercase; margin-bottom: 14px; font-size: 24px; }
.thanks { text-align: center; max-width: 640px; margin: 0 auto; padding: clamp(56px, 9vw, 110px) 16px; }
.thanks-icon { width: 84px; height: 84px; margin: 0 auto 26px; display: grid; place-items: center; background: var(--green); border: 2px solid var(--ink); box-shadow: var(--shadow); font-size: 38px; transform: rotate(-4deg); }
.thanks h1 { font-size: clamp(28px, 4vw, 48px); text-transform: uppercase; margin-bottom: 18px; }
.thanks p { color: #444; font-weight: 500; margin-bottom: 12px; }

/* ---------- drawer корзины ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(11, 11, 12, 0.5); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 90; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 100%);
  background: #fff; border-left: 2px solid var(--ink); z-index: 100;
  transform: translateX(102%); transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  display: flex; flex-direction: column;
}
.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.drawer-open .cart-drawer { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 2px solid var(--ink); background: var(--green); }
.drawer-head h2 { font-size: 17px; text-transform: uppercase; }
.drawer-close { background: none; border: 2px solid var(--ink); width: 36px; height: 36px; font-size: 16px; font-weight: 800; display: grid; place-items: center; transition: background 0.15s ease, color 0.15s ease; }
.drawer-close:hover { background: var(--ink); color: #fff; }
.drawer-items { flex: 1; overflow-y: auto; padding: 10px 22px; }
.drawer-empty { padding: 40px 0; text-align: center; color: #777; font-weight: 600; }
.drawer-item { display: flex; gap: 14px; padding-block: 16px; border-bottom: 1px solid var(--line); position: relative; }
.drawer-item-img img { border: 2px solid var(--ink); object-fit: cover; width: 72px; height: 90px; }
.drawer-item-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.drawer-item-name { font-weight: 800; font-size: 14px; line-height: 1.3; padding-right: 24px; }
.drawer-item-name:hover { color: var(--pink); }
.drawer-item-size { font-size: 12px; color: #777; font-weight: 600; }
.drawer-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.drawer-item-price { font-weight: 800; font-variant-numeric: tabular-nums; }
.drawer-item-del { position: absolute; top: 16px; right: 0; background: none; border: none; font-size: 13px; color: #999; }
.drawer-item-del:hover { color: var(--pink); }
.qty { display: inline-flex; align-items: center; border: 2px solid var(--ink); }
.qty button { width: 30px; height: 30px; background: #fff; border: none; font-size: 16px; font-weight: 800; line-height: 1; }
.qty button:hover { background: var(--green); }
.qty span { min-width: 32px; text-align: center; font-weight: 800; font-variant-numeric: tabular-nums; }
.drawer-footer { border-top: 2px solid var(--ink); padding: 18px 22px; }
.drawer-total-row { display: flex; justify-content: space-between; font-weight: 800; margin-bottom: 14px; }
.drawer-total-row .price { font-size: 22px; }
.drawer-footer .btn { width: 100%; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #fff; border-top: 2px solid var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-block: clamp(44px, 6vw, 70px) 36px; }
.footer-brand .logo { color: #fff; font-size: 28px; }
.footer-brand p { color: #aaa; font-size: 14px; margin-top: 14px; max-width: 32ch; font-weight: 500; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { border: 2px solid #fff; padding: 7px 13px; font-weight: 800; font-size: 12px; text-transform: uppercase; transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease; }
.footer-social a:hover { background: var(--green); color: var(--ink); border-color: var(--green); }
.footer-col h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 16px; }
.footer-col a { display: block; color: #ccc; font-size: 14px; font-weight: 600; padding-block: 5px; }
.footer-col a:hover { color: var(--pink); }
.footer-col p { color: #ccc; font-size: 14px; font-weight: 600; padding-block: 5px; }
.footer-disclaimer { border-top: 1px solid #2c2c2e; padding-block: 22px; font-size: 13px; color: #999; display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between; }
.footer-disclaimer a { color: var(--green); border-bottom: 1px solid var(--green); }
.footer-disclaimer a:hover { color: var(--pink); border-color: var(--pink); }

/* ---------- адаптив ---------- */
@media (max-width: 1100px) {
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(6, 1fr); }
  .cat-tile { grid-column: span 2; }
  .cat-tile:nth-child(4), .cat-tile:nth-child(5) { grid-column: span 3; aspect-ratio: 16 / 10; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  #burger { display: block; }
  .menu-open .mobile-nav { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-media { border-left: none; border-top: 2px solid var(--ink); min-height: 320px; }
  .hero-media img { position: absolute; inset: 0; }
  .made-grid { grid-template-columns: 1fr; }
  .made-media .hero-sticker { right: 8px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-layout { grid-template-columns: 1fr; }
  .look-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .specs dl { grid-template-columns: 1fr; }
  .specs dt { padding-bottom: 0; border-bottom: none; }
}

@media (max-width: 620px) {
  html { overflow-x: hidden; }
  .grid-products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-body { padding: 10px 10px 12px; }
  .card-name { font-size: 12px; }
  .card-price { font-size: 15px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-tile, .cat-tile:nth-child(4), .cat-tile:nth-child(5) { grid-column: span 1; aspect-ratio: 4 / 5; }
  .cat-tile:first-child { grid-column: span 2; aspect-ratio: 16 / 10; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:last-child { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .logo em { display: none; }
  .hero-cta .btn { flex: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
