:root {
  --bg: #F6F1E7;
  --surface: #FFFFFF;
  --fg: #2A2A2A;
  --muted: #6B6258;
  --border: #E2D9C7;
  --accent: #2F4F3A;
  --accent-hover: #244031;
  --clay: #C4A574;
  --clay-soft: #E8D9BC;
  --danger: #B23A3A;
  --success: #3A6B4A;
  --shadow-sm: 0 1px 2px rgba(42,42,42,0.06);
  --shadow-md: 0 4px 14px rgba(42,42,42,0.10);
  --shadow-lg: 0 10px 30px rgba(42,42,42,0.14);
  --radius: 10px;
  --radius-sm: 6px;
  --maxw: 1120px;
  --pad: clamp(16px, 4vw, 32px);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", "Tisa", serif;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--accent);
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  font-weight: 600;
}
h1 { font-size: clamp(32px, 5.5vw, 52px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4vw, 38px); }
h3 { font-size: clamp(20px, 2.6vw, 26px); }
p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(40px, 7vw, 72px) 0; }
.section--tight { padding: 28px 0; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 12px;
}
.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); line-height: 1.6; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--accent); color: var(--surface); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--surface); }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--ghost:hover { background: var(--accent); color: var(--surface); }
.btn--soft { background: var(--clay-soft); color: var(--accent); border-color: var(--clay-soft); }
.btn--soft:hover { background: #DDC9A3; }
.btn--block { width: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--surface);
  padding: 10px 16px;
  z-index: 1000;
}
.skip-link:focus { left: 8px; top: 8px; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
  padding: 10px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--accent); }
.brand__mark {
  width: 38px; height: 38px;
  background: var(--accent);
  color: var(--surface);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.brand__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; line-height: 1; }
.brand__sub { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 10px 12px;
  color: var(--fg);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav__link:hover { background: rgba(47,79,58,0.08); color: var(--accent); }
.nav__cart {
  position: relative;
  background: var(--accent);
  color: var(--surface);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.nav__cart:hover { background: var(--accent-hover); color: var(--surface); }
.nav__cart-count {
  background: var(--clay);
  color: var(--fg);
  border-radius: 12px;
  padding: 1px 8px;
  font-size: 14px;
  font-weight: 700;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin: 5px 0;
}

.hero {
  background: linear-gradient(180deg, #EFE6D2 0%, var(--bg) 100%);
  padding: clamp(40px, 8vw, 88px) 0 clamp(40px, 7vw, 72px);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}
.hero__title { margin-bottom: 18px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero__img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: var(--clay-soft);
}
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 32px;
  font-size: 15px;
  color: var(--muted);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { color: var(--accent); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__media {
  aspect-ratio: 1 / 1;
  background: var(--clay-soft);
  position: relative;
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__chip {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--surface);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 20px;
}
.card__body { padding: 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__title {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--fg);
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--accent); }
.card__short { color: var(--muted); font-size: 15px; margin: 0; flex: 1; }
.card__meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 8px; }
.card__price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--accent); }
.card__price-old { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-right: 6px; }
.card__cta {
  background: var(--accent);
  color: var(--surface);
  border: 0;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background-color .15s;
}
.card__cta:hover { background: var(--accent-hover); color: var(--surface); }
.card__cta--ghost { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.card__cta--ghost:hover { background: var(--accent); color: var(--surface); }
.card__stock { font-size: 13px; color: var(--success); font-weight: 500; margin-top: 6px; }
.card__stock--out { color: var(--danger); }

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}
.feature__icon {
  width: 44px; height: 44px;
  background: var(--clay-soft);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.feature__title { font-family: var(--font-display); font-size: 19px; margin: 0 0 6px; color: var(--fg); font-weight: 600; }
.feature__text { font-size: 15px; color: var(--muted); margin: 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}
.step__num {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--surface);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 12px;
}
.step__title { font-family: var(--font-display); font-size: 19px; color: var(--fg); margin: 0 0 6px; font-weight: 600; }
.step__text { font-size: 15px; color: var(--muted); margin: 0; }

