/* ============================================================
   Спортивний костюм 1036 — лендинг
   Палітра побудована на кольорах товару: чорний / шоколад / мокко
   ============================================================ */

:root {
  color-scheme: light;

  --ink:        #241d19;
  --ink-soft:   #4b3d34;
  --muted:      #7a6960;
  --cream:      #fbf8f5;
  --sand:       #f3ebe2;
  --sand-deep:  #e9ddd0;
  --line:       #e2d5c7;
  --white:      #ffffff;

  --accent:     #c2562e;
  --accent-dk:  #a3441f;
  --gold:       #b98b4e;
  --ok:         #2f7d5c;

  --prod-black: #1e1c1b;
  --prod-choco: #5a3a28;
  --prod-mocha: #a98a6f;

  --radius:     10px;
  --radius-sm:  8px;
  --shadow:     0 1px 2px rgba(36,29,25,.04), 0 10px 30px rgba(36,29,25,.06);
  --shadow-lg:  0 2px 8px rgba(36,29,25,.05), 0 30px 70px rgba(36,29,25,.11);

  --wrap:       1140px;
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  padding-bottom: 88px; /* місце під липку панель */
}

/* height:auto обов'язково — інакше атрибут height="1200" у розмітці
   перебиває aspect-ratio і картинка розтягується на повну висоту. */
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { margin: 0; line-height: 1.18; letter-spacing: -.02em; font-weight: 800; }

/* Заголовки й ціна — антиквою. Саме вона дає відчуття «дорого»,
   решта тексту лишається гротеском заради читабельності. */
.hero h1, .h2, .orderbox h2, .price__now, .rating__num, .next h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.015em;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 18px; }

.section { padding: 66px 0; }
.section--sand { background: var(--sand); }
.section--ink  { background: var(--ink); color: var(--cream); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section--ink .eyebrow { color: var(--gold); }

.h2 { font-size: clamp(26px, 5.2vw, 40px); margin-bottom: 10px; }
.lead { color: var(--muted); font-size: 17px; max-width: 620px; }
.section--ink .lead { color: #c9bdb3; }

.head { margin-bottom: 34px; }
.head--center { text-align: center; }
.head--center .lead { margin-inline: auto; }

/* ---------------------------------------------------------- кнопки */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 20px 28px;
  border: 0;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(194,86,46,.26);
  transition: background .2s ease, box-shadow .2s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-dk); box-shadow: 0 14px 40px rgba(194,86,46,.34); }
.btn:active { transform: translateY(1px); }
.btn:disabled { background: #b9a89c; cursor: default; transform: none; box-shadow: none; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
  padding: 17px 24px;
}
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: none; }

/* ---------------------------------------------------------- шапка */

.topbar {
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding-block: 8px;
}
.logo {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo span { color: var(--gold); }
.topbar__note {
  color: #b3a59b;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  white-space: nowrap;
}
.topbar__note svg { flex: none; }
@media (max-width: 359px) { .topbar__note { display: none; } }

/* ---------------------------------------------------------- hero */

.hero {
  position: relative;
  padding: 30px 0 50px;
  background:
    radial-gradient(60% 46% at 88% 4%, rgba(185,139,78,.24), transparent 62%),
    radial-gradient(52% 46% at 0% 96%, rgba(169,138,111,.26), transparent 62%),
    var(--cream);
}
.hero__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px;
  border: 1px solid rgba(185,139,78,.45);
  border-radius: 2px;
  background: transparent;
  color: #96702f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(29px, 6.6vw, 50px);
  margin: 16px 0 14px;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero__sub { color: var(--ink-soft); font-size: 17.5px; }

.art {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  font-size: 13.5px;
  letter-spacing: .02em;
  color: var(--muted);
}
.art b { color: var(--ink); letter-spacing: .06em; }

/* галерея */

.gallery { position: relative; }
.gallery__main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}
.gallery__main img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute; inset: 0;
  transition: opacity .35s ease;
}
.gallery__main img.is-on { opacity: 1; position: relative; }

/* Не кругла наліпка, а строгий шильдик — читається значно дорожче. */
.ribbon {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  border-radius: 3px;
  background: var(--ink);
  line-height: 1;
  box-shadow: 0 10px 26px rgba(36,29,25,.26);
}
.ribbon b { font-size: 19px; font-weight: 800; color: var(--gold); letter-spacing: -.02em; }
.ribbon i {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .18em;
  margin-top: 5px;
  color: #fff;
  opacity: .65;
}

.thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumbs button {
  flex: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  transition: border-color .15s ease;
}
.thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.thumbs button[aria-selected="true"] { border-color: var(--ink); }

/* ---------------------------------------------------------- великі розміри
   Темна панель під фото — у тон шапки й шильдика знижки.
   На кремовому фоні ловить око, але не кричить. */

.bigsize {
  margin-top: 14px;
  padding: 20px 20px 22px;
  border-radius: var(--radius);
  background: var(--ink);
  text-align: center;
}
.bigsize__cap {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
}
.bigsize__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.bigsize__chips span {
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 3px;
  color: var(--cream);
  font-size: 15.5px;
  font-weight: 800;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.bigsize__note {
  margin-top: 14px;
  font-size: 13px;
  color: #9d8f85;
  letter-spacing: .02em;
}
.bigsize__sep {
  height: 1px;
  margin: 20px 0;
  background: rgba(255,255,255,.14);
}
.bigsize__fabname {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.01em;
  margin: 10px 0 9px;
}
.bigsize__fabtext {
  font-size: 14px;
  line-height: 1.55;
  color: #a89a90;
  max-width: 330px;
  margin-inline: auto;
}

/* блок ціни */

.buybox {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.price__now { font-size: clamp(36px, 8vw, 48px); font-weight: 800; letter-spacing: -.03em; }
.price__old { font-size: 22px; color: var(--muted); text-decoration: line-through; }
.price__off {
  padding: 5px 11px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}
.price__save { margin-top: 6px; font-size: 15px; color: var(--ok); font-weight: 700; }

.picker { margin-top: 20px; }
.picker__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.picker__label b { color: var(--ink); text-transform: none; letter-spacing: 0; font-size: 15px; }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 10px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.swatch i {
  width: 24px; height: 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.12);
}
.swatch[aria-pressed="true"] { border-color: var(--ink); background: var(--sand); }

.dot-black { background: var(--prod-black); }
.dot-choco { background: var(--prod-choco); }
.dot-mocha { background: var(--prod-mocha); }

/* таймер */

.timer { margin-top: 20px; text-align: center; }
.timer__cap { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.timer__val { display: inline-flex; align-items: center; gap: 6px; }
.timer__val span {
  min-width: 56px;
  padding: 10px 6px;
  border-radius: 3px;
  background: var(--ink);
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: .02em;
}
.timer__val em { font-style: normal; font-size: 20px; font-weight: 800; color: var(--ink); }

.buybox .btn { margin-top: 20px; }

/* довіра */

.trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 18px;
  text-align: center;
}
.trust li {
  padding: 12px 6px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-soft);
}
.trust svg { display: block; margin: 0 auto 6px; color: var(--accent); }

/* ---------------------------------------------------------- переваги */

.cards { display: grid; gap: 16px; grid-template-columns: 1fr; }
.card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.card__ic {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--sand);
  color: var(--accent);
}
.card h3 { font-size: 19px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 16px; }

/* ---------------------------------------------------------- кольори */

/* На телефоні — горизонтальна карусель, щоб не розтягувати сторінку
   на три екрани. З 620px перетворюється на звичайну сітку. */
