/* ─────────────────────────  база  ───────────────────────── */
:root {
  --bone:   #F4F0E9;
  --paper:  #FCFAF7;
  --ink:    #17140F;
  --ink-2:  #453D34;
  --muted:  #8A7F71;
  --line:   #E3DACE;
  --cocoa:  #7C5C42;
  --clay:   #B98F6E;
  --blush:  #E9D6C9;

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Manrope', -apple-system, 'Segoe UI', system-ui, sans-serif;

  --pad: clamp(1.25rem, 5vw, 5.5rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round;
}

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

.eyebrow {
  margin: 0 0 .9rem;
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cocoa);
}

.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -.01em;
}

/* ─────────────────────────  кнопки  ───────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .55rem;
  padding: .95rem 1.9rem;
  border: 1px solid transparent; border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .2s var(--ease);
}
.btn--dark  { background: var(--ink); color: var(--paper); }
.btn--dark:hover  { background: var(--cocoa); transform: translateY(-1px); }
.btn--ghost { background: transparent; border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--wide  { width: 100%; }
.btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }

.icon-btn {
  position: relative;
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: none; border: 0; border-radius: 50%;
  cursor: pointer;
  transition: background .25s var(--ease);
}
.icon-btn:hover { background: rgba(23, 20, 15, .07); }

.badge {
  position: absolute; top: 1px; right: 0;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: grid; place-items: center;
  background: var(--cocoa); color: var(--paper);
  border-radius: 999px;
  font-size: 10px; font-weight: 700; line-height: 1;
}
/* display:grid інакше перебиває [hidden] з user-agent-стилів. */
.badge[hidden] { display: none; }

/* ─────────────────────────  оголошення  ───────────────────────── */
.announce {
  overflow: hidden;
  background: var(--ink); color: var(--bone);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
}
.announce__track {
  display: flex; gap: 3rem;
  width: max-content;
  padding: .7rem 0;
  animation: slide 42s linear infinite;
}
.announce__track span { white-space: nowrap; }

@keyframes slide { to { transform: translateX(-50%); } }

/* ─────────────────────────  шапка  ───────────────────────── */
.header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 240, 233, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.header.is-stuck { border-color: var(--line); background: rgba(244, 240, 233, .95); }

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: .85rem var(--pad);
}

.brand { text-align: center; }
.brand__mark {
  display: block;
  font-family: var(--serif);
  font-size: 27px; font-weight: 500;
  letter-spacing: .28em; text-indent: .28em;
  line-height: 1;
}
.brand__sub {
  display: block; margin-top: .3rem;
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted);
}

.nav { display: flex; gap: 1.6rem; }
.nav a, .nav__link {
  position: relative;
  padding: .3rem 0;
  background: none; border: 0;
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer;
}
.nav a::after, .nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav a:hover::after, .nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; justify-content: flex-end; gap: .35rem; }
.header__actions .nav__link { margin-right: 1rem; }
.header__burger { display: none; }