.breadcrumb {
  font-size: 14px;
  color: var(--muted);
  padding: 16px 0 0;
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumb li { display: inline; }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--muted); }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--fg); }

.page-head {
  padding: 24px 0 8px;
  background: linear-gradient(180deg, #EFE6D2 0%, var(--bg) 100%);
}
.page-head h1 { margin-bottom: 10px; }
.page-head p { color: var(--muted); max-width: 60ch; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 32px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.filters__label { font-size: 14px; color: var(--muted); align-self: center; margin-right: 4px; }
.chip {
  padding: 8px 14px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip--active { background: var(--accent); color: var(--surface); border-color: var(--accent); }

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 56px);
  padding: 24px 0 48px;
}
.product__gallery img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--clay-soft);
  box-shadow: var(--shadow-md);
}
.product__cat { color: var(--clay); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.product__title { margin: 8px 0 14px; }
.product__price { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--accent); margin-bottom: 16px; }
.product__price-old { font-size: 20px; color: var(--muted); text-decoration: line-through; margin-right: 10px; }
.product__stock { font-size: 15px; font-weight: 500; color: var(--success); margin-bottom: 18px; }
.product__desc { color: var(--fg); margin-bottom: 22px; }
.product__form { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 48px;
}
.qty button {
  width: 44px;
  height: 100%;
  background: var(--surface);
  border: 0;
  font-size: 20px;
  color: var(--accent);
  cursor: pointer;
}
.qty button:hover { background: var(--clay-soft); }
.qty input {
  width: 48px;
  text-align: center;
  border: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  background: var(--surface);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product__meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.product__meta dt { font-weight: 600; color: var(--fg); margin-top: 8px; }
.product__meta dd { margin: 2px 0 0; }

.cart {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 28px);
}
.cart__empty { text-align: center; padding: 40px 20px; color: var(--muted); }
.cart__row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart__row:last-child { border-bottom: 0; }
.cart__thumb { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; background: var(--clay-soft); }
.cart__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.cart__name a { color: inherit; text-decoration: none; }
.cart__name a:hover { color: var(--accent); }
.cart__price { font-size: 15px; color: var(--muted); }
.cart__remove {
  background: none;
  border: 0;
  color: var(--danger);
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  padding: 8px;
  min-height: 36px;
}
.cart__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}
.cart__actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; flex-wrap: wrap; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: start;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
}
.form-card h2 { font-size: 22px; margin-top: 0; }

.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: var(--font-body);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--fg);
  min-height: 48px;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 3px solid var(--clay-soft);
  border-color: var(--accent);
}
.field textarea { min-height: 100px; resize: vertical; }
.field__error { color: var(--danger); font-size: 14px; margin-top: 4px; }
.field--error input, .field--error textarea, .field--error select { border-color: var(--danger); }
.field__req { color: var(--danger); }
.hp { position: absolute; left: -9999px; }

.radio-group { display: grid; gap: 8px; }
.radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  min-height: 48px;
}
.radio input { margin-top: 4px; accent-color: var(--accent); }
.radio__label { font-weight: 600; }
.radio__hint { font-size: 14px; color: var(--muted); display: block; }

.summary { position: sticky; top: calc(var(--header-h) + 12px); }
.summary__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 15px; color: var(--muted); }
.summary__total { display: flex; justify-content: space-between; padding: 14px 0 0; border-top: 1px solid var(--border); font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-top: 10px; }