.colorgrid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-inline: -18px;
  padding: 4px 18px 10px;
  -webkit-overflow-scrolling: touch;
}
.colorcard {
  flex: 0 0 78%;
  scroll-snap-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.colorcard img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.colorcard__b { padding: 18px 20px 22px; }
.colorcard__t { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.colorcard__t i { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.colorcard__t h3 { font-size: 19px; }
.colorcard p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.colorcard .btn { font-size: 16px; padding: 15px 20px; }

/* ---------------------------------------------------------- характеристики */

.specs { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; }
.specs dl { display: grid; grid-template-columns: 1fr; margin: 0; }
.specs dt, .specs dd {
  margin: 0;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
}
.specs dt { font-weight: 800; background: var(--sand); font-size: 15px; }
.specs dd { font-size: 16px; color: var(--ink-soft); }
.specs dd:last-child { border-bottom: 0; }

/* ---------------------------------------------------------- розмірна сітка */

.tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.tabs button {
  flex: 1;
  padding: 13px 14px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font: inherit;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
  transition: .15s ease;
}
.tabs button[aria-selected="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }

.tablewrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 15.5px; }
th, td { padding: 14px 12px; text-align: center; border-bottom: 1px solid var(--line); white-space: nowrap; }
thead th {
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 800;
}
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: #fcf9f6; }
td:first-child, th:first-child { font-weight: 800; text-align: left; }

.note {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  font-size: 15.5px;
  color: var(--ink-soft);
}
.note svg { flex: none; color: var(--gold); margin-top: 2px; }

/* ---------------------------------------------------------- відгуки */

.rating { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.rating__num { font-size: 42px; font-weight: 800; letter-spacing: -.03em; }
.stars { display: flex; gap: 3px; color: var(--gold); }
.rating__cnt { color: var(--muted); font-size: 15px; }

.reviews { display: grid; gap: 16px; grid-template-columns: 1fr; }
.review {
  padding: 22px 22px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.review__h { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.ava {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sand-deep);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink-soft);
}
.review__n { font-weight: 800; font-size: 16px; }
.review__c { font-size: 13.5px; color: var(--muted); }
.review .stars { margin-bottom: 10px; }
.review p { font-size: 16px; color: var(--ink-soft); }
.review__sz { margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.review__sz b { color: var(--ink); }

/* ---------------------------------------------------------- доставка */

.delivery { display: grid; gap: 16px; grid-template-columns: 1fr; }
.dcard {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.dcard__ic { color: var(--gold); margin-bottom: 14px; }
.dcard h3 { font-size: 19px; margin-bottom: 8px; }
.dcard p { color: #c9bdb3; font-size: 16px; }

/* ---------------------------------------------------------- FAQ */

.faq { display: grid; gap: 10px; max-width: 820px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-weight: 800;
  font-size: 16.5px;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq p { padding: 0 20px 14px; color: var(--muted); font-size: 16px; }
.faq details > p:last-of-type { padding-bottom: 20px; }

/* ---------------------------------------------------------- форма */

.order { background: var(--sand); }
.orderbox {
  max-width: 560px;
  margin-inline: auto;
  padding: 28px 24px 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.orderbox h2 { font-size: clamp(24px, 5vw, 32px); text-align: center; }
.orderbox__sub { text-align: center; color: var(--muted); font-size: 15.5px; margin: 10px 0 22px; }

.orderbox .price { justify-content: center; margin-bottom: 22px; }

.field { margin-bottom: 14px; }
.field > label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink-soft);
}
.input, .select {
  width: 100%;
  padding: 15px 16px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
}
.input:focus, .select:focus { outline: 0; border-color: var(--accent); background: var(--white); }
.input::placeholder { color: #a8968b; }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%237a6960' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.order-form__error {
  margin-top: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  background: #fdecec;
  color: #a11b1b;
  font-size: 14.5px;
  font-weight: 700;
}
.order-form__error:empty { display: none; }

.orderbox__foot {
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------------------------------------------------------- «що буде далі»
   Один і той самий блок під формою на лендингу і на thanks.html. */

.steps { display: grid; gap: 12px; text-align: left; }
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
}
.step b {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
}
.step p { font-size: 16px; color: var(--ink-soft); }
.step p strong { color: var(--ink); }

.next {
  max-width: 560px;
  margin: 22px auto 0;
  padding: 24px 24px 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.next h3 { font-size: 20px; text-align: center; margin-bottom: 18px; }

/* ---------------------------------------------------------- футер */

.footer {
  padding: 34px 0 30px;
  background: var(--ink);
  color: #9d8f85;
  font-size: 14px;
  text-align: center;
}
.footer .logo { display: block; color: var(--cream); margin-bottom: 12px; }
.footer p + p { margin-top: 6px; }

/* ---------------------------------------------------------- липка панель */

.sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,248,245,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 24px rgba(36,29,25,.1);
}
.sticky__p { line-height: 1.15; }
.sticky__now { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.sticky__old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.sticky .btn { width: auto; flex: 1; padding: 15px 18px; font-size: 16.5px; }

/* ---------------------------------------------------------- адаптив */

@media (min-width: 620px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(2, 1fr); }
  .colorgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    overflow: visible;
    margin-inline: 0;
    padding: 0;
  }
  .colorcard { flex: initial; }
  .delivery { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin-inline: auto; }
  .specs dl { grid-template-columns: 260px 1fr; }
  .specs dt { border-right: 1px solid var(--line); }
  .buybox { padding: 26px 28px; }
}

@media (min-width: 900px) {
  body { font-size: 17px; padding-bottom: 0; }
  .section { padding: 100px 0; }
  .hero { padding: 46px 0 70px; }
  .hero__grid { grid-template-columns: 1.02fr 1fr; align-items: start; gap: 50px; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .sticky { display: none; }
  .thumbs button { flex: 0 0 96px; }
}
