:root {
  --bg: #0d0a08;
  --bg-soft: #17110e;
  --card: #211813;
  --wood: #5a321b;
  --wood-dark: #2b160e;
  --gold: #d6a64a;
  --gold-soft: #f5d48a;
  --text: #fff8ea;
  --muted: #cdbda5;
  --line: rgba(255, 255, 255, .14);
  --shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(214, 166, 74, .14), transparent 32rem),
    linear-gradient(135deg, rgba(90, 50, 27, .42), transparent 38rem),
    var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; object-fit: cover; }

button, input, select, textarea { font: inherit; }

.language-welcome {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(11, 7, 5, .82), rgba(45, 19, 11, .62)),
    url("hero-halal-butchery.png") center / cover;
  transition: opacity .45s ease, visibility .45s ease;
}

.language-welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(245, 212, 138, .2), transparent 22rem),
    linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .64));
}

.language-welcome.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.language-welcome-card {
  position: relative;
  width: min(100%, 720px);
  padding: clamp(26px, 5vw, 44px);
  color: var(--text);
  background: rgba(18, 12, 9, .58);
  border: 1px solid rgba(245, 212, 138, .28);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .48);
  backdrop-filter: blur(18px);
  animation: welcomeIn .7s ease both;
}

.language-logo {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(245, 212, 138, .42);
  border-radius: 50%;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .4);
}

.language-logo img {
  width: 100%;
  height: 100%;
}

.language-copy + .language-copy {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.language-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 5vw, 48px);
}

.language-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 248, 234, .82);
  font-size: 18px;
}

.language-copy strong {
  color: var(--gold-soft);
}

.language-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.language-choice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  color: #120d08;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}

.flag {
  display: inline-block;
  width: 32px;
  height: 22px;
  flex: 0 0 32px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25), 0 1px 4px rgba(0, 0, 0, .25);
}

.flag-at {
  background: linear-gradient(#ed2939 0 33.33%, #fff 33.33% 66.66%, #ed2939 66.66%);
}

.flag-ba {
  background: #002395;
}

.flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.flag-img {
  width: 34px;
  height: 24px;
  display: block;
  object-fit: cover;
  border-radius: 5px;
  flex: 0 0 34px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .28),
    0 1px 4px rgba(0, 0, 0, .28);
}

.language-choice:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(214, 166, 74, .28);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

.language-switcher button,
.language-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 78px;
  height: 40px;
  padding: 0 12px;
  color: #fff;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.language-switcher button.active,
.language-switcher button.is-active,
.language-btn.is-active {
  color: #130d08;
  background: var(--gold);
}

.language-switcher button:hover,
.language-btn:hover {
  background: rgba(255, 255, 255, .12);
}

.language-switcher button.is-active:hover,
.language-btn.is-active:hover {
  background: var(--gold);
}

@keyframes welcomeIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 8px 5vw;
  color: var(--muted);
  background: #050403;
  font-size: 14px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 5vw;
  background: rgba(13, 10, 8, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  display: grid;
  grid-template-columns: 44px auto;
  gap: 12px;
  align-items: center;
  min-width: 220px;
}

.mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #15100b;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), #8e5a19);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
  overflow: hidden;
}

.logo-mark {
  background: #120d0b;
  box-shadow: 0 0 0 1px rgba(233, 179, 62, .28), 0 10px 22px rgba(0, 0, 0, .32);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo b { line-height: 1.05; }
.logo small { display: block; color: var(--gold); font-size: 11px; }

.links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: wrap;
}

.links a {
  color: var(--muted);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  transition: color .2s ease, transform .2s ease;
}

.links a:hover,
.links a.active {
  color: var(--gold);
  transform: translateY(-1px);
}