/* ─────────────────────────  герой  ───────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) var(--pad) clamp(3rem, 6vw, 5rem);
}

.hero__title {
  margin: 0 0 1.5rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 7.4vw, 6.2rem);
  line-height: .96;
  letter-spacing: -.02em;
}
.hero__title em { font-style: italic; color: var(--cocoa); }

.hero__lead {
  max-width: 42ch; margin: 0 0 2rem;
  color: var(--ink-2); font-size: 15px;
}

.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero__stats {
  display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem);
  margin: 3rem 0 0; padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}
.hero__stats dt {
  font-family: var(--serif); font-size: 2rem; line-height: 1;
}
.hero__stats dd {
  margin: .45rem 0 0;
  font-size: 11px; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted);
}

.hero__gallery { position: relative; }
.hero__shot { margin: 0; overflow: hidden; background: var(--line); }
.hero__shot img { transition: transform 1.2s var(--ease); }
.hero__shot:hover img { transform: scale(1.04); }

.hero__shot--main { aspect-ratio: 4 / 5; border-radius: 240px 240px 6px 6px; }
.hero__shot--sub {
  position: absolute; right: -2%; bottom: -8%;
  width: 34%; aspect-ratio: 3 / 4;
  border-radius: 6px;
  outline: 10px solid var(--bone);
}

.hero__tag {
  position: absolute; left: 1.4rem; bottom: 1.4rem;
  display: flex; flex-direction: column; gap: .15rem;
  padding: .7rem 1.2rem;
  background: rgba(252, 250, 247, .93);
  backdrop-filter: blur(6px);
  border-radius: 4px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
.hero__tag b { font-size: 14px; letter-spacing: .04em; }

/* ─────────────────────────  біжучий рядок  ───────────────────────── */
.ticker {
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.ticker__track {
  display: flex; gap: 2.5rem;
  width: max-content;
  animation: slide 38s linear infinite;
  font-family: var(--serif); font-size: 1.5rem;
  color: var(--ink-2);
}
.ticker__track span { white-space: nowrap; }
.ticker__track i { color: var(--clay); font-style: normal; }

/* ─────────────────────────  категорії  ───────────────────────── */
.cats { padding: clamp(3rem, 6vw, 5rem) var(--pad) 0; }
.cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.6rem, 1.4vw, 1.1rem);
}
.cat {
  position: relative; display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden; border-radius: 4px;
  background: var(--line);
  cursor: pointer;
}
.cat img { transition: transform 1s var(--ease); }
.cat:hover img { transform: scale(1.06); }
.cat::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23, 20, 15, .55), transparent 55%);
}
.cat__label {
  position: absolute; left: 1.1rem; right: 1.1rem; bottom: 1rem; z-index: 1;
  display: flex; align-items: flex-end; justify-content: space-between; gap: .75rem;
  color: var(--paper);
}
.cat__label span {
  font-family: var(--serif); font-size: clamp(1.05rem, 1.7vw, 1.5rem); line-height: 1.15;
}
.cat__label small { flex: none; font-size: 11px; opacity: .75; white-space: nowrap; padding-bottom: .2rem; }

/* ─────────────────────────  каталог  ───────────────────────── */
.catalog { padding: clamp(3.5rem, 7vw, 6rem) var(--pad) clamp(3rem, 6vw, 5rem); }

.section-head {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.5rem;
}

.catalog__tools { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; }

.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  padding: .55rem 1.1rem;
  background: none;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer;
  transition: all .28s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.chip small { opacity: .55; margin-left: .3rem; }

.select { position: relative; display: inline-flex; align-items: center; }
.select select {
  appearance: none;
  padding: .55rem 2.3rem .55rem 1.1rem;
  background: none;
  border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer;
}
.select svg { position: absolute; right: .8rem; width: 15px; pointer-events: none; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: clamp(1.1rem, 2.2vw, 2rem) clamp(.8rem, 1.6vw, 1.4rem);
}
.grid__empty { text-align: center; color: var(--muted); padding: 3rem 0; }

/* ─────────────────────────  картка  ───────────────────────── */
.card { position: relative; display: flex; flex-direction: column; }
.card.is-hidden { display: none; }

.card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden; border-radius: 4px;
  background: var(--line);
  cursor: pointer;
}
.card__media img { position: absolute; inset: 0; transition: opacity .6s var(--ease), transform 1.2s var(--ease); }
.card__media img:nth-child(2) { opacity: 0; }
.card:hover .card__media img:nth-child(1) { opacity: 0; }
.card:hover .card__media img:nth-child(2) { opacity: 1; transform: scale(1.03); }

.card__flags {
  position: absolute; top: .7rem; left: .7rem; z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: .3rem;
}
.flag {
  padding: .3rem .65rem;
  background: var(--paper);
  border-radius: 3px;
  font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
}
.flag--order { background: var(--blush); color: var(--cocoa); }

.card__wish {
  position: absolute; top: .55rem; right: .55rem; z-index: 2;
  background: rgba(252, 250, 247, .88);
}
.card__wish.is-on { color: var(--cocoa); }
.card__wish.is-on svg { fill: currentColor; }

