/* ==========================================================================
   Stowline Carry — core stylesheet
   ========================================================================== */

:root {
  --ink: #14161a;
  --ink-2: #2b2f36;
  --muted: #6d7178;
  --line: #e2e2df;
  --line-soft: #efefec;
  --paper: #ffffff;
  --mist: #f5f5f2;
  --mist-2: #ebebe6;
  --signal: #d9502b;
  --signal-dark: #b83f1f;
  --ok: #1f7a4d;
  --radius: 2px;
  --wrap: 1320px;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --shadow: 0 1px 2px rgba(20, 22, 26, .05), 0 8px 28px rgba(20, 22, 26, .06);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 860px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -.02em; line-height: 1.12; }
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: 20px; }

p { margin: 0 0 1em; }

/* ---------- announcement ---------- */
.announce {
  background: var(--ink);
  color: #f3f3f0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 16px;
}
.announce span { opacity: .72; }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand__mark {
  width: 26px; height: 26px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  position: relative;
}
.brand__mark::after {
  content: "";
  position: absolute;
  left: 50%; top: 3px; bottom: 3px;
  width: 1.5px;
  background: var(--signal);
  transform: translateX(-50%) rotate(24deg);
}
.brand__name {
  font-weight: 650;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 15px;
}
.brand__name small {
  display: block;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: .28em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: -2px;
}

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  font-size: 13.5px;
  letter-spacing: .02em;
  color: var(--ink-2);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color .18s, color .18s;
}
.nav a:hover, .nav a.is-active { border-color: var(--signal); color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 16px; margin-left: 8px; }
.cart-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 8px 14px;
  border-radius: 40px;
  font-size: 13px;
  transition: border-color .18s, background .18s;
}
.cart-btn:hover { border-color: var(--ink); }
.cart-btn__count {
  font-family: var(--mono);
  font-size: 11px;
  background: var(--ink);
  color: #fff;
  min-width: 19px; height: 19px;
  border-radius: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.cart-btn__count[data-empty="1"] { background: var(--mist-2); color: var(--muted); }

.burger { display: none; background: none; border: 0; padding: 6px; }
.burger span { display: block; width: 20px; height: 1.6px; background: var(--ink); margin: 4px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .18s, color .18s, border-color .18s, opacity .18s;
}
.btn:hover { background: var(--signal); border-color: var(--signal); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--signal { background: var(--signal); border-color: var(--signal); }
.btn--signal:hover { background: var(--signal-dark); border-color: var(--signal-dark); }
.btn--wide { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 12px; }
.btn[disabled] { opacity: .45; pointer-events: none; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  background: var(--mist);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,14,17,.18) 0%, rgba(12,14,17,.08) 30%, rgba(12,14,17,.78) 100%);
}
.hero__inner { position: relative; padding: 0 0 58px; color: #fff; max-width: 640px; text-shadow: 0 1px 18px rgba(10, 12, 15, .45); }
.hero__inner .eyebrow { color: rgba(255,255,255,.72); }
.hero h1 { margin: 14px 0 16px; color: #fff; }
.hero p { color: rgba(255,255,255,.82); font-size: 17px; max-width: 500px; }
.hero__cta { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.hero__cta .btn { background: #fff; color: var(--ink); border-color: #fff; }
.hero__cta .btn:hover { background: var(--signal); border-color: var(--signal); color: #fff; }
.hero__cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------- marquee strip ---------- */
.strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.strip__cell {
  padding: 26px 24px;
  border-right: 1px solid var(--line-soft);
}
.strip__cell:last-child { border-right: 0; }
.strip__cell h4 { font-size: 13px; letter-spacing: .01em; margin-bottom: 4px; }
.strip__cell p { font-size: 13px; color: var(--muted); margin: 0; }

/* ---------- sections ---------- */
.section { padding: 76px 0; }
.section--mist { background: var(--mist); }
.section--tight { padding: 52px 0; }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.section__head p { color: var(--muted); margin: 8px 0 0; max-width: 520px; }
.link-more {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.link-more:hover { color: var(--signal); border-color: var(--signal); }

/* ---------- product grid ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 26px;
}
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card { position: relative; display: flex; flex-direction: column; }
.card__media {
  position: relative;
  background: var(--mist);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .6s ease;
}
.card__media img.card__alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card__alt { opacity: 1; }
.card:hover .card__media img { transform: scale(1.02); }
.card__flag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 5px 9px;
}
.card__flag--sale { background: var(--signal); }
.card__flag--soon { background: var(--mist-2); color: var(--ink-2); }
.card__body { padding: 14px 2px 0; display: flex; flex-direction: column; gap: 5px; }
.card__type { font-family: var(--mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.card__title { font-size: 15px; font-weight: 550; line-height: 1.32; }
.card__meta { display: flex; align-items: baseline; gap: 10px; margin-top: 2px; }
.card__price { font-size: 15px; font-weight: 550; }
.card__was { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.card__colors { display: flex; gap: 5px; margin-top: 6px; }
.dot {
  width: 11px; height: 11px; border-radius: 50%;
  border: 1px solid rgba(20,22,26,.22);
}

/* ---------- shop layout ---------- */
.shop-head {
  border-bottom: 1px solid var(--line);
  padding: 46px 0 30px;
}
.shop-head h1 { font-size: clamp(30px, 4vw, 46px); }
.shop-head p { color: var(--muted); max-width: 620px; margin: 12px 0 0; }

.shop-layout {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 46px;
  padding: 34px 0 90px;
  align-items: start;
}
.filters { position: sticky; top: 92px; }
.filter-group { border-bottom: 1px solid var(--line-soft); padding: 18px 0; }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.filter-opt {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px;
  padding: 5px 0;
  cursor: pointer;
  color: var(--ink-2);
}
.filter-opt input { accent-color: var(--signal); width: 14px; height: 14px; }
.filter-opt span.count { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--muted); }
.filter-reset {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: none; border: 0; padding: 0;
  color: var(--signal);
}

.shop-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.shop-bar .count { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.select {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 9px 12px;
  font-size: 13px;
  font-family: inherit;
  border-radius: var(--radius);
  color: var(--ink);
}
.filter-toggle { display: none; }

.empty-state { padding: 70px 0; text-align: center; color: var(--muted); }

/* ---------- product page ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 56px; padding: 34px 0 80px; align-items: start; }
.gallery { display: flex; flex-direction: column; gap: 12px; }
.gallery__main {
  background: var(--mist);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.gallery__thumbs button {
  background: var(--mist);
  border: 1px solid transparent;
  padding: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery__thumbs button.is-active { border-color: var(--ink); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info { position: sticky; top: 92px; }
.pdp-info h1 { font-size: clamp(27px, 3vw, 36px); margin: 10px 0 0; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin: 16px 0 6px; }
.pdp-price .now { font-size: 24px; font-weight: 600; }
.pdp-price .was { font-size: 16px; color: var(--muted); text-decoration: line-through; }
.pdp-price .save {
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--signal); border: 1px solid currentColor; padding: 3px 7px;
}
.pdp-sub { font-size: 13.5px; color: var(--muted); }
.pdp-desc { margin: 22px 0; font-size: 15px; color: var(--ink-2); white-space: pre-line; }

.opt-block { margin: 24px 0; }
.opt-block__label {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px; display: flex; gap: 8px;
}
.opt-block__label b { color: var(--ink); font-weight: 500; letter-spacing: .06em; }
.swatches { display: flex; gap: 9px; flex-wrap: wrap; }
.swatch {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line);
  padding: 3px; background: none;
  display: grid; place-items: center;
}
.swatch i { display: block; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(20,22,26,.14); }
.swatch.is-active { border-color: var(--ink); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.qty button { background: none; border: 0; width: 40px; height: 46px; font-size: 16px; color: var(--ink); }
.qty input {
  width: 44px; height: 46px; border: 0; text-align: center;
  font-family: var(--mono); font-size: 14px; background: none; color: var(--ink);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.buy-row { display: flex; gap: 12px; margin: 22px 0 16px; }
.buy-row .btn { flex: 1; height: 48px; }

.assurance { display: grid; gap: 8px; margin-top: 18px; }
.assurance li { list-style: none; font-size: 13px; color: var(--muted); display: flex; gap: 9px; align-items: flex-start; }
.assurance li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--signal); margin-top: 8px; flex: 0 0 auto; }

.acc { border-top: 1px solid var(--line-soft); margin-top: 30px; }
.acc__item { border-bottom: 1px solid var(--line-soft); }
.acc__btn {
  width: 100%; background: none; border: 0; padding: 16px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 550; color: var(--ink); text-align: left;
}
.acc__btn::after { content: "+"; font-family: var(--mono); color: var(--muted); font-size: 16px; }
.acc__item.is-open .acc__btn::after { content: "\2212"; }
.acc__panel { display: none; padding: 0 0 20px; font-size: 14px; color: var(--ink-2); }
.acc__item.is-open .acc__panel { display: block; }
.acc__panel ul { margin: 0; padding-left: 18px; }
.acc__panel li { margin-bottom: 6px; }

.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table th, .spec-table td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
.spec-table th { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 400; width: 42%; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }

.breadcrumbs { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding: 22px 0 0; }
.breadcrumbs a:hover { color: var(--signal); }
.breadcrumbs span { margin: 0 7px; opacity: .5; }

/* ---------- cart / checkout ---------- */
.page-head { padding: 46px 0 26px; border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(28px, 3.6vw, 42px); }
.page-head p { color: var(--muted); margin: 12px 0 0; max-width: 640px; }

.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 46px; padding: 34px 0 90px; align-items: start; }
.cart-line { display: grid; grid-template-columns: 104px minmax(0, 1fr) auto; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line__img { background: var(--mist); aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; }
.cart-line__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__name { font-weight: 550; font-size: 15px; }
.cart-line__opt { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.cart-line__ctrl { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.cart-line__remove { background: none; border: 0; padding: 0; font-size: 12px; color: var(--muted); text-decoration: underline; }
.cart-line__remove:hover { color: var(--signal); }
.cart-line__price { font-weight: 550; text-align: right; white-space: nowrap; }

.summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: sticky; top: 92px; background: var(--paper); }
.summary h3 { font-size: 16px; margin-bottom: 18px; }
.summary__row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; color: var(--ink-2); }
.summary__row--total { border-top: 1px solid var(--line); margin-top: 12px; padding-top: 16px; font-size: 18px; font-weight: 600; color: var(--ink); }
.summary .note { font-size: 12px; color: var(--muted); margin-top: 14px; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12.5px; color: var(--ink-2); margin-bottom: 6px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color .16s, box-shadow .16s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(20,22,26,.06);
}
.field input.is-error { border-color: var(--signal); }
.field .err { display: none; font-size: 12px; color: var(--signal); margin-top: 5px; }
.field.has-error .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row--3 { grid-template-columns: 2fr 1fr 1fr; }

.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 56px; padding: 34px 0 90px; align-items: start; }
.co-section { margin-bottom: 34px; }
.co-section h3 { font-size: 15px; margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.co-section h3 i {
  font-family: var(--mono); font-style: normal; font-size: 11px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: #fff;
  display: inline-grid; place-items: center;
}
.pay-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--mist); }
.pay-brands { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.pay-brands img, .pay-brands span {
  height: 22px; border-radius: 3px; background: #fff; border: 1px solid var(--line);
  font-family: var(--mono); font-size: 9px; letter-spacing: .06em;
  display: inline-flex; align-items: center; padding: 0 7px; color: var(--ink-2);
}
.secure-note {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); margin-top: 14px;
}
.mini-line { display: flex; gap: 12px; padding: 10px 0; align-items: center; }
.mini-line__img { width: 56px; height: 56px; background: var(--mist); border-radius: var(--radius); overflow: hidden; flex: 0 0 auto; position: relative; }
.mini-line__img img { width: 100%; height: 100%; object-fit: cover; }
.mini-line__img b {
  position: absolute; top: -6px; right: -6px;
  background: var(--ink-2); color: #fff; font-family: var(--mono); font-size: 10px;
  width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center;
}
.mini-line__name { font-size: 13.5px; font-weight: 500; line-height: 1.3; }
.mini-line__opt { font-size: 11px; color: var(--muted); font-family: var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.mini-line__price { margin-left: auto; font-size: 13.5px; font-weight: 550; }

/* ---------- confirmation ---------- */
.confirm { padding: 70px 0 90px; text-align: center; }
.confirm__mark {
  width: 62px; height: 62px; border-radius: 50%;
  border: 1.5px solid var(--ok); color: var(--ok);
  display: grid; place-items: center; margin: 0 auto 22px; font-size: 26px;
}
.confirm__id { font-family: var(--mono); font-size: 13px; letter-spacing: .14em; margin-top: 8px; }
.confirm-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; margin-top: 34px; text-align: left; max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- editorial / content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split__media { min-height: 460px; background: var(--mist); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body { padding: 62px 58px; display: flex; flex-direction: column; justify-content: center; }
.split__body h2 { margin-bottom: 16px; }
.split__body p { color: var(--muted); max-width: 460px; }

.prose { padding: 42px 0 90px; font-size: 15.5px; color: var(--ink-2); }
.prose h2 { font-size: 22px; margin: 38px 0 12px; color: var(--ink); }
.prose h3 { font-size: 17px; margin: 26px 0 10px; color: var(--ink); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--signal); text-decoration: underline; }
.prose .updated { font-family: var(--mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.prose table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--mist); font-weight: 550; }

.toc { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; background: var(--mist); margin: 26px 0 34px; }
.toc h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.toc ol { margin: 0; padding-left: 18px; columns: 2; column-gap: 30px; font-size: 13.5px; }
.toc li { margin-bottom: 6px; break-inside: avoid; }
.toc a { text-decoration: none; }
.toc a:hover { color: var(--signal); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #d6d7d5; padding: 68px 0 30px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr) 1.6fr; gap: 40px; }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__mark { border-color: rgba(255,255,255,.7); }
.footer-about { font-size: 13.5px; color: #9b9d9c; margin-top: 16px; max-width: 280px; }
.footer-col h5 {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase;
  color: #85878a; margin: 0 0 14px; font-weight: 400;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 13.5px; color: #d6d7d5; }
.footer-col a:hover { color: var(--signal); }
.footer-news p { font-size: 13.5px; color: #9b9d9c; }
.news-form { display: flex; gap: 8px; margin-top: 12px; }
.news-form input {
  flex: 1; background: transparent; border: 1px solid #3a3d42; color: #fff;
  padding: 11px 12px; border-radius: var(--radius); font-family: inherit; font-size: 13.5px;
}
.news-form input:focus { outline: 0; border-color: var(--signal); }
.news-form button { background: var(--signal); border: 1px solid var(--signal); color: #fff; padding: 0 18px; border-radius: var(--radius); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid #2b2e33; margin-top: 48px; padding-top: 22px;
  font-size: 12px; color: #85878a;
}
.footer-bottom a { color: #85878a; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .pay-brands span { background: #22252a; border-color: #33363b; color: #9b9d9c; }

/* ---------- toast ---------- */
.toast {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  background: var(--ink); color: #fff;
  padding: 14px 18px; border-radius: var(--radius);
  font-size: 13.5px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
  transform: translateY(140%); opacity: 0;
  transition: transform .3s cubic-bezier(.2,.7,.3,1), opacity .3s;
}
.toast.is-on { transform: translateY(0); opacity: 1; }
.toast a { color: var(--signal); text-decoration: underline; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; gap: 34px; }
  .pdp-info { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .burger { display: block; margin-left: auto; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 28px 20px;
  }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .header-actions { margin-left: 0; }
  .strip__inner { grid-template-columns: 1fr 1fr; }
  .strip__cell:nth-child(2) { border-right: 0; }
  .split { grid-template-columns: 1fr; }
  .split__body { padding: 44px 28px; }
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .filters { position: static; display: none; border: 1px solid var(--line); padding: 18px; border-radius: var(--radius); }
  .filters.is-open { display: block; }
  .filter-toggle { display: inline-flex; }
  .toc ol { columns: 1; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .grid, .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 14px; }
  .hero { min-height: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery__thumbs { grid-template-columns: repeat(5, 1fr); }
  .field-row, .field-row--3 { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 78px minmax(0,1fr); }
  .cart-line__price { grid-column: 2; text-align: left; }
}
