:root {
  --bg: #12100d;
  --bg-elevated: #1b1712;
  --bg-card: #191510;
  --amber: #c68a2e;
  --amber-bright: #e0a84a;
  --amber-deep: #8c5a1e;
  --cream: #ede3cf;
  --cream-dim: #b6ab95;
  --ink: #0a0908;
  --green-ok: #6e9d6a;
  --rust-low: #a6402a;
  --border: rgba(198, 138, 46, 0.22);
  --border-soft: rgba(237, 227, 207, 0.08);
  --radius: 3px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(198,138,46,0.10), transparent 60%),
    radial-gradient(ellipse 700px 400px at 100% 10%, rgba(140,90,30,0.08), transparent 60%);
  color: var(--cream);
  font-family: 'Public Sans', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; }

::selection { background: var(--amber); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Layout shells ---------- */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  width: 100%;
  height: 38px;
  background: #b0221a;
  color: #ffffff;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12px;
}

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 5, 4, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.age-gate[hidden] { display: none; }
.age-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-card .mark-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1.5px solid var(--amber);
  border-radius: 6px;
  background: rgba(198, 138, 46, 0.08);
  margin-bottom: 18px;
}
.age-logo { height: 44px; width: auto; display: block; }
.age-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--cream);
}
.age-card p {
  font-size: 13.5px;
  color: var(--cream-dim);
  line-height: 1.55;
  margin: 0 0 6px;
}
.age-card .age-hint {
  font-size: 11.5px;
  margin-top: 10px;
}
.age-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.age-actions button, .age-actions a {
  flex: 1;
  border-radius: 999px;
  padding: 12px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Public Sans', sans-serif;
}
.age-yes {
  background: var(--amber);
  color: var(--ink);
  border: none;
}
.age-yes:hover { background: var(--amber-bright); }
.age-no {
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
}
.age-no:hover { color: var(--cream); }
.age-leave {
  background: var(--amber);
  color: var(--ink);
  border: none;
}

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(18, 16, 13, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
header.site .bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}
.brand-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1.5px solid var(--amber);
  border-radius: 6px;
  background: rgba(198, 138, 46, 0.08);
}
.brand-logo {
  height: 58px;
  width: auto;
  display: block;
}

.filters {
  display: flex;
  gap: 4px;
}
.filters button {
  background: none;
  border: 1px solid transparent;
  color: var(--cream-dim);
  font-family: 'Public Sans', sans-serif;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.filters button:hover { color: var(--cream); }
.filters button.active {
  color: var(--ink);
  background: var(--amber);
  font-weight: 600;
}

.cart-btn {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s, transform 0.15s;
}
.cart-btn:hover { border-color: var(--amber); transform: translateY(-1px); }
.cart-btn svg { width: 19px; height: 19px; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--amber);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.cart-count.hidden { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 56px 24px 40px;
  text-align: center;
}
.hero .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 340;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--cream);
}
.hero h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--amber-bright);
}
.hero p {
  color: var(--cream-dim);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Product grid ---------- */
.catalog {
  padding: 8px 24px 80px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--border); transform: translateY(-2px); }

.card .badge-off {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--rust-low);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  z-index: 2;
}

.card .lote {
  position: absolute;
  top: 14px; right: 14px;
  max-width: calc(100% - 60px);
  border-radius: 999px;
  border: 1px dashed var(--border);
  background: rgba(10, 9, 8, 0.6);
  backdrop-filter: blur(2px);
  padding: 4px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.5px;
  color: var(--cream-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}

.card .photo-box {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.card .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
}
.card .photo-box .fallback-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(198,138,46,0.14), rgba(140,90,30,0.06));
}
.card .photo-box .fallback-icon svg { width: 56px; height: 76px; }

.card .cat-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
}
.card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 560;
  font-size: 17px;
  line-height: 1.28;
  margin: 0 0 10px;
  padding-right: 30px;
  min-height: 44px;
}
.card .stock-line {
  font-size: 12px;
  color: var(--cream-dim);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.card .stock-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-ok);
  flex-shrink: 0;
}
.card .stock-dot.low { background: var(--rust-low); }
.card .stock-line.out { color: var(--rust-low); }

.card .price-row {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}
.card .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}
.card .price small {
  font-size: 10px;
  color: var(--cream-dim);
  font-weight: 400;
  display: block;
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.card .price .price-was {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--cream-dim);
  text-decoration: line-through;
  margin-bottom: 1px;
}

.qty-add {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.stepper button {
  background: none;
  border: none;
  color: var(--cream);
  width: 26px; height: 26px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.stepper button:hover { color: var(--amber-bright); }
.stepper span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  width: 22px;
  text-align: center;
}
.add-btn {
  background: var(--amber);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  width: 34px; height: 34px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.1s;
}
.add-btn:hover { background: var(--amber-bright); }
.add-btn:active { transform: scale(0.94); }
.add-btn:disabled {
  background: var(--bg-elevated);
  color: var(--cream-dim);
  cursor: not-allowed;
  border: 1px solid var(--border-soft);
}

.card.sin-stock { opacity: 0.55; }

.empty-state, .loading-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--cream-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  grid-column: 1 / -1;
}

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  z-index: 50;
}
.overlay.open { opacity: 1; pointer-events: all; }

.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(400px, 92vw);
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  z-index: 51;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow);
}
.drawer.open { transform: translateX(0); }

.drawer-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 19px;
  font-weight: 600;
  margin: 0;
}
.drawer-head button {
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.drawer-head button:hover { color: var(--cream); }

.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 22px;
}
.drawer-empty {
  text-align: center;
  color: var(--cream-dim);
  font-size: 13px;
  padding: 60px 10px;
}

