:root {
  --bg: #0a0a0c;
  --bg-2: #101013;
  --bg-3: #16161a;
  --surface: #141417;
  --surface-2: #1c1c21;
  --border: #26262c;
  --border-2: #33333b;
  --text: #f4f4f8;
  --text-2: #b6b6c2;
  --muted: #7c7c8a;
  --primary: #ff2d68;
  --primary-2: #ff5a8a;
  --primary-glow: rgba(255, 45, 104, 0.35);
  --accent: #6c5cff;
  --accent-2: #21c7c0;
  --gold: #ffcf5c;
  --ok: #2dd47a;
  --warn: #ffcf5c;
  --bad: #ff5050;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", var(--font);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: radial-gradient(900px 500px at 80% -10%, rgba(108, 92, 255, 0.12), transparent 60%),
              radial-gradient(700px 400px at 0% 0%, rgba(255, 45, 104, 0.10), transparent 50%),
              var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
input, select, textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 13px; width: 100%; color: var(--text); transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
label { display: block; font-size: 12.5px; font-weight: 500; color: var(--text-2); margin: 10px 0 5px; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* TOPBAR */
.topbar { background: #06060a; font-size: 12.5px; color: var(--text-2); border-bottom: 1px solid var(--border); }
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; height: 34px; }
.topbar b { color: var(--text); }
.topbar a { color: var(--text-2); }
.topbar a:hover { color: var(--primary-2); }

/* HEADER */
.header { position: sticky; top: 0; z-index: 100; background: rgba(10, 10, 12, 0.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; height: 70px; gap: 22px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em; }
.logo-mark {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: #fff;
  border-radius: 9px; font-weight: 800; box-shadow: 0 6px 18px var(--primary-glow);
}
.logo-text { background: linear-gradient(120deg, #fff 0%, #e8e8f0 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a, .nav-item > a { padding: 9px 13px; font-weight: 500; font-size: 13.5px; color: var(--text-2); border-radius: 8px; transition: color .15s, background .15s; }
.nav > a:hover, .nav-item:hover > a { color: var(--text); background: var(--surface); }
.nav-item { position: relative; }
.has-dropdown { display: flex; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 12px;
  min-width: 180px; padding: 6px; display: none; box-shadow: var(--shadow); z-index: 200;
}
.nav-item:hover .dropdown { display: flex; flex-direction: column; }
.dropdown a { padding: 8px 11px; border-radius: 7px; font-size: 13.5px; color: var(--text-2); }
.dropdown a:hover { background: var(--bg-3); color: var(--text); }

.cart-link { position: relative; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: var(--surface); border: 1px solid var(--border); }
.cart-link:hover { background: var(--surface-2); }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; border-radius: 10px;
  display: grid; place-items: center; box-shadow: 0 4px 10px var(--primary-glow); transform: scale(0); transition: transform .2s;
}
.cart-count.show { transform: scale(1); }

.menu-toggle { display: none; flex-direction: column; gap: 4px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* HERO */
.hero { position: relative; overflow: hidden; padding: 60px 0 0; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding-bottom: 50px; }
.hero-tag {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary-2); padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 45, 104, 0.10); border: 1px solid rgba(255, 45, 104, 0.25); margin-bottom: 22px;
}
.hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(40px, 6vw, 64px); line-height: 1.05; letter-spacing: -.02em; }
.grad { background: linear-gradient(120deg, var(--primary), var(--accent)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { color: var(--text-2); font-size: 17px; max-width: 480px; margin: 18px 0 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-trust { display: flex; gap: 28px; }
.hero-trust > div { display: flex; flex-direction: column; }
.hero-trust b { font-family: var(--font-display); font-size: 22px; }
.hero-trust span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

.hero-art { display: grid; place-items: center; position: relative; }
.hero-card {
  position: relative; width: 280px; padding: 24px; border-radius: 24px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-2);
  box-shadow: var(--shadow); text-align: center; transform: rotate(-3deg);
}
.hero-card::before { content: ""; position: absolute; inset: -1px; border-radius: 24px; padding: 1px; background: linear-gradient(135deg, var(--primary), var(--accent)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .4; }
.hero-card-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 20px var(--primary-glow); }
.hero-card img { width: 170px; height: 170px; object-fit: contain; margin: 0 auto; border-radius: 16px; background: #fff4; }
.hero-card h3 { font-family: var(--font-display); font-size: 18px; margin: 14px 0 4px; }
.hero-card .price { font-size: 22px; font-weight: 700; color: var(--primary-2); margin-bottom: 14px; }

.ticker { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #06060a; padding: 12px 0; }
.ticker-track { display: flex; gap: 22px; white-space: nowrap; animation: scroll 38s linear infinite; width: max-content; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text-2); text-transform: uppercase; letter-spacing: .12em; }
.ticker-track span:nth-child(odd) { color: var(--primary-2); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 64px 0; }
.section-alt { background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015), transparent); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.section-head.center { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
.kicker { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--primary-2); }
.section-head h2 { font-family: var(--font-display); font-size: 34px; letter-spacing: -.02em; margin-top: 4px; }
.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.link { color: var(--text-2); font-weight: 600; font-size: 14px; }
.link:hover { color: var(--primary-2); }

/* PRODUCT GRID */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.prod-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  transition: transform .2s, border-color .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.prod-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 16px 40px rgba(0,0,0,.4); }
.prod-img { position: relative; aspect-ratio: 1; background: linear-gradient(160deg, #1a1a1f, #0e0e11); display: grid; place-items: center; padding: 18px; overflow: hidden; }
.prod-img img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s; }
.prod-card:hover .prod-img img { transform: scale(1.05); }
.badge { position: absolute; padding: 4px 9px; border-radius: 999px; font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.badge-launch { top: 10px; left: 10px; background: var(--accent); color: #fff; }
.badge-hot { top: 10px; right: 10px; background: var(--primary); color: #fff; }
.badge-out { top: 10px; left: 10px; background: #2a2a2f; color: var(--muted); }
.badge-off { bottom: 10px; left: 10px; background: var(--gold); color: #1a1a20; }
.badge-promo { top: 10px; left: 10px; background: linear-gradient(90deg, var(--primary), #ff7a3c); color: #fff; box-shadow: 0 4px 12px var(--primary-glow); font-size: 10px; }

/* Faixa "Esgotado" / "Promoção" sobre a imagem (diagonal) */
.ribbon {
  position: absolute; top: 16px; right: -38px;
  transform: rotate(45deg);
  background: var(--bad); color: #fff;
  padding: 6px 44px; font-weight: 800; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0,0,0,.45); z-index: 5; text-align: center;
}
.ribbon.esgotado { background: #2a2a2f; color: var(--muted); }
.ribbon.promo { background: linear-gradient(90deg, var(--primary), #ff7a3c); }
.ribbon.ribbon-lg { top: 24px; right: -52px; padding: 8px 60px; font-size: 14px; }

.prod-img { position: relative; }
.pdp-main { position: relative; }
.promo-flag { display: inline-block; margin-top: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(255, 45, 104, .14); border: 1px solid rgba(255, 45, 104, .35); color: var(--primary-2); font-size: 13px; font-weight: 700; }
.low-stock { color: var(--bad); font-weight: 700; }
.ci-promo { color: var(--primary-2); font-weight: 700; font-size: 11px; text-transform: uppercase; }
.prod-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.prod-brand { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-2); }
.prod-name { font-size: 14.5px; font-weight: 600; line-height: 1.3; margin: 2px 0; }
.prod-name a:hover { color: var(--primary-2); }
.prod-puffs { font-size: 11.5px; color: var(--muted); }
.prod-price { display: flex; align-items: center; gap: 9px; margin-top: 8px; }
.prod-price .price { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; }
.prod-price .old { font-size: 13px; color: var(--muted); text-decoration: line-through; }
.prod-pix { font-size: 11.5px; color: var(--text-2); margin-top: 4px; min-height: 16px; }
.btn-add { margin-top: 14px; padding: 11px; border-radius: 11px; background: var(--primary); color: #fff; font-weight: 600; transition: background .15s, transform .1s; }
.btn-add:hover { background: var(--primary-2); }
.btn-add:active { transform: scale(.98); }

/* CARDS (categorias) */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.card {
  position: relative; padding: 28px; border-radius: 20px; min-height: 200px; overflow: hidden;
  background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border-2);
  transition: transform .2s, border-color .2s;
}
.card:hover { transform: translateY(-3px); border-color: var(--primary); }
.card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 8px; }
.card p { color: var(--text-2); font-size: 14px; }
.card-cta { display: inline-block; margin-top: 14px; color: var(--primary-2); font-weight: 600; font-size: 13.5px; }

/* DELIVERY STEPS */
.delivery .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { padding: 22px; border-radius: 18px; background: var(--surface); border: 1px solid var(--border); position: relative; }
.step-num { font-family: var(--font-display); font-size: 30px; color: var(--primary); opacity: .85; }
.step h4 { margin: 12px 0 6px; font-size: 16px; }
.step p { color: var(--text-2); font-size: 13px; }

/* PDP */
.pdp { padding: 30px 0 60px; }
.pdp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.pdp-main { background: linear-gradient(160deg, #fff2, #0e0e11); border: 1px solid var(--border); border-radius: 22px; display: grid; place-items: center; padding: 40px; min-height: 420px; }
.pdp-main img { max-height: 400px; object-fit: contain; }
.pdp-thumbs { display: flex; gap: 8px; margin-top: 12px; }
.pdp-thumbs img { width: 56px; height: 56px; object-fit: contain; border-radius: 9px; border: 1px solid var(--border); background: var(--surface); padding: 4px; cursor: pointer; }
.pdp-thumbs img.active { border-color: var(--primary); }
.pdp-title { font-family: var(--font-display); font-size: 30px; letter-spacing: -.02em; margin: 8px 0 14px; }
.pdp-cats { display: flex; gap: 8px; align-items: center; }
.pill { font-size: 11.5px; font-weight: 700; padding: 4px 10px; background: var(--accent); color: #fff; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.pdp-price { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
.pdp-price .price { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: #fff; }
.pdp-price .old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.pdp-stock { font-size: 13px; color: var(--text-2); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.ok { background: var(--ok); box-shadow: 0 0 8px var(--ok); }
.dot.out { background: var(--bad); }
.pdp-desc { color: var(--text-2); padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 8px 0 18px; line-height: 1.6; }
.pdp-cta { display: flex; gap: 12px; align-items: center; margin-bottom: 22px; }
.qty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 11px; overflow: hidden; }
.qty button { width: 42px; height: 50px; background: var(--surface); font-size: 18px; color: var(--text); }
.qty button:hover { background: var(--surface-2); }
.qty input { width: 56px; border: none; background: transparent; text-align: center; height: 50px; font-weight: 600; }
.pdp-perks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pdp-perks li { font-size: 13.5px; color: var(--text-2); }

/* FOOTER */
.footer { background: #06060a; border-top: 1px solid var(--border); padding: 56px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer p { color: var(--text-2); font-size: 13.5px; margin-top: 12px; max-width: 320px; }
.footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; font-weight: 700; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer ul li { color: var(--text-2); font-size: 13.5px; }
.footer-links a:hover { color: var(--primary-2); }
.footer-logo { margin-bottom: 0; }
.social { display: flex; gap: 10px; margin-top: 14px; }
.social a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 9px; background: var(--surface); border: 1px solid var(--border); color: var(--text-2); }
.social a:hover { color: var(--primary-2); border-color: var(--primary); }
.pay-badge { display: inline-block; padding: 7px 12px; border-radius: 9px; background: var(--accent); color: #fff; font-weight: 700; font-size: 13px; }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; font-size: 12px; color: var(--muted); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: 11px; font-weight: 600; font-size: 14.5px; transition: transform .1s, background .15s, border-color .15s; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 8px 24px var(--primary-glow); }
.btn-primary:hover { background: var(--primary-2); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-2); }
.btn-ghost:hover { background: var(--surface-2); border-color: var(--primary); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-success { background: var(--ok); color: #07140d; }
.btn-disabled { background: var(--surface); color: var(--muted); cursor: not-allowed; padding: 11px; border-radius: 11px; }

/* CHECKOUT */
.filters { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.filter-input { max-width: 320px; }
.result-count { color: var(--muted); font-size: 13px; }
.empty-cart { text-align: center; padding: 80px 0; }
.empty-cart svg { color: var(--border-2); margin: 0 auto 18px; }
.empty-cart h2 { margin-bottom: 14px; }

.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.block { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px; }
.block-h { font-size: 16px; margin-bottom: 14px; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cart-items { display: flex; flex-direction: column; gap: 10px; }
.cart-item { display: grid; grid-template-columns: 54px 1fr auto auto; gap: 12px; align-items: center; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface-2); }
.cart-item img { width: 54px; height: 54px; object-fit: contain; background: #fff1; border-radius: 9px; }
.cart-item .ci-name { font-size: 13.5px; font-weight: 500; }
.cart-item .ci-p { color: var(--muted); font-size: 12px; }
.cart-item .ci-q { display: flex; align-items: center; gap: 6px; border: 1px solid var(--border); border-radius: 8px; }
.cart-item .ci-q button { width: 28px; height: 30px; background: transparent; color: var(--text); }
.cart-item .ci-q input { width: 38px; border: none; background: transparent; text-align: center; height: 30px; padding: 0; }
.cart-item .ci-remove { color: var(--muted); background: transparent; padding: 6px; }
.cart-item .ci-remove:hover { color: var(--bad); }
.cart-subtotals { display: flex; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); font-weight: 600; }

.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.opt { display: flex; align-items: center; gap: 8px; padding: 11px 13px; border: 1px solid var(--border); border-radius: 11px; cursor: pointer; font-size: 13px; }
.opt:hover { border-color: var(--primary); background: var(--surface-2); }
.opt input { width: auto; margin: 0; }
.opt:has(input:checked) { border-color: var(--primary); background: rgba(255, 45, 104, 0.08); }

.freight-result { border: 1px solid var(--border); border-radius: 12px; padding: 14px; margin-top: 12px; background: var(--surface-2); }
.freight-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--text-2); }
.freight-row.big { font-size: 17px; color: #fff; font-weight: 700; border-top: 1px solid var(--border); margin-top: 4px; padding-top: 10px; }
.err { color: var(--bad); font-size: 13px; margin-top: 6px; }
.checkout-summary { position: sticky; top: 90px; }
.totals { margin-bottom: 14px; }

/* MODAL */
.modal { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(8px); z-index: 1000; display: grid; place-items: center; padding: 20px; }
.modal-card { background: var(--surface-2); border: 1px solid var(--border-2); border-radius: 22px; padding: 28px; max-width: 420px; width: 100%; position: relative; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--surface); color: var(--text); font-size: 20px; }
.modal-close:hover { background: var(--primary); color: #fff; }
.qr-area { margin: 20px auto; width: 240px; height: 240px; background: #fff; border-radius: 14px; padding: 10px; box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.qr-area img { width: 100%; height: 100%; }
.pix-copy { display: flex; gap: 8px; margin-top: 8px; }
.pix-copy input { font-size: 11.5px; background: var(--bg-3); }
.mock-note { margin-top: 12px; padding: 10px 12px; border-radius: 10px; background: rgba(255, 207, 92, 0.10); border: 1px solid rgba(255, 207, 92, 0.3); color: var(--warn); font-size: 13px; }
.pix-status { text-align: center; margin: 18px 0; font-weight: 600; color: var(--text-2); }
.pix-status.paid { color: var(--ok); }

/* TOAST */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--surface-2); border: 1px solid var(--border-2); padding: 12px 22px; border-radius: 12px; box-shadow: var(--shadow); font-weight: 500; z-index: 2000; opacity: 0; transition: opacity .25s, transform .25s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-art { order: -1; }
  .pdp-grid { grid-template-columns: 1fr; gap: 24px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .delivery .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--bg-2); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
}
@media (max-width: 560px) {
  .delivery .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .delivery-options { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .section-head h2 { font-size: 26px; }
  .section { padding: 44px 0; }
}