.menu,
.cart-link,
.btn {
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.menu { display: none; }

.cart-link {
  padding: 10px 14px;
  color: #130d08;
  background: var(--gold);
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 74px 5vw;
  background:
    linear-gradient(90deg, rgba(13, 10, 8, .98), rgba(13, 10, 8, .74) 46%, rgba(13, 10, 8, .15)),
    url("https://images.unsplash.com/photo-1607623814075-e51df1bdc82f?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-slider {
  background-position: center;
  background-size: cover;
  transition: background-image .45s ease;
}

.heroText { max-width: 720px; }

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
}

h1, h2, h3 { line-height: 1.08; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  margin: 0 0 18px;
}

h1 { font-size: clamp(46px, 8vw, 92px); }
h1 span, h2 span { color: var(--gold); }
h2 { font-size: clamp(34px, 5vw, 54px); }
h3 { margin: 12px 0 8px; }

.hero p,
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 20px;
  color: #130d08;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(214, 166, 74, .22);
}

.btn.ghost {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--gold);
}

.btn.full { width: 100%; }

.btn:disabled {
  cursor: not-allowed;
  opacity: .58;
  transform: none;
  box-shadow: none;
}

.shop-status-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 5vw;
  color: var(--text);
  background: linear-gradient(135deg, rgba(89, 19, 14, .96), rgba(15, 10, 8, .96));
  border-bottom: 1px solid rgba(214, 166, 74, .34);
}

.shop-status-banner strong {
  color: var(--gold);
  white-space: nowrap;
}

.shop-status-banner span {
  color: var(--muted);
}

.shop-status-banner a {
  color: var(--gold-soft);
  font-weight: 900;
  white-space: nowrap;
}