.card__quick {
  position: absolute; left: .7rem; right: .7rem; bottom: .7rem; z-index: 2;
  padding: .8rem;
  background: rgba(252, 250, 247, .95);
  backdrop-filter: blur(6px);
  border: 0; border-radius: 3px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer;
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .25s;
}
.card:hover .card__quick { opacity: 1; transform: none; }
.card__quick:hover { background: var(--ink); color: var(--paper); }

/* Картки в ряду тягнуться на однакову висоту — ціну притискаємо донизу,
   а місце під кружечки кольорів резервуємо, щоб ряд не «стрибав». */
.card__info { flex: 1; display: flex; flex-direction: column; padding: .95rem .15rem 0; }
.card__title {
  margin: 0 0 .25rem;
  font-family: var(--serif); font-size: 1.28rem; font-weight: 500; line-height: 1.2;
  cursor: pointer;
}
.card__meta {
  margin: 0 0 .6rem;
  font-size: 11.5px; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden;
}
.card__row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: .6rem; }
.card__price { font-size: 14px; font-weight: 600; letter-spacing: .02em; }
.card__sizes { display: flex; gap: .3rem; font-size: 10px; color: var(--muted); }
.card__sizes span {
  padding: .12rem .4rem;
  border: 1px solid var(--line); border-radius: 2px;
  letter-spacing: .06em;
}
.card__swatches { display: flex; gap: .25rem; margin-top: .55rem; min-height: 13px; }
.dot {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid rgba(23, 20, 15, .18);
}
.card__swatches small { font-size: 10px; color: var(--muted); align-self: center; margin-left: .15rem; }

/* ─────────────────────────  редакційний блок  ───────────────────────── */
.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) var(--pad);
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.editorial__media { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.editorial__media img { aspect-ratio: 3 / 4; border-radius: 4px; background: var(--line); }
.editorial__media img:last-child { margin-top: 2.5rem; }
.editorial__copy p { color: var(--ink-2); max-width: 46ch; }
.editorial__copy .section-title { margin-bottom: 1.2rem; }

.ticks { list-style: none; margin: 1.5rem 0 2rem; padding: 0; }
.ticks li {
  position: relative;
  padding: .5rem 0 .5rem 1.6rem;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.ticks li::before {
  content: '—'; position: absolute; left: 0; color: var(--clay);
}

/* ─────────────────────────  переваги  ───────────────────────── */
.perks {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad);
}
.perks svg { width: 26px; height: 26px; color: var(--cocoa); }
.perks h3 {
  margin: 1rem 0 .4rem;
  font-family: var(--serif); font-size: 1.35rem; font-weight: 500;
}
.perks p { margin: 0; font-size: 13px; color: var(--muted); }

/* ─────────────────────────  лукбук  ───────────────────────── */
.lookbook {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.5rem, 7vw, 6rem);
  text-align: center;
}
.lookbook__head { padding: 0 var(--pad) 2rem; }
.lookbook__strip {
  display: flex; gap: .7rem;
  padding: 0 var(--pad) 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.lookbook__strip::-webkit-scrollbar { display: none; }
.lookbook__strip figure {
  flex: 0 0 clamp(150px, 17vw, 230px);
  margin: 0; aspect-ratio: 3 / 4;
  overflow: hidden; border-radius: 4px; background: var(--line);
  cursor: pointer;
}
.lookbook__strip img { transition: transform 1s var(--ease); }
.lookbook__strip figure:hover img { transform: scale(1.06); }
.lookbook__strip figure:nth-child(even) { transform: translateY(1.6rem); }

/* ─────────────────────────  підвал  ───────────────────────── */
.footer { background: var(--ink); color: #CFC6B9; }
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(3rem, 6vw, 4.5rem) var(--pad) 2.5rem;
}
.footer__brand .brand__mark { color: var(--bone); margin-bottom: 1rem; }
.footer__brand p { font-size: 13px; margin: 0; }
.footer__col h4 {
  margin: 0 0 1rem;
  font-size: 10px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--clay);
}
.footer__col a {
  display: block; padding: .3rem 0;
  font-size: 13px;
  transition: color .25s var(--ease);
}
.footer__col a:hover { color: var(--bone); }

