/* =========================================================
   Hoki Dimsum — Public Site Design System
   Mobile-first, warm "steamer basket" palette
   ========================================================= */

:root {
  --red-900: #b71c1c;
  --red-700: #c62828;
  --red-600: #d32f2f;
  --red-500: #e04f4f;
  --gold-500: #f59e0b;
  --gold-400: #f7b23b;
  --gold-100: #fef3e0;
  --cream-50: #f4f4ef;
  --cream-100: #e9e9e2;
  --ink-900: #1c1c1a;
  --ink-700: #3a3a36;
  --ink-500: #787870;
  --ink-300: #b0b0a8;
  --line: #e6e6e0;
  --white: #ffffff;
  --success: #2e7d32;
  --success-bg: #f1f8e9;
  --warn: #b8791b;
  --warn-bg: #fef3e0;
  --danger: #d32f2f;
  --danger-bg: #fff5f5;
  --info: #1565c0;
  --info-bg: #e3f2fd;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(28, 28, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(28, 28, 26, 0.12);
  --shadow-lg: 0 16px 40px rgba(28, 28, 26, 0.18);
  --header-h: 64px;
  --cartbar-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0 0 8px; font-weight: 700; line-height: 1.25; }
p { margin: 0 0 12px; color: var(--ink-700); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section { padding: 40px 0; }
.section-head { text-align: center; margin-bottom: 28px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--red-600);
  background: var(--gold-100);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.section-head h2 { font-size: 26px; color: var(--ink-900); }
.section-head p { max-width: 520px; margin: 8px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: linear-gradient(135deg, var(--red-600), var(--red-700)); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow-md); }
.btn-gold { background: linear-gradient(135deg, var(--gold-400), var(--gold-500)); color: var(--ink-900); box-shadow: var(--shadow-sm); }
.btn-outline { background: transparent; border: 1.5px solid var(--line); color: var(--ink-900); }
.btn-outline:hover { border-color: var(--red-500); color: var(--red-600); }
.btn-wa { background: #25d366; color: #fff; box-shadow: var(--shadow-sm); }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-icon { padding: 10px; border-radius: 999px; background: var(--cream-100); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(240, 237, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: var(--red-700); }
.brand .logo-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--red-600), var(--gold-500));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 28px; }
.nav-desktop a { font-weight: 600; font-size: 14.5px; color: var(--ink-700); position: relative; }
.nav-desktop a.active, .nav-desktop a:hover { color: var(--red-600); }
.header-actions { display: flex; align-items: center; gap: 8px; }

.cart-btn { position: relative; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--red-600); color: #fff; font-size: 10.5px; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

.menu-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px; background: var(--cream-100); border: none;
}
.menu-toggle svg { width: 20px; height: 20px; }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden;
}
.mobile-drawer.open { visibility: visible; }
.mobile-drawer .overlay {
  position: absolute; inset: 0; background: rgba(36,21,18,.45);
  opacity: 0; transition: opacity .25s ease;
}
.mobile-drawer.open .overlay { opacity: 1; }
.mobile-drawer .panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 78%; max-width: 320px;
  background: var(--cream-50); box-shadow: var(--shadow-lg);
  transform: translateX(100%); transition: transform .3s ease;
  padding: 20px; overflow-y: auto;
}
.mobile-drawer.open .panel { transform: translateX(0); }
.mobile-drawer .panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.mobile-drawer nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  display: block; padding: 13px 14px; border-radius: 12px; font-weight: 600; font-size: 15.5px; color: var(--ink-700);
}
.mobile-drawer nav a.active, .mobile-drawer nav a:hover { background: var(--gold-100); color: var(--red-600); }
.mobile-drawer .drawer-footer { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 36px 0 44px;
  background: radial-gradient(120% 100% at 50% 0%, var(--gold-100) 0%, var(--cream-50) 60%);
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); color: var(--red-600);
  font-size: 12.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-size: 34px; line-height: 1.15; color: var(--ink-900);
  margin-bottom: 12px;
}
.hero h1 span { color: var(--red-600); }
.hero p.lead { font-size: 15.5px; max-width: 480px; margin-bottom: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-stats .stat b { display: block; font-size: 20px; color: var(--red-700); }
.hero-stats .stat span { font-size: 12.5px; color: var(--ink-500); }
.hero-visual {
  margin-top: 28px; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/11; background: linear-gradient(135deg, var(--red-600), var(--red-900));
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-visual .steam-icon { font-size: 72px; opacity: .9; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 60%);
  pointer-events: none;
}

/* ---------- Hero Slider ---------- */
.hero-slider { position: absolute; inset: 0; }
.hero-slider-track { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity .6s ease;
}
.hero-slide.active { opacity: 1; visibility: visible; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%; border: none;
  background: rgba(0,0,0,.35); color: #fff; font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  z-index: 2; transition: background .2s ease;
}
.hero-slider-arrow:hover { background: rgba(0,0,0,.55); }
.hero-slider-arrow.prev { left: 12px; }
.hero-slider-arrow.next { right: 12px; }

.hero-slider-dots {
  position: absolute; left: 0; right: 0; bottom: 14px;
  display: flex; justify-content: center; gap: 7px; z-index: 2;
}
.hero-slider-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(255,255,255,.55); cursor: pointer; padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.hero-slider-dot.active { background: #fff; transform: scale(1.25); }

/* ---------- Cards ---------- */
.grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.card {
  background: #fff; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover { box-shadow: var(--shadow-md); }

/* Product card */
.product-card { display: flex; flex-direction: column; height: 100%; }
.product-thumb {
  aspect-ratio: 4/3; background: var(--cream-100);
  display: flex; align-items: center; justify-content: center; color: var(--gold-500); font-size: 34px;
  position: relative; overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat-tag {
  position: absolute; top: 8px; left: 8px; background: rgba(255,255,255,.92);
  font-size: 10.5px; font-weight: 700; color: var(--red-600); padding: 3px 9px; border-radius: 999px;
}
.product-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 14.5px; }
.product-body .desc { font-size: 12px; color: var(--ink-500); flex: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin: 0; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 6px; }
.price { font-weight: 700; color: var(--red-700); font-size: 14.5px; }
.line-total { font-size: 11px; font-weight: 700; color: var(--gold-500); margin-top: -2px; }
.qty-control { display: flex; align-items: center; }
.qty-control .qty-stepper { display: none; }
.qty-control.active .add-cart-btn { display: none; }
.qty-control.active .qty-stepper { display: flex; }
.qty-stepper { align-items: center; gap: 8px; background: var(--cream-100); border-radius: 999px; padding: 4px; }
.qty-stepper button {
  width: 26px; height: 26px; border-radius: 999px; border: none; background: #fff; font-weight: 700;
  display: flex; align-items: center; justify-content: center; color: var(--red-600); box-shadow: var(--shadow-sm);
}
.qty-stepper span { min-width: 16px; text-align: center; font-weight: 700; font-size: 13px; }
.add-cart-btn {
  width: 32px; height: 32px; border-radius: 999px; border: none;
  background: var(--red-600); color: #fff; font-size: 18px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.badge-unavailable {
  position: absolute; inset: 0; background: rgba(36,21,18,.55); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px;
}

/* Category filter chips */
.chip-row { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 18px; -ms-overflow-style: none; scrollbar-width: none; }
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 9px 18px; border-radius: 999px; background: #fff; border: 1.5px solid var(--line);
  font-size: 13.5px; font-weight: 600; color: var(--ink-700);
}
.chip.active { background: var(--red-600); border-color: var(--red-600); color: #fff; }

/* Branch card */
.branch-card { padding: 18px; }
.branch-card h3 { font-size: 16.5px; color: var(--ink-900); }
.branch-meta { display: flex; gap: 8px; align-items: flex-start; font-size: 13.5px; color: var(--ink-700); margin-bottom: 10px; }
.branch-meta .ic { flex: none; width: 18px; text-align: center; }
.branch-platforms { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.platform-link {
  font-size: 12.5px; font-weight: 700; padding: 8px 14px; border-radius: 10px; border: 1.5px solid var(--line);
}

/* Promo card */
.promo-card { position: relative; }
.promo-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--gold-400), var(--red-500)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:30px; }
.promo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.promo-body { padding: 16px; }
.promo-dates { font-size: 12px; color: var(--ink-500); margin-bottom: 6px; font-weight: 600; }

/* Article card */
.article-card { grid-column: span 2; display: flex; gap: 12px; padding: 12px; align-items: center; }
.article-thumb { flex: none; width: 96px; height: 96px; border-radius: var(--radius-sm); overflow: hidden; background: var(--cream-100); display: flex; align-items: center; justify-content: center; color: var(--gold-500); font-size: 26px; }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-body h3 { font-size: 14.5px; margin-bottom: 4px; }
.article-body .date { font-size: 11.5px; color: var(--ink-500); font-weight: 600; }

/* ---------- Sticky mobile cart bar ---------- */
.sticky-cartbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(36,21,18,.1);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  display: none;
  align-items: center; justify-content: space-between; gap: 12px;
}
.sticky-cartbar.show { display: flex; }
.sticky-cartbar .info { display: flex; flex-direction: column; }
.sticky-cartbar .info b { font-size: 15px; color: var(--red-700); }
.sticky-cartbar .info span { font-size: 11.5px; color: var(--ink-500); }

/* Floating WA button */
.fab-wa {
  position: fixed; right: 18px; bottom: calc(84px + env(safe-area-inset-bottom)); z-index: 95;
  width: 54px; height: 54px; border-radius: 999px; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: var(--shadow-lg);
}

/* ---------- Cart drawer / page ---------- */
.cart-drawer-list { display: flex; flex-direction: column; gap: 12px; }
.cart-line { display: flex; gap: 12px; align-items: center; padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.cart-line .thumb { width: 56px; height: 56px; border-radius: 10px; background: var(--cream-100); flex: none; display: flex; align-items: center; justify-content: center; color: var(--gold-500); overflow: hidden; }
.cart-line .thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line .name { font-weight: 600; font-size: 13.5px; }
.cart-line .unit-price { font-size: 12px; color: var(--ink-500); }
.cart-line .line-actions { margin-left: auto; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.remove-link { font-size: 11.5px; color: var(--red-600); font-weight: 600; }
.empty-state { text-align: center; padding: 48px 20px; color: var(--ink-500); }
.empty-state .ic { font-size: 46px; margin-bottom: 12px; }

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 13.5px; margin-bottom: 6px; color: var(--ink-900); }
.form-control {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1.5px solid var(--line);
  font-size: 14.5px; background: #fff; color: var(--ink-900);
}
.form-control:focus { outline: none; border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(200,55,45,.12); }
textarea.form-control { resize: vertical; min-height: 90px; }
.form-hint { font-size: 12px; color: var(--ink-500); margin-top: 5px; }
.form-row { display: grid; gap: 14px; grid-template-columns: 1fr; }
.radio-group { display: flex; gap: 10px; flex-wrap: wrap; }
.radio-card {
  flex: 1; min-width: 130px; border: 1.5px solid var(--line); border-radius: 12px; padding: 12px 14px;
  display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 13.5px; cursor: pointer;
}
.radio-card input { accent-color: var(--red-600); }
.radio-card.selected { border-color: var(--red-600); background: var(--gold-100); }

.summary-box { background: var(--cream-100); border-radius: var(--radius-md); padding: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; }
.summary-row.total { font-weight: 700; font-size: 16px; border-top: 1px dashed var(--line); margin-top: 6px; padding-top: 12px; color: var(--red-700); }
.summary-row .highlight { color: var(--red-600); font-weight: 700; }

/* ---------- Payment page ---------- */
.pay-code { text-align: center; margin-bottom: 20px; }
.pay-code .code { font-size: 22px; font-weight: 800; letter-spacing: .03em; color: var(--red-700); }
.qris-box { background: #fff; border: 1.5px dashed var(--gold-500); border-radius: var(--radius-md); padding: 20px; text-align: center; margin-bottom: 20px; }
.qris-box img { max-width: 260px; margin: 0 auto 12px; border-radius: 12px; }
.total-highlight {
  background: linear-gradient(135deg, var(--red-600), var(--red-700)); color: #fff;
  border-radius: var(--radius-md); padding: 20px; text-align: center; margin-bottom: 16px;
}
.total-highlight .amount { font-size: 30px; font-weight: 800; margin: 6px 0; }
.total-highlight .note { font-size: 12.5px; opacity: .9; }
.unique-code-hint { background: var(--warn-bg); color: var(--warn); border-radius: 12px; padding: 12px 14px; font-size: 13px; margin-bottom: 20px; }
.bank-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px; margin-bottom: 20px; }
.bank-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13.5px; }

/* ---------- Status badges ---------- */
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.status-pending_payment { background: var(--warn-bg); color: var(--warn); }
.status-paid { background: var(--info-bg); color: var(--info); }
.status-preparing { background: var(--gold-100); color: var(--red-700); }
.status-ready { background: var(--success-bg); color: var(--success); }
.status-completed { background: #e6e6e6; color: #555; }
.status-cancelled { background: var(--danger-bg); color: var(--danger); }

/* ---------- Alerts ---------- */
.alert { padding: 13px 16px; border-radius: 12px; font-size: 13.5px; margin-bottom: 16px; }
.alert-success { background: var(--success-bg); color: var(--success); }
.alert-error { background: var(--danger-bg); color: var(--danger); }
.alert-info { background: var(--info-bg); color: var(--info); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: var(--cream-100); padding: 40px 0 max(20px, env(safe-area-inset-bottom)); margin-top: 40px; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: 1fr; }
.footer-brand { font-weight: 800; font-size: 19px; margin-bottom: 8px; color: #fff; }
.site-footer p { color: #cdb2ab; font-size: 13.5px; }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: #cdb2ab; font-size: 13.5px; }
.footer-col a:hover { color: var(--gold-400); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 28px; padding-top: 18px; font-size: 12.5px; color: #9c7d76; text-align: center; }

/* ---------- Misc pages ---------- */
.page-hero { padding: 32px 0 20px; text-align: center; }
.page-hero h1 { font-size: 26px; }
.article-content { font-size: 15px; line-height: 1.8; }
.article-content img { border-radius: var(--radius-md); margin: 16px 0; }
.article-cover { aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; background: var(--cream-100); margin-bottom: 20px; display:flex; align-items:center; justify-content:center; color: var(--gold-500); font-size: 40px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13.5px; color: var(--red-600); margin-bottom: 16px; }
.status-check-box { background: #fff; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); max-width: 480px; margin: 0 auto; }
.order-timeline { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.tl-step { display: flex; gap: 12px; padding-bottom: 22px; position: relative; }
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before { content: ''; position: absolute; left: 11px; top: 26px; bottom: 0; width: 2px; background: var(--line); }
.tl-step:last-child::before { display: none; }
.tl-dot { flex: none; width: 24px; height: 24px; border-radius: 999px; background: var(--line); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; z-index: 1; }
.tl-step.done .tl-dot { background: var(--success); }
.tl-step.current .tl-dot { background: var(--red-600); }
.tl-title { font-weight: 700; font-size: 13.5px; }
.tl-time { font-size: 11.5px; color: var(--ink-500); }

.order-item-row { display: flex; justify-content: space-between; font-size: 13.5px; padding: 6px 0; border-bottom: 1px dashed var(--line); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .article-card { grid-column: span 1; }
  .hero h1 { font-size: 42px; }
}

@media (min-width: 860px) {
  .nav-desktop { display: block; }
  .menu-toggle { display: none; }
  .grid { grid-template-columns: repeat(4, 1fr); }
  .hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
  .hero-visual { margin-top: 0; }
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .sticky-cartbar { left: 50%; transform: translateX(-50%); max-width: 480px; border-radius: 20px 20px 0 0; bottom: 16px; border: 1px solid var(--line); }
}

@media (min-width: 1080px) {
  .hero h1 { font-size: 46px; }
}