.thanks { text-align: center; padding: 40px 0; }
.thanks__icon {
  width: 72px; height: 72px;
  background: var(--clay-soft);
  color: var(--success);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.content { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(20px, 4vw, 40px); max-width: 760px; }
.content h1 { margin-top: 0; }
.content h2 { margin-top: 1.5em; }
.content ul { padding-left: 22px; }
.content li { margin-bottom: 6px; }
.content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.content th, .content td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.content th { background: var(--bg); font-weight: 600; }

.faq { display: grid; gap: 12px; }
.faq__item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 6px 20px; }
.faq__q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  width: 100%;
  text-align: left;
  min-height: 44px;
}
.faq__q:hover { color: var(--accent-hover); }
.faq__a { color: var(--fg); max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; padding: 0; }
.faq__item--open .faq__a { max-height: 600px; padding-bottom: 18px; }
.faq__toggle { font-size: 24px; color: var(--clay); transition: transform .2s; }
.faq__item--open .faq__toggle { transform: rotate(45deg); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 36px); align-items: start; }
.contact-info dt { font-weight: 600; color: var(--accent); margin-top: 12px; font-family: var(--font-display); }
.contact-info dd { margin: 2px 0 0; }
.contact-info a { color: var(--fg); }

.cta-band { background: var(--accent); color: var(--surface); padding: clamp(32px, 6vw, 56px) 0; border-radius: var(--radius); text-align: center; }
.cta-band h2 { color: var(--surface); margin-top: 0; }
.cta-band p { color: rgba(255,255,255,0.85); margin-bottom: 20px; }

.footer { background: #243B2D; color: #D8D2C5; padding: clamp(36px, 5vw, 56px) 0 24px; margin-top: 48px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(20px, 3vw, 36px); }
.footer h4 { color: var(--surface); font-family: var(--font-body); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { color: #D8D2C5; text-decoration: none; font-size: 15px; }
.footer a:hover { color: var(--clay); }
.footer__brand { font-family: var(--font-display); font-size: 22px; color: var(--surface); margin-bottom: 8px; font-weight: 600; }
.footer__about { font-size: 14px; line-height: 1.6; }
.footer__nap { font-size: 14px; line-height: 1.7; margin-top: 14px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 32px; padding-top: 20px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: rgba(216,210,197,0.7); }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 15px; }
.alert--error { background: rgba(178,58,58,0.1); color: #7a2424; border: 1px solid rgba(178,58,58,0.3); }
.alert--success { background: rgba(58,107,74,0.12); color: var(--success); border: 1px solid rgba(58,107,74,0.3); }

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--fg);
  color: var(--bg);
  padding: 16px var(--pad);
  z-index: 200;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 14px; flex: 1; min-width: 220px; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { min-height: 40px; padding: 8px 16px; font-size: 14px; }
.cookie-banner .btn--ghost { border-color: var(--bg); color: var(--bg); }
.cookie-banner .btn--ghost:hover { background: var(--bg); color: var(--fg); }

.flash {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--surface);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  z-index: 250;
  transform: translateY(100px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  max-width: 320px;
}
.flash.is-visible { transform: translateY(0); opacity: 1; }

.error-page { text-align: center; padding: 60px 0; }
.error-page__code { font-family: var(--font-display); font-size: clamp(72px, 14vw, 140px); color: var(--clay); line-height: 1; margin-bottom: 12px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__link { display: none; }
  .menu-toggle { display: block; }
  .nav.open .nav__link {
    display: flex;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 8px var(--pad);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    min-height: 44px;
  }
  .nav.open .nav__cart { display: inline-flex; }
  .summary { position: static; }
}
@media (max-width: 600px) {
  body { font-size: 17px; }
  .cart__row { grid-template-columns: 64px 1fr; grid-template-areas: "thumb name" "thumb price" "thumb qty" "thumb remove"; row-gap: 6px; }
  .cart__thumb { grid-area: thumb; width: 64px; height: 64px; }
  .cart__name { grid-area: name; }
  .cart__price { grid-area: price; }
  .cart .qty { grid-area: qty; }
  .cart__remove { grid-area: remove; justify-self: start; }
  .footer__grid { grid-template-columns: 1fr; }
  .cookie-banner__inner { flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { justify-content: space-between; }
  .cookie-banner .btn { flex: 1; }
}