.footer__ig {
  display: inline-block; margin-top: .9rem;
  font-size: 13px; letter-spacing: .06em; color: var(--clay);
  border-bottom: 1px solid currentColor;
}
.footer__ig:hover { color: var(--bone); }

.footer__note { margin: 0 0 1.1rem; font-size: 12.5px; line-height: 1.55; }

.btn--light { border-color: rgba(207, 198, 185, .45); color: #CFC6B9; }
.btn--light:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  padding: 1.4rem var(--pad);
  border-top: 1px solid rgba(207, 198, 185, .15);
  font-size: 11px; letter-spacing: .06em;
  color: rgba(207, 198, 185, .55);
}

/* ─────────────────────────  оверлеї  ───────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(23, 20, 15, .42);
  backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .4s var(--ease);
}
.overlay.is-on { opacity: 1; }

.modal {
  position: fixed; z-index: 60;
  top: 50%; left: 50%;
  width: min(1020px, 94vw); max-height: 88vh;
  transform: translate(-50%, -46%);
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden auto;
  opacity: 0;
  transition: opacity .35s var(--ease), transform .45s var(--ease);
}
.modal.is-on { opacity: 1; transform: translate(-50%, -50%); }
.modal__close { position: absolute; top: .8rem; right: .8rem; z-index: 3; background: rgba(252,250,247,.8); }

/* minmax(0,…) — інакше min-content натуральної ширини фото (960px) розпирає колонку. */
.modal__body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }

.pv__gallery { background: var(--line); }
.pv__stage { position: relative; aspect-ratio: 3 / 4; overflow: hidden; }
.pv__stage img { position: absolute; inset: 0; }
.pv__thumbs {
  display: flex; gap: .4rem;
  padding: .5rem; overflow-x: auto;
  background: var(--paper);
  scrollbar-width: none;
}
.pv__thumbs::-webkit-scrollbar { display: none; }
.pv__thumbs button {
  flex: 0 0 54px; height: 72px;
  padding: 0; overflow: hidden;
  background: none; border: 1px solid transparent; border-radius: 3px;
  cursor: pointer; opacity: .55;
  transition: opacity .25s var(--ease), border-color .25s var(--ease);
}
.pv__thumbs button.is-active, .pv__thumbs button:hover { opacity: 1; border-color: var(--ink); }

.pv__info { padding: clamp(1.5rem, 3vw, 2.6rem); display: flex; flex-direction: column; }
.pv__title { margin: .4rem 0 .5rem; font-family: var(--serif); font-weight: 500; font-size: 2rem; line-height: 1.1; }
.pv__price { font-size: 1.15rem; font-weight: 600; }
.pv__price small { font-weight: 400; font-size: 12px; color: var(--muted); margin-left: .5rem; }
.pv__lead { color: var(--ink-2); font-size: 13.5px; margin: 1rem 0 0; }

.pv__field { margin-top: 1.5rem; }
.pv__field h4 {
  margin: 0 0 .6rem;
  font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.pv__field h4 b { color: var(--ink); font-weight: 600; letter-spacing: .06em; text-transform: none; font-size: 12px; }

.opts { display: flex; flex-wrap: wrap; gap: .4rem; }
.opt {
  min-width: 44px; padding: .5rem .85rem;
  background: none; border: 1px solid var(--line); border-radius: 3px;
  font-size: 12px; letter-spacing: .06em; cursor: pointer;
  transition: all .25s var(--ease);
}
.opt:hover { border-color: var(--ink); }
.opt.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.opt--color {
  width: 30px; height: 30px; min-width: 0; padding: 0;
  border-radius: 50%; position: relative;
}
.opt--color span { position: absolute; inset: 3px; border-radius: 50%; }
.opt--color.is-active { background: none; border-color: var(--ink); }

.pv__hint { margin: .6rem 0 0; font-size: 11.5px; color: var(--muted); }

.pv__actions { display: flex; gap: .5rem; margin-top: auto; padding-top: 1.8rem; }
.pv__actions .btn { flex: 1; }

.pv__specs { margin-top: 1.5rem; border-top: 1px solid var(--line); }
.pv__specs div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
}
.pv__specs dt { color: var(--muted); flex: 0 0 38%; }
.pv__specs dd { margin: 0; text-align: right; }