.cart-row {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
}
.cart-row .info { flex: 1; min-width: 0; }
.cart-row h4 {
  font-family: 'Fraunces', serif;
  font-size: 14.5px;
  font-weight: 560;
  margin: 0 0 4px;
  line-height: 1.3;
}
.cart-row .unit-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--cream-dim);
}
.cart-row .row-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}
.cart-row .remove {
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 11px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}
.cart-row .remove:hover { color: var(--rust-low); }
.cart-row .line-total {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.drawer-foot {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--border-soft);
}
.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.subtotal-row .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.subtotal-row .amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--amber-bright);
}
.stock-note {
  font-size: 11px;
  color: var(--cream-dim);
  margin-bottom: 14px;
  line-height: 1.5;
}
.checkout-btn {
  width: 100%;
  background: #25D366;
  color: #06210f;
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-size: 14.5px;
  font-weight: 700;
  font-family: 'Public Sans', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: filter 0.15s, transform 0.1s;
}
.checkout-btn svg { width: 18px; height: 18px; }
.checkout-btn:hover { filter: brightness(1.08); }
.checkout-btn:active { transform: scale(0.98); }
.checkout-btn:disabled {
  background: var(--bg-card);
  color: var(--cream-dim);
  cursor: not-allowed;
}

/* ---------- Checkout modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal.open { opacity: 1; pointer-events: all; }
.modal .modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
}
.modal-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  max-width: 380px;
  box-shadow: var(--shadow);
}
.modal-card h2 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  margin: 0 0 8px;
}
.modal-card p.hint {
  font-size: 12.5px;
  color: var(--cream-dim);
  margin: 0 0 20px;
  line-height: 1.5;
}
.field { margin-bottom: 14px; }
.field label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 10px 12px;
  font-family: 'Public Sans', sans-serif;
  font-size: 14px;
}
.field input:focus, .field textarea:focus {
  border-color: var(--amber);
}
.field textarea { resize: vertical; min-height: 56px; }
.modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.modal-actions button.cancel {
  flex: 1;
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
  font-size: 13.5px;
}
.modal-actions button.cancel:hover { color: var(--cream); }
.modal-actions .checkout-btn { flex: 1.4; }

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 480px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.hero-slider .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.55) 55%, rgba(10,9,8,0.75) 100%);
}
.hero-slider .hero-overlay .eyebrow { color: var(--amber-bright); }
.hero-slider .hero-overlay h1,
.hero-slider .hero-overlay p {
  text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}
.hero-slider .slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.hero-slider .slide {
  flex: 0 0 100%;
  height: 100%;
}
.hero-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slider .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,9,8,0.5);
  border: 1px solid var(--border);
  color: var(--cream);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.hero-slider .slide-arrow.prev { left: 16px; }
.hero-slider .slide-arrow.next { right: 16px; }
.hero-slider .slide-arrow:hover { border-color: var(--amber); color: var(--amber-bright); }
.hero-slider .slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-slider .slide-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(237,227,207,0.35);
  cursor: pointer;
  padding: 0;
}
.hero-slider .slide-dots button.active { background: var(--amber-bright); }

/* ---------- Brand carousel ---------- */
.brands {
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.brands-track {
  display: flex;
  gap: 56px;
  width: max-content;
  align-items: center;
  animation: scrollBrands 70s linear infinite;
}
.brands:hover .brands-track { animation-play-state: paused; }
.brands-track img {
  height: 32px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(35%);
  transition: opacity 0.2s, filter 0.2s;
}
.brands-track img:hover { opacity: 1; filter: grayscale(0%); }
.brand-chip {
  background: #ffffff;
  border-radius: 6px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-chip img {
  height: 34px;
  opacity: 1;
  filter: none;
}
.brand-chip:hover img { opacity: 1; filter: none; }
@keyframes scrollBrands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Category picker ---------- */
.cat-picker { padding: 12px 24px 8px; }
.cat-picker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0;
}
.cat-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-tile:hover { border-color: var(--amber); transform: translateY(-2px); }
.cat-tile-label {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
}
.cat-tile-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--cream-dim);
  text-transform: uppercase;
}

@media (max-width: 560px) {
  .cat-picker-grid { grid-template-columns: 1fr; }
}

/* ---------- Continue shopping button ---------- */
.continue-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
  border-radius: 999px;
  padding: 11px;
  font-size: 13px;
  font-family: 'Public Sans', sans-serif;
  cursor: pointer;
  margin-top: 10px;
  transition: color 0.15s, border-color 0.15s;
}
.continue-btn:hover { color: var(--cream); border-color: var(--border); }

/* ---------- Delivery options ---------- */
.delivery-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.delivery-options button {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  color: var(--cream-dim);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12.5px;
  font-family: 'Public Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.delivery-options button:hover { color: var(--cream); }
.delivery-options button.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--border-soft);
  padding: 26px 24px 40px;
  text-align: center;
}
footer.site p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--cream-dim);
  margin: 4px 0;
}
footer.site .live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-ok);
  margin-right: 6px;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  header.site .bar { flex-wrap: wrap; gap: 12px; padding: 14px 18px; }
  .filters { order: 3; width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .hero { padding: 40px 18px 28px; }
  .catalog { padding: 8px 18px 60px; }
  .hero-slider { aspect-ratio: 4 / 3; max-height: 340px; }
  .hero-slider .slide-arrow { width: 32px; height: 32px; font-size: 16px; }
}