.slider-dots {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.slider-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.slider-dots button.active { background: var(--gold); }

.section { padding: 68px 5vw; }

.section.narrow {
  max-width: 980px;
  margin: 0 auto;
}

.muted { color: var(--muted); }

.features,
.grid,
.shop-grid,
.category-grid,
.mini-grid,
.reviews {
  display: grid;
  gap: 20px;
}

.features {
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 5vw;
}

.feature,
.card,
.offer,
.panel,
.shop-card,
.cart-panel,
.legal-box {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent),
    linear-gradient(135deg, var(--card), #15100d);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature { padding: 22px; }
.feature strong { display: block; font-size: 18px; }
.feature span { color: var(--muted); }

.grid { grid-template-columns: repeat(3, 1fr); }
.category-grid { grid-template-columns: repeat(4, 1fr); }
.mini-grid { grid-template-columns: repeat(3, 1fr); }
.reviews { grid-template-columns: repeat(3, 1fr); }

.card,
.offer,
.mini-card,
.review,
.panel,
.legal-box { padding: 22px; }

.card img,
.offer img {
  width: 100%;
  height: 220px;
  border-radius: 6px;
}

.price {
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
}

.mini-card,
.review {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), transparent),
    linear-gradient(135deg, var(--card), #15100d);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-card strong,
.review strong { color: var(--gold); }

.review p { color: var(--muted); }

.product-card .pill {
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  padding: 5px 10px;
  color: var(--gold);
  background: rgba(214, 166, 74, .14);
  border: 1px solid rgba(214, 166, 74, .24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.wood-band {
  margin: 0 5vw 56px;
  padding: 36px;
  background:
    linear-gradient(90deg, rgba(13, 10, 8, .68), rgba(13, 10, 8, .18)),
    repeating-linear-gradient(95deg, var(--wood-dark) 0 18px, var(--wood) 18px 38px, #6d3f20 38px 52px);
  border: 1px solid rgba(214, 166, 74, .25);
  border-radius: 8px;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: start;
}

.split img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
}

.image-band {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-band img {
  width: 100%;
  height: min(54vw, 520px);
  object-fit: cover;
}

.category-tile {
  padding: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 166, 74, .65);
  background: rgba(214, 166, 74, .09);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 28px;
  align-items: start;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.tool-row {
  display: grid;
  grid-template-columns: minmax(240px, 440px);
  gap: 14px;
  margin: 24px 0 6px;
}

.search-field {
  display: block;
  color: var(--muted);
}

.filter,
.remove {
  color: var(--text);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.filter:hover,
.filter.active {
  color: #130d08;
  background: var(--gold);
  border-color: var(--gold);
}

.shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.shop-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
}

.shop-card img {
  width: 100%;
  height: 210px;
  flex: 0 0 auto;
}

.shop-card-body {
  display: flex;
  min-height: 330px;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.shop-card .pill {
  align-self: flex-start;
}

.shop-card h3 {
  min-height: 2.4em;
  margin: 4px 0 0;
  line-height: 1.2;
}

.shop-card p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
}

.shop-card strong {
  display: block;
  margin-top: auto;
  color: var(--gold);
}

.shop-offline-notice {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(214, 166, 74, .14), rgba(89, 19, 14, .16)),
    rgba(15, 10, 8, .94);
  border: 1px solid rgba(214, 166, 74, .34);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.shop-offline-notice span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.shop-offline-notice h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.shop-offline-notice p,
.shop-offline-checkout p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
}

.shop-offline-checkout {
  display: grid;
  gap: 14px;
}

.buy-row {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 10px;
  margin: 16px 0;
  align-items: end;
}

label { color: var(--muted); font-size: 13px; font-weight: 800; }

input,
select,
textarea {
  width: 100%;
  margin-top: 5px;
  padding: 12px;
  color: var(--text);
  background: #100c0a;
  border: 1px solid var(--line);
  border-radius: 6px;
}

textarea { min-height: 92px; resize: vertical; }

.cart-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.checkout-panel {
  padding: 18px;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.checkout-steps li {
  min-width: 0;
}

.checkout-step-button {
  display: grid;
  grid-template-rows: 34px auto;
  gap: 8px;
  align-items: start;
  justify-items: center;
  min-width: 0;
  width: 100%;
  min-height: 70px;
  padding: 0 4px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
}

.checkout-step-button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.checkout-step-label {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.checkout-step-number {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
}

.checkout-steps li.active .checkout-step-number,
.checkout-steps li.done .checkout-step-number {
  color: #130d08;
  background: var(--gold);
  border-color: var(--gold);
}

.checkout-steps li.active .checkout-step-button {
  color: var(--text);
}

.checkout-steps li.done .checkout-step-button,
.checkout-steps li.available .checkout-step-button {
  color: var(--text);
}

.checkout-steps li.done .checkout-step-number::after {
  content: "";
  width: 7px;
  height: 4px;
  margin-top: -1px;
  border-bottom: 2px solid #130d08;
  border-left: 2px solid #130d08;
  transform: rotate(-45deg);
}

.checkout-steps li.done .checkout-step-number {
  font-size: 0;
}

.checkout-card h2 {
  font-size: 28px;
}

.checkout-cart-item {
  grid-template-columns: 1fr 70px auto;
}

.checkout-total {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 14px;
  background: rgba(214, 166, 74, .08);
  border: 1px solid rgba(214, 166, 74, .22);
  border-radius: 8px;
}

.checkout-total p {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin: 0;
}

.checkout-total .grand {
  color: var(--gold);
  font-size: 20px;
  font-weight: 900;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.checkout-warning,
.checkout-error {
  color: var(--gold-soft);
  font-weight: 800;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

.choice-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.choice-card.active {
  border-color: var(--gold);
  background: rgba(214, 166, 74, .1);
}

.choice-card input {
  width: auto;
  margin: 5px 0 0;
}

.choice-card span {
  grid-column: 2;
  color: var(--muted);
  font-size: 13px;
}

.checkout-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
}

.checkout-controls .btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.checkout-success {
  margin-top: 14px;
  color: var(--gold);
  font-weight: 900;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr 76px auto;
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.remove {
  color: var(--muted);
  border-radius: 6px;
  padding: 9px 10px;
}

.remove:hover { color: var(--gold); border-color: var(--gold); }

.total-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  margin: 18px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid .wide,
.privacy { grid-column: 1 / -1; }

.privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
}

.privacy input {
  width: auto;
  margin-top: 4px;
}

.order-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.summary-box {
  margin-top: 18px;
  padding: 16px;
  background: rgba(214, 166, 74, .08);
  border: 1px solid rgba(214, 166, 74, .22);
  border-radius: 8px;
}

.summary-box ul { padding-left: 18px; }
.summary-box li { margin: 6px 0; }

.contact-card p { margin: 8px 0 14px; }
.map-placeholder { min-height: 300px; }

.one-column { grid-template-columns: 1fr; }

.hours-table {
  margin-top: 18px;
}

.hours-table p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 10px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.map-frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  padding: 13px 18px;
  color: #061109;
  background: #25d366;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}

.cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: none;
  max-width: 760px;
  padding: 18px;
  background: #100c0a;
  border: 1px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.cookie.show {
  display: flex;
  align-items: center;
  gap: 16px;
}

footer {
  padding: 32px 5vw;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

footer a { color: var(--gold); font-weight: 800; }

@media (max-width: 1080px) {
  .shop-layout,
  .split { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
}

@media (max-width: 850px) {
  .topbar { font-size: 12px; }
  .nav { padding: 12px 4vw; }
  .logo { min-width: 0; }
  .menu {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #130d08;
    background: var(--gold);
    border-radius: 50%;
  }
  .links {
    display: none;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 5vw;
    background: rgba(13, 10, 8, .98);
    border-bottom: 1px solid var(--line);
  }
  .links.open { display: flex; }
  .features,
  .grid,
  .shop-grid,
  .category-grid,
  .mini-grid,
  .reviews { grid-template-columns: 1fr; }
  .hero { min-height: 62vh; }
  .wood-band { margin-inline: 4vw; padding: 24px; }
  .cart-item { grid-template-columns: 1fr 70px; }
  .cart-item .remove { grid-column: 1 / -1; }
  .checkout-panel {
    padding: 14px;
  }
  .checkout-steps {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-inline: -4px;
    padding: 0 4px 8px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }
  .checkout-steps li {
    min-width: 92px;
    flex: 0 0 104px;
    scroll-snap-align: start;
  }
  .checkout-step-button {
    min-height: 72px;
    padding-inline: 2px;
    font-size: 10px;
  }
  .checkout-step-number {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .checkout-cart-item { grid-template-columns: 1fr 70px; }
  .checkout-cart-item .remove { grid-column: 1 / -1; }
  .form-grid,
  .order-actions,
  .buy-row,
  .checkout-controls { grid-template-columns: 1fr; }
  .tool-row { grid-template-columns: 1fr; }
  .cookie.show { display: block; }
  .cookie .btn { margin-top: 10px; }
  .language-switcher {
    position: absolute;
    right: 4vw;
    top: calc(100% + 8px);
    z-index: 3;
    background: rgba(13, 10, 8, .9);
  }
  .language-options { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .shop-grid {
    gap: 16px;
  }

  .shop-card img {
    height: 190px;
  }

  .shop-card-body {
    min-height: auto;
    padding: 16px;
  }

  .shop-card h3,
  .shop-card p {
    min-height: 0;
  }

  .filter-row {
    flex-wrap: nowrap;
    margin-inline: -20px;
    padding: 0 20px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .cart-panel {
    padding: 16px;
  }

  .checkout-card h2 {
    font-size: 24px;
    line-height: 1.15;
  }
}

@media (max-width: 560px) {
  .logo b { font-size: 14px; }
  .logo small { display: none; }
  .cart-link { padding: 9px 11px; }
  .section { padding: 52px 4vw; }
  .hero { padding-inline: 4vw; }
  .whatsapp { right: 14px; bottom: 14px; }
}