/* ─────────────────────────  шухляди  ───────────────────────── */
.drawer {
  position: fixed; z-index: 60; top: 0; right: 0;
  display: flex; flex-direction: column;
  width: min(420px, 92vw); height: 100dvh;
  background: var(--paper);
  transform: translateX(102%);
  transition: transform .45s var(--ease);
}
.drawer.is-on { transform: none; }
.drawer--left { right: auto; left: 0; transform: translateX(-102%); }

.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.drawer__head h3 { margin: 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; }
.drawer__body { flex: 1; overflow-y: auto; padding: 1.2rem 1.4rem; }
.drawer__foot { padding: 1.2rem 1.4rem; border-top: 1px solid var(--line); }
.drawer__sum { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: .3rem; }
.drawer__sum b { font-size: 17px; }
.drawer__note { margin: 0 0 1rem; font-size: 11.5px; color: var(--muted); }

.drawer__nav { padding: 1.4rem; }
.drawer__nav a {
  display: block; padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: 1.4rem;
}
.drawer__nav a small { font-family: var(--sans); font-size: 11px; color: var(--muted); margin-left: .5rem; }

.line-item { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.line-item__img { flex: 0 0 76px; aspect-ratio: 3 / 4; border-radius: 3px; overflow: hidden; background: var(--line); }
.line-item__body { flex: 1; min-width: 0; }
.line-item__body h4 { margin: 0 0 .2rem; font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.line-item__opts { font-size: 11.5px; color: var(--muted); }
.line-item__foot { display: flex; align-items: center; justify-content: space-between; margin-top: .5rem; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; }
.qty button { width: 26px; height: 26px; background: none; border: 0; cursor: pointer; line-height: 1; }
.qty span { min-width: 22px; text-align: center; font-size: 12px; }
.line-item__price { font-size: 13px; font-weight: 600; }
.line-item__del { background: none; border: 0; font-size: 11px; color: var(--muted); cursor: pointer; text-decoration: underline; }

.empty-state { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.empty-state p { margin: 0 0 1.2rem; }

/* ─────────────────────────  тост  ───────────────────────── */
.toast {
  position: fixed; z-index: 80; left: 50%; bottom: 2rem;
  padding: .85rem 1.5rem;
  background: var(--ink); color: var(--paper);
  border-radius: 999px;
  font-size: 12px; letter-spacing: .08em;
  transform: translate(-50%, 1.5rem); opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ─────────────────────────  адаптив  ───────────────────────── */
@media (max-width: 1000px) {
  .header__inner { grid-template-columns: auto 1fr auto; }
  .header__burger { display: grid; }
  .nav, .nav__link--desktop { display: none; }
  .brand { text-align: left; }

  .hero { grid-template-columns: 1fr; }
  .hero__gallery { order: -1; }
  .hero__shot--main { border-radius: 200px 200px 6px 6px; }
  .hero__shot--sub { display: none; }

  .cats__grid { grid-template-columns: repeat(2, 1fr); }
  .editorial { grid-template-columns: 1fr; }
  .editorial__media img:last-child { margin-top: 0; }
  .perks { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }

  .modal__body { grid-template-columns: 1fr; }
  .pv__stage { aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem .7rem; }
  .card__title { font-size: 1.05rem; }
  .card__quick { opacity: 1; transform: none; font-size: 10px; padding: .6rem; }
  .card__sizes { display: none; }
  .perks { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .hero__stats { gap: 1.5rem; }
  .lookbook__strip figure:nth-child(even) { transform: none; }
}

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