:root {
  --primary: #0b4358;
  --primary-dark: #063548;
  --accent: #ffc62a;
  --accent-dark: #e7ad00;
  --ink: #14222a;
  --muted: #70808a;
  --line: #e8edf0;
  --bg: #f7f9fa;
  --white: #ffffff;
  --success: #20a36a;
  --radius: 18px;
  --shadow: 0 12px 35px rgba(12, 44, 57, .08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 74px;
  width: min(1320px, calc(100% - 32px));
  margin: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  transition: .2s ease;
}
.icon-btn:hover { background: #f0f4f6; color: var(--primary); }
.brand { display: flex; align-items: center; min-width: 150px; }
.brand img { width: 142px; height: auto; display: block; }
.desktop-actions { margin-left: auto; display: flex; gap: 5px; align-items: center; }
.header-action {
  min-width: 62px; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  background: transparent; color: #41535d; font-size: 20px; padding: 5px 9px;
}
.header-action:hover { color: var(--primary); }
.action-label { font-size: 9px; font-weight: 600; }
.badge {
  position: absolute; top: 1px; right: 7px;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 999px; background: var(--accent); color: #19252a;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800;
}
.mobile-actions { display: none; margin-left: auto; }

/* SEARCH + NAV */
.search-bar-wrap {
  position: fixed; z-index: 999;
  top: 74px; left: 0; right: 0;
  padding: 11px 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid #edf1f3;
}
.search-bar {
  width: min(900px, calc(100% - 40px)); height: 48px; margin: auto;
  display: flex; align-items: center; gap: 10px;
  background: #f2f5f6;
  border-radius: 13px; padding: 0 8px 0 15px;
}
.search-bar > i { color: var(--primary); font-size: 21px; }
.search-bar input {
  flex: 1; min-width: 0; border: 0; outline: 0; background: transparent;
  color: var(--ink); font-size: 13px;
}
.search-bar input::placeholder { color: #8b999f; }
.clear-search { display: none; background: transparent; color: #89979e; font-size: 19px; }
.location-pill {
  height: 36px; padding: 0 12px;
  display: flex; align-items: center; gap: 6px;
  border-radius: 9px; background: var(--white); color: var(--primary);
  font-size: 11px; font-weight: 700; white-space: nowrap;
}
.location-pill i { font-size: 16px; }
.quick-nav {
  position: fixed; top: 133px; left: 0; right: 0; z-index: 998;
  background: #fff; border-bottom: 1px solid var(--line);
}
.quick-nav-inner {
  width: min(1180px, calc(100% - 40px)); margin: auto;
  display: flex; align-items: center; overflow-x: auto;
  scrollbar-width: none;
}
.quick-nav-inner::-webkit-scrollbar { display: none; }
.quick-link {
  position: relative; padding: 13px 19px;
  font-size: 12px; font-weight: 600; color: #71818a; white-space: nowrap;
}
.quick-link:first-child { padding-left: 2px; }
.quick-link:hover, .quick-link.active { color: var(--primary); }
.quick-link.active::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 0;
  height: 3px; border-radius: 3px 3px 0 0; background: var(--accent);
}
.quick-link:first-child.active::after { left: 0; }

/* MAIN */
main { padding-top: 183px; }
.hero {
  min-height: 470px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px;
  align-items: center; padding-top: 50px; padding-bottom: 45px;
}
.eyebrow, .section-kicker {
  color: var(--primary); font-size: 10px; font-weight: 800;
  letter-spacing: .11em; text-transform: uppercase;
}
.eyebrow { display: inline-flex; gap: 6px; align-items: center; margin-bottom: 14px; }
.eyebrow i { font-size: 15px; }
.hero h1 { font-size: clamp(38px, 5vw, 65px); line-height: 1.08; letter-spacing: -.045em; margin-bottom: 19px; }
.hero h1 span { color: var(--primary); }
.hero-copy > p { max-width: 590px; color: var(--muted); font-size: 14px; }
.hero-buttons { display: flex; gap: 10px; margin-top: 27px; flex-wrap: wrap; }
.btn {
  min-height: 45px; padding: 0 18px; border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 12px; font-weight: 700; transition: .2s ease;
}
.btn i { font-size: 17px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-light { background: #f2f5f6; color: var(--primary); }
.btn-dark { background: #13252c; color: #fff; }
.btn-white { background: #fff; color: var(--primary); }

.hero-card {
  background: var(--primary); border-radius: 26px; padding: 20px;
  box-shadow: 0 25px 60px rgba(11,67,88,.18);
}
.hero-card-top { display: flex; justify-content: space-between; align-items: center; color: #fff; font-size: 11px; font-weight: 700; margin-bottom: 14px; }
.hero-card-top i { font-size: 24px; color: var(--accent); }
.delivery-map {
  position: relative; height: 245px; overflow: hidden; border-radius: 17px;
  background: #e7ece7;
}
.map-grid {
  position: absolute; inset: -50px;
  background:
    linear-gradient(32deg, transparent 46%, rgba(255,255,255,.9) 47%, rgba(255,255,255,.9) 49%, transparent 50%) 0 0/90px 90px,
    linear-gradient(-24deg, transparent 47%, rgba(255,255,255,.8) 48%, rgba(255,255,255,.8) 50%, transparent 51%) 0 0/120px 80px,
    #dfe8df;
  transform: rotate(-3deg);
}
.map-route {
  position: absolute; width: 68%; height: 4px; left: 18%; top: 51%;
  background: var(--primary); transform: rotate(-20deg); border-radius: 10px;
  box-shadow: 0 0 0 5px rgba(11,67,88,.1);
}
.map-pin {
  position: absolute; width: 42px; height: 42px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 15px rgba(0,0,0,.16);
}
.map-pin i { transform: rotate(45deg); font-size: 20px; }
.store-pin { left: 12%; top: 22%; background: var(--accent); color: var(--primary); }
.user-pin { right: 12%; bottom: 18%; background: var(--primary); color: #fff; }
.map-car { position: absolute; left: 48%; top: 42%; width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--primary); display: flex; align-items:center; justify-content:center; box-shadow: 0 5px 15px rgba(0,0,0,.13); }
.map-car i { font-size: 22px; }
.delivery-status { display: flex; align-items: center; justify-content: space-between; color: #fff; padding: 15px 2px 0; }
.delivery-status strong { display: block; font-size: 11px; }
.delivery-status small { display: block; color: #9fb5bf; font-size: 9px; margin-top: 2px; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #4fe08f; box-shadow: 0 0 0 5px rgba(79,224,143,.13); }

/* SECTIONS */
.section { padding: 54px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.section-head h2 { font-size: 25px; letter-spacing: -.035em; line-height: 1.2; margin-top: 4px; }
.section-head.centered { justify-content: center; text-align: center; }
.section-head.centered p { color: var(--muted); font-size: 12px; margin-top: 7px; }
.text-btn { background: transparent; color: var(--primary); font-size: 11px; font-weight: 700; display: inline-flex; align-items: center; gap: 5px; }
.text-btn i { font-size: 15px; }
.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.category-card {
  padding: 17px 10px; border: 1px solid var(--line); border-radius: 15px;
  background: #fff; text-align: left; transition: .2s ease;
}
.category-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #d8e2e6; }
.category-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 13px; font-size: 21px;
}
.category-icon.green { background:#e5f6ee; color:#1b9c68; }
.category-icon.orange { background:#fff0dc; color:#e78a1d; }
.category-icon.blue { background:#e5f1fb; color:#3d7fbd; }
.category-icon.purple { background:#f0eafa; color:#875ac2; }
.category-icon.red { background:#ffebeb; color:#dc5757; }
.category-icon.yellow { background:#fff6d8; color:#b88900; }
.category-card strong { display: block; font-size: 11px; }
.category-card small { display: block; color: var(--muted); font-size: 8px; margin-top: 3px; }

/* PROMO */
.promo-section { padding: 15px 0 35px; }
.promo-card {
  min-height: 280px; overflow: hidden; border-radius: 23px; background: #f3e5ae;
  display: grid; grid-template-columns: 1fr .65fr; align-items: center;
  padding: 34px 45px; position: relative;
}
.promo-content { position: relative; z-index: 2; }
.promo-tag { display:inline-block; padding:5px 9px; background:var(--accent); color:var(--primary); border-radius:6px; font-size:8px; font-weight:800; letter-spacing:.1em; }
.promo-card h2 { font-size: 30px; line-height:1.15; letter-spacing:-.04em; margin:13px 0 8px; }
.promo-card p { max-width: 480px; color:#626b68; font-size:11px; margin-bottom:18px; }
.promo-art { height:100%; min-height:210px; position:relative; }
.promo-circle { position:absolute; width:245px; height:245px; border-radius:50%; background:rgba(255,255,255,.42); right:20px; top:-10px; }
.promo-bag { position:absolute; right:75px; top:35px; width:150px; height:150px; border-radius:35px; background:var(--primary); color:var(--accent); display:flex; align-items:center; justify-content:center; transform:rotate(-7deg); box-shadow:15px 22px 0 rgba(11,67,88,.1); }
.promo-bag i { font-size:75px; }
.floating-price, .floating-tag { position:absolute; z-index:3; border-radius:10px; font-weight:800; box-shadow:0 10px 25px rgba(0,0,0,.1); }
.floating-price { right:0; top:24px; padding:9px 12px; background:#fff; color:var(--primary); font-size:14px; transform:rotate(8deg); }
.floating-tag { right:20px; bottom:18px; padding:6px 9px; background:var(--accent); color:var(--primary); font-size:9px; }

/* STORES */
.store-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.store-card { border:1px solid var(--line); border-radius:18px; overflow:hidden; background:#fff; transition:.2s ease; }
.store-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.store-cover { height:140px; position:relative; display:flex; align-items:center; justify-content:center; }
.store-cover-one { background:linear-gradient(135deg,#cfe8dc,#7bb695); }
.store-cover-two { background:linear-gradient(135deg,#d6e5f0,#81a9c4); }
.store-cover-three { background:linear-gradient(135deg,#f7e4bd,#e3a74b); }
.open-badge { position:absolute; top:10px; left:10px; padding:5px 8px; border-radius:7px; background:rgba(255,255,255,.9); color:#198359; font-size:8px; font-weight:700; }
.open-badge i { font-size:11px; vertical-align:-1px; }
.store-logo { width:58px; height:58px; border-radius:16px; display:flex; align-items:center; justify-content:center; background:#fff; color:var(--primary); font-size:26px; font-weight:800; box-shadow:0 10px 20px rgba(0,0,0,.1); }
.store-body { padding:15px; }
.store-title { display:flex; justify-content:space-between; gap:10px; }
.store-title h3 { font-size:13px; }
.store-title small { display:block; color:var(--muted); font-size:9px; margin-top:3px; }
.store-title small i { color:#f3b500; font-size:11px; }

.follow-btn {
  height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid #dce5e8;
  border-radius: 9px;
  background: #fff;
  color: var(--primary);
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
  transition: .2s ease;
}

.follow-btn i {
  font-size: 14px;
}

.follow-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.follow-btn.following {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.follow-btn.following i {
  transform: rotate(45deg);
}

.store-body > p { color:var(--muted); font-size:9px; margin:10px 0 12px; }
.store-link { background:transparent; color:var(--primary); font-size:10px; font-weight:700; display:flex; align-items:center; gap:5px; }
.store-link i { font-size:14px; }

/* PRODUCTS */
.product-filters { display:flex; gap:5px; overflow-x:auto; scrollbar-width:none; }
.product-filters::-webkit-scrollbar {display:none;}
.filter-btn { padding:7px 10px; background:#f2f5f6; color:#718089; border-radius:8px; font-size:9px; font-weight:700; white-space:nowrap; }
.filter-btn.active { background:var(--primary); color:#fff; }
.product-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; }
.product-card { border:1px solid var(--line); border-radius:17px; overflow:hidden; background:#fff; transition:.2s ease; }
.product-card:hover { transform:translateY(-3px); box-shadow:var(--shadow); }
.product-image { height:205px; position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.img-water { background:linear-gradient(135deg,#dff4fb,#a9dce9); }
.img-rice { background:linear-gradient(135deg,#fff3d4,#e7d2a4); }
.img-detergent { background:linear-gradient(135deg,#e7edff,#b9c8f4); }
.img-cable { background:linear-gradient(135deg,#e9e5dc,#b8afa0); }
.product-emoji { font-size:78px; filter:drop-shadow(0 15px 13px rgba(0,0,0,.12)); }
.product-badge { position:absolute; top:10px; left:10px; padding:5px 7px; border-radius:6px; background:var(--accent); color:var(--primary); font-size:8px; font-weight:800; z-index:2; }
.product-heart { position:absolute; top:9px; right:9px; width:31px; height:31px; border-radius:50%; background:rgba(255,255,255,.88); color:#718089; font-size:16px; z-index:2; }
.product-heart.liked, .heart-btn.liked { color:#e45050; }
.product-info { padding:13px; }
.product-info > small { color:var(--muted); font-size:8px; }
.product-info h3 { font-size:12px; margin:4px 0 7px; }
.price-row { display:flex; align-items:center; gap:6px; margin-bottom:11px; }
.price-row strong { color:var(--primary); font-size:14px; }
.price-row del { color:#9aa5aa; font-size:9px; }
.add-btn { width:100%; height:34px; border-radius:8px; background:#edf3f5; color:var(--primary); display:flex; align-items:center; justify-content:center; gap:6px; font-size:9px; font-weight:800; transition:.2s; }
.add-btn:hover { background:var(--primary); color:#fff; }
.add-btn i { font-size:14px; }
.empty-state { padding:50px 20px; text-align:center; color:var(--muted); }
.empty-state i { font-size:35px; color:var(--primary); }
.empty-state h3 { color:var(--ink); font-size:15px; margin-top:8px; }
.empty-state p { font-size:10px; }

/* STEPS */
.steps-section { background:var(--bg); padding:65px 0; margin-top:20px; }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.step { position:relative; padding:25px 18px; background:#fff; border:1px solid var(--line); border-radius:17px; }
.step-number { position:absolute; top:13px; right:15px; color:#d5dee2; font-size:11px; font-weight:800; }
.step > i { display:flex; width:48px; height:48px; border-radius:13px; background:#edf4f6; color:var(--primary); align-items:center; justify-content:center; font-size:23px; margin-bottom:16px; }
.step h3 { font-size:12px; margin-bottom:5px; }
.step p { font-size:9px; color:var(--muted); }

/* CTA + FOOTER */
.cta { margin-top:55px; margin-bottom:55px; background:var(--primary); color:#fff; border-radius:22px; padding:30px 36px; display:flex; align-items:center; justify-content:space-between; gap:25px; }
.cta .section-kicker { color:var(--accent); }
.cta h2 { font-size:24px; margin:4px 0; }
.cta p { color:#b7cbd2; font-size:11px; }
.footer { background:#0a2936; color:#fff; padding:55px 0 0; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding-bottom:45px; }
.footer-brand img { width:145px; filter:brightness(0) invert(1); opacity:.95; }
.footer-brand p { color:#9db2ba; font-size:10px; max-width:300px; margin-top:14px; }
.socials { display:flex; gap:7px; margin-top:17px; }
.socials a { width:34px; height:34px; border-radius:9px; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:16px; }
.footer-col { display:flex; flex-direction:column; gap:9px; }
.footer-col h4 { font-size:11px; margin-bottom:4px; }
.footer-col a { color:#9db2ba; font-size:9px; }
.footer-col a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.09); min-height:58px; display:flex; align-items:center; justify-content:space-between; color:#78909a; font-size:8px; }
.footer-bottom div { display:flex; gap:15px; }

/* DRAWERS */
.overlay { position:fixed; inset:0; background:rgba(5,25,34,.46); z-index:1100; opacity:0; visibility:hidden; transition:.25s; }
.overlay.show { opacity:1; visibility:visible; }
.side-menu, .cart-drawer {
  position:fixed; top:0; bottom:0; z-index:1200; background:#fff;
  transition:transform .3s ease; box-shadow:0 0 40px rgba(0,0,0,.12);
}
.side-menu { left:0; width:min(360px,88vw); transform:translateX(-100%); padding:20px; }
.side-menu.open { transform:translateX(0); }
.side-menu-head, .cart-head { display:flex; align-items:center; justify-content:space-between; }
.side-menu-head img { width:130px; }
.side-user { margin:25px 0; background:#f3f6f7; border-radius:15px; padding:13px; display:flex; align-items:center; gap:10px; }
.avatar { width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:#dcecef; color:var(--primary); }
.side-user div { flex:1; }
.side-user strong { display:block; font-size:11px; }
.side-user small { color:var(--muted); font-size:8px; }
.side-user > i { color:var(--muted); }
.side-links { display:flex; flex-direction:column; gap:3px; }
.side-links a { padding:12px 10px; border-radius:9px; display:flex; align-items:center; gap:12px; font-size:11px; font-weight:600; color:#53656d; }
.side-links a:hover { background:#f3f6f7; color:var(--primary); }
.side-links i { font-size:19px; color:var(--primary); }
.side-menu-footer { position:absolute; left:20px; right:20px; bottom:25px; display:flex; flex-direction:column; gap:7px; }
.side-menu-footer button { background:#f3f6f7; padding:12px; text-align:left; border-radius:9px; color:#53656d; font-size:9px; }
.side-menu-footer i { color:var(--primary); margin-right:7px; }

.cart-drawer { right:0; width:min(420px,94vw); transform:translateX(100%); display:flex; flex-direction:column; padding:22px; }
.cart-drawer.open { transform:translateX(0); }
.cart-head h2 { font-size:22px; line-height:1.1; margin-top:2px; }
.cart-items { flex:1; overflow:auto; margin:20px -4px; padding:0 4px; }
.cart-empty { height:100%; min-height:300px; display:flex; align-items:center; justify-content:center; flex-direction:column; text-align:center; color:var(--muted); }
.cart-empty i { font-size:45px; color:#cad6da; }
.cart-empty h3 { color:var(--ink); font-size:14px; margin-top:10px; }
.cart-empty p { font-size:10px; }
.cart-item { display:flex; gap:10px; padding:12px 0; border-bottom:1px solid var(--line); }
.cart-item-icon { width:50px; height:50px; border-radius:11px; display:flex; align-items:center; justify-content:center; background:#edf3f5; font-size:24px; }
.cart-item-info { flex:1; }
.cart-item-info strong { display:block; font-size:11px; }
.cart-item-info small { color:var(--muted); font-size:8px; }
.cart-item-row { display:flex; justify-content:space-between; align-items:center; margin-top:5px; }
.cart-item-row b { color:var(--primary); font-size:10px; }
.qty { display:flex; align-items:center; gap:7px; }
.qty button { width:22px; height:22px; border-radius:6px; background:#eef3f4; color:var(--primary); font-weight:800; }
.qty span { font-size:9px; font-weight:700; }
.cart-summary { border-top:1px solid var(--line); padding-top:17px; }
.cart-summary > div { display:flex; justify-content:space-between; margin-bottom:8px; font-size:10px; color:var(--muted); }
.cart-summary strong { color:var(--ink); }
.cart-summary .cart-total { margin-top:13px; padding-top:12px; border-top:1px dashed var(--line); color:var(--ink); font-size:12px; }
.cart-total strong { color:var(--primary); font-size:18px; }
.checkout-btn { width:100%; margin:8px 0; }
.cart-summary > small { color:#89979e; font-size:8px; text-align:center; display:block; }
.cart-summary > small i { color:var(--success); }

/* TOAST */
.toast { position:fixed; left:50%; bottom:24px; transform:translate(-50%,20px); opacity:0; visibility:hidden; z-index:2000; background:#132f3b; color:#fff; padding:10px 14px; border-radius:10px; display:flex; align-items:center; gap:7px; box-shadow:0 10px 30px rgba(0,0,0,.2); font-size:10px; transition:.25s; }
.toast.show { opacity:1; visibility:visible; transform:translate(-50%,0); }
.toast i { color:#65e2a1; font-size:16px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .category-grid { grid-template-columns:repeat(3,1fr); }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:repeat(2,1fr); }
  .hero { grid-template-columns:1fr; gap:35px; }
  .hero-card { max-width:650px; width:100%; margin:auto; }
  .store-grid { grid-template-columns:1fr; }
  .store-card { display:grid; grid-template-columns:230px 1fr; }
  .store-cover { height:100%; min-height:170px; }
  .promo-card { grid-template-columns:1fr .7fr; }
}

@media (max-width: 680px) {
  .container { width:min(100% - 28px, 1180px); }
  .header-inner { width:calc(100% - 18px); height:62px; }
  .brand { min-width:0; }
  .brand img { width:105px; }
  .desktop-actions { display:none; }
  .mobile-actions { display:flex; gap:1px; }
  .icon-btn { width:39px; height:39px; font-size:20px; }
  .search-bar-wrap { top:62px; padding:8px 0; }
  .search-bar { width:calc(100% - 18px); height:44px; }
  .currency-pill {
  height: 34px;
  padding: 0 8px;
  gap: 4px;
}

.currency-pill i {
  font-size: 12px;
}

.currency-menu {
  right: -2px;
  width: 205px;
}
  .quick-nav { top:114px; }
  .quick-nav-inner { width:calc(100% - 18px); }
  .quick-link { padding:11px 13px; font-size:10px; }
  .quick-link.active::after { left:12px; right:12px; }
  main { padding-top:164px; }
  .hero { padding-top:30px; min-height:auto; }
  .hero h1 { font-size:39px; }
  .hero-copy > p { font-size:12px; }
  .hero-card { padding:13px; border-radius:19px; }
  .delivery-map { height:205px; }
  .section { padding:38px 0; }
  .section-head { align-items:flex-start; }
  .section-head h2 { font-size:21px; }
  .category-grid { grid-template-columns:repeat(2,1fr); }
  .category-card { padding:13px 10px; }
  .promo-section { padding:5px 0 20px; }
  .promo-card { min-height:360px; display:block; padding:25px; }
  .promo-card h2 { font-size:25px; }
  .promo-art { min-height:140px; }
  .promo-circle { width:180px; height:180px; right:5px; top:0; }
  .promo-bag { width:110px; height:110px; right:60px; top:25px; border-radius:25px; }
  .promo-bag i { font-size:55px; }
  .floating-price { right:18px; top:18px; }
  .store-card { display:block; }
  .store-cover { height:140px; min-height:0; }
  .product-grid { gap:10px; }
  .product-image { height:155px; }
  .product-emoji { font-size:60px; }
  .product-info { padding:10px; }
  .product-info h3 { font-size:10px; }
  .product-filters { width:100%; }
  .section-head:has(.product-filters) { flex-direction:column; }
  .steps-grid { grid-template-columns:1fr; }
  .cta { display:block; padding:25px; }
  .cta .btn { margin-top:17px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:28px 20px; }
  .footer-brand { grid-column:1/-1; }
  .footer-bottom { display:block; padding:16px 0; }
  .footer-bottom div { margin-top:8px; }
}
