:root {
  --ink: #151515;
  --paper: #faf7f4;
  --card: #ffffff;
  --red: #b02525;
  --red-deep: #7e1717;
  --red-tint: #f6e3e0;
  --red-soft: #eec9c4;
  --muted: #6f6a66;
  --line: #e8e2dd;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(21, 21, 21, 0.08);
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Karla', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* barcode stripe motif */
.stripes {
  height: 14px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 3px, transparent 3px 6px,
    var(--ink) 6px 8px, transparent 8px 14px,
    var(--ink) 14px 20px, transparent 20px 23px,
    var(--ink) 23px 25px, transparent 25px 32px);
  opacity: 0.85;
}
.stripes.red { filter: none; background: repeating-linear-gradient(90deg,
    var(--red) 0 3px, transparent 3px 6px,
    var(--red) 6px 8px, transparent 8px 14px,
    var(--red) 14px 20px, transparent 20px 23px,
    var(--red) 23px 25px, transparent 25px 32px); }

/* ---------- header ---------- */
.topbar { background: var(--ink); color: #cfc9c4; font-size: 13px; }
.topbar .wrap { display: flex; justify-content: space-between; padding-top: 6px; padding-bottom: 6px; }
.topbar a { color: #f0a9a0; }

header.site {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
header.site .wrap { display: flex; align-items: center; gap: 28px; height: 66px; }
.logo img { height: 34px; width: auto; }
nav.main { display: flex; gap: 4px; flex: 1; }
nav.main > .navitem { position: relative; }
nav.main a.top {
  display: block; padding: 10px 12px; font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em; border-radius: 8px; color: var(--ink);
}
nav.main a.top:hover, nav.main a.top.active { background: var(--red-tint); color: var(--red-deep); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 190px;
  background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(21,21,21,0.12); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: 0.15s;
}
.navitem:hover .dropdown, .navitem:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 8px 12px; border-radius: 7px; font-size: 14px; }
.dropdown a:hover { background: var(--red-tint); color: var(--red-deep); }

.head-actions { display: flex; align-items: center; gap: 8px; }
.cart-btn {
  position: relative; background: var(--ink); color: #fff; border: none;
  border-radius: 999px; padding: 10px 18px; font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.cart-btn:hover { background: var(--red); }
.cart-count {
  background: var(--red); color: #fff; border-radius: 999px; font-size: 12px;
  min-width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}
.hamburger { display: none; background: none; border: none; font-size: 24px; color: var(--ink); }

/* ---------- hero ---------- */
.hero { background: var(--ink); color: #fff; overflow: hidden; }
.hero .wrap { padding: 56px 20px 48px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
.hero .kicker { color: var(--red-soft); font-weight: 700; letter-spacing: 0.22em; font-size: 12px; text-transform: uppercase; margin-bottom: 14px; }
.hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -0.01em; }
.hero p { color: #c9c2bd; margin: 16px 0 26px; max-width: 46ch; font-size: 16px; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; border: none; border-radius: 999px;
  padding: 13px 26px; font-weight: 700; font-size: 15px; transition: 0.15s;
}
.btn.red { background: var(--red); color: #fff; }
.btn.red:hover { background: var(--red-deep); }
.btn.ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn.ghost:hover { border-color: #fff; }
.btn.dark { background: var(--ink); color: #fff; }
.btn.dark:hover { background: var(--red); }
.hero-brands { display: grid; gap: 12px; }
.hero-brand {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 16px 18px; transition: 0.15s;
}
.hero-brand:hover { background: rgba(176,37,37,0.25); border-color: var(--red); transform: translateX(4px); }
.hero-brand strong { font-family: var(--font-display); font-size: 17px; display: block; }
.hero-brand span { color: #b9b1ab; font-size: 13px; }

/* ---------- sections ---------- */
section.block { padding: 48px 0 20px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.section-head h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px, 3vw, 30px); letter-spacing: -0.01em; }
.section-head .more { color: var(--red); font-weight: 700; font-size: 14px; white-space: nowrap; }
.section-head .more:hover { color: var(--red-deep); }
.eyebrow { color: var(--red); font-weight: 700; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 6px; }

/* product grid + cards */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid.cols3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(21,21,21,0.1); }
.card .thumb { aspect-ratio: 4/3; background: #efe9e4 url('/img/dish-placeholder.svg') center/44px no-repeat; position: relative; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.03em;
}
.badge.dark { background: var(--ink); }
.card .body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card .name { font-weight: 700; font-size: 15px; line-height: 1.3; }
.card .meta { color: var(--muted); font-size: 12.5px; }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 6px; }
.price { font-family: var(--font-display); font-weight: 900; font-size: 17px; color: var(--red-deep); }
.price .old { color: var(--muted); font-size: 13px; text-decoration: line-through; font-weight: 400; margin-left: 6px; }
.add-btn {
  background: var(--ink); color: #fff; border: none; width: 36px; height: 36px;
  border-radius: 999px; font-size: 20px; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: 0.15s;
}
.add-btn:hover { background: var(--red); transform: scale(1.08); }

/* featured strip */
.feat-strip { display: grid; grid-auto-flow: column; grid-auto-columns: 150px; gap: 14px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: thin; }
.feat-item { text-align: center; }
.feat-item .disc {
  width: 110px; height: 110px; border-radius: 999px; margin: 0 auto 8px; overflow: hidden;
  border: 3px solid var(--red-tint); background: #efe9e4 url('/img/dish-placeholder.svg') center/36px no-repeat; transition: 0.15s;
}
.feat-item:hover .disc { border-color: var(--red); transform: scale(1.05); }
.feat-item .disc img { width: 100%; height: 100%; object-fit: cover; }
.feat-item .fname { font-size: 13.5px; font-weight: 700; line-height: 1.25; }
.feat-item .fprice { font-size: 12.5px; color: var(--red-deep); font-weight: 700; }

/* reviews */
.reviews { background: var(--ink); color: #fff; padding: 54px 0; margin-top: 40px; }
.reviews h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px, 3vw, 30px); text-align: center; margin-bottom: 30px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 20px;
}
.review .stars { color: #f0a9a0; letter-spacing: 2px; margin-bottom: 10px; font-size: 14px; }
.review p { color: #d8d2cd; font-size: 14.5px; }
.review .who { margin-top: 14px; font-weight: 700; font-size: 14px; color: #fff; }

/* footer */
footer.site { background: var(--red-tint); color: var(--red-deep); margin-top: 0; }
footer.site .cols { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 26px; padding: 44px 0 30px; }
footer.site .flogo img { height: 30px; margin-bottom: 12px; }
footer.site p { font-size: 13.5px; }
footer.site h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }
footer.site .map { border: 0; width: 100%; height: 110px; border-radius: 8px; background: var(--red-soft); }
footer.site .addr { font-size: 12.5px; margin-top: 6px; }
.copyright { border-top: 1px solid var(--red-soft); text-align: center; font-size: 13px; padding: 14px 0; }

/* ---------- cart drawer ---------- */
.drawer-veil { position: fixed; inset: 0; background: rgba(21,21,21,0.5); z-index: 90; opacity: 0; visibility: hidden; transition: 0.2s; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(400px, 92vw); background: var(--card);
  z-index: 95; transform: translateX(105%); transition: transform 0.25s ease; display: flex; flex-direction: column;
}
body.cart-open .drawer { transform: none; }
body.cart-open .drawer-veil { opacity: 1; visibility: visible; }
.drawer .d-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.drawer .d-head h3 { font-family: var(--font-display); font-size: 18px; }
.drawer .d-close { background: none; border: none; font-size: 26px; color: var(--muted); }
.drawer .d-items { flex: 1; overflow-y: auto; padding: 14px 20px; display: flex; flex-direction: column; gap: 12px; }
.d-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 12px; align-items: center; border-bottom: 1px dashed var(--line); padding-bottom: 12px; }
.d-item .ithumb { width: 54px; height: 54px; border-radius: 8px; background: #efe9e4 url('/img/dish-placeholder.svg') center/24px no-repeat; overflow: hidden; }
.d-item .ithumb img { width: 100%; height: 100%; object-fit: cover; }
.d-item .iname { font-weight: 700; font-size: 14px; line-height: 1.25; }
.d-item .iprice { color: var(--red-deep); font-size: 13px; font-weight: 700; }
.qty { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 3px 6px; margin-top: 5px; }
.qty button { background: none; border: none; width: 22px; height: 22px; font-size: 16px; color: var(--ink); }
.qty span { min-width: 18px; text-align: center; font-weight: 700; font-size: 14px; }
.d-item .iremove { background: none; border: none; color: var(--muted); font-size: 18px; }
.d-empty { text-align: center; color: var(--muted); padding: 40px 10px; font-size: 14.5px; }
.drawer .d-foot { border-top: 1px solid var(--line); padding: 16px 20px; }
.d-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 12px; }
.d-total .amt { font-family: var(--font-display); font-size: 19px; color: var(--red-deep); }
.drawer .btn { width: 100%; justify-content: center; }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 11px 22px; border-radius: 999px; font-size: 14px;
  font-weight: 700; opacity: 0; visibility: hidden; transition: 0.25s; z-index: 120; white-space: nowrap;
}
.toast.show { opacity: 1; visibility: visible; transform: translateX(-50%); }

/* ---------- brand / menu page ---------- */
.page-head { background: var(--ink); color: #fff; padding: 34px 0 26px; }
.page-head h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(26px, 4vw, 40px); }
.page-head p { color: #c9c2bd; margin-top: 6px; }
.cat-tabs { display: flex; gap: 8px; overflow-x: auto; padding: 16px 0 4px; scrollbar-width: none; }
.cat-tabs a {
  white-space: nowrap; padding: 8px 18px; border-radius: 999px; border: 1.5px solid var(--line);
  font-weight: 700; font-size: 14px; background: var(--card); transition: 0.15s;
}
.cat-tabs a.active, .cat-tabs a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.cat-block { padding: 26px 0 6px; }
.cat-block h2 { font-family: var(--font-display); font-weight: 900; font-size: 22px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.cat-block h2::after { content: ''; flex: 1; height: 8px; background: repeating-linear-gradient(90deg, var(--line) 0 2px, transparent 2px 5px, var(--line) 5px 7px, transparent 7px 12px); }

/* ---------- product detail ---------- */
.crumbs { font-size: 13px; color: var(--muted); padding: 18px 0 0; }
.crumbs a:hover { color: var(--red); }
.pd { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 26px 0 50px; align-items: start; }
.pd .photo { border-radius: 14px; overflow: hidden; background: #efe9e4 url('/img/dish-placeholder.svg') center/70px no-repeat; aspect-ratio: 1; border: 1px solid var(--line); }
.pd .photo img { width: 100%; height: 100%; object-fit: cover; }
.pd h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(24px, 3.4vw, 36px); line-height: 1.1; }
.pd .brandline { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px; }
.pd .bigprice { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--red-deep); margin: 14px 0; }
.pd .bigprice .old { font-size: 18px; color: var(--muted); text-decoration: line-through; font-weight: 400; margin-left: 10px; }
.pd .desc { color: #4c4844; margin-bottom: 22px; max-width: 52ch; }
.pd .buy-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.pd .qty { padding: 8px 10px; background: var(--card); }
.pd .qty button { width: 28px; height: 28px; font-size: 20px; }
.trust { display: flex; gap: 18px; margin-top: 24px; flex-wrap: wrap; }
.trust div { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.trust b { color: var(--ink); }

/* ---------- checkout ---------- */
.co { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 34px; padding: 34px 0 60px; align-items: start; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 24px; }
.panel h2 { font-family: var(--font-display); font-size: 20px; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: 13.5px; margin-bottom: 5px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 9px;
  font-family: inherit; font-size: 15px; background: var(--paper);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 3px; }
.pay-opt { display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--red); background: var(--red-tint); border-radius: 10px; padding: 13px 16px; font-weight: 700; font-size: 14.5px; color: var(--red-deep); }
.summary-item { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; padding: 7px 0; border-bottom: 1px dashed var(--line); }
.summary-total { display: flex; justify-content: space-between; font-weight: 700; padding-top: 12px; font-size: 16px; }
.summary-total .amt { font-family: var(--font-display); font-size: 21px; color: var(--red-deep); }
.err { background: #fdeaea; border: 1px solid #f0b6b6; color: #8c1c1c; border-radius: 9px; padding: 11px 14px; font-size: 14px; margin-bottom: 14px; display: none; }
.err.show { display: block; }

/* success */
.success { max-width: 620px; margin: 44px auto 70px; text-align: center; }
.success .tick { width: 74px; height: 74px; border-radius: 999px; background: var(--red); color: #fff; font-size: 38px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.success h1 { font-family: var(--font-display); font-weight: 900; font-size: 30px; }
.success .ono { color: var(--red-deep); font-weight: 700; }
.success .panel { text-align: left; margin-top: 24px; }

/* ---------- static pages ---------- */
.prose { max-width: 760px; padding: 34px 0 60px; }
.prose h1 { font-family: var(--font-display); font-weight: 900; font-size: 32px; margin-bottom: 16px; }
.prose h2 { font-family: var(--font-display); font-size: 20px; margin: 26px 0 8px; }
.prose p { margin-bottom: 12px; color: #3d3936; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 22px; }

/* ---------- WhatsApp float + bottom nav ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 84px; width: 52px; height: 52px; border-radius: 999px;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25); z-index: 60; font-size: 26px;
}
@media (min-width: 861px) { .wa-float { bottom: 24px; } }

.bottom-nav {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; background: var(--card);
  border-top: 1px solid var(--line); z-index: 80; padding: 6px 0 max(8px, env(safe-area-inset-bottom));
}
.bottom-nav .wrap-bn { display: grid; grid-template-columns: repeat(4, 1fr); }
.bottom-nav a, .bottom-nav button { background: none; border: none; text-align: center; color: var(--muted); font-size: 10.5px; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 4px 0; position: relative; }
.bottom-nav .ico { font-size: 21px; line-height: 1; }
.bottom-nav .active, .bottom-nav a:active { color: var(--red); }
.bottom-nav .bn-count { position: absolute; top: 0; right: calc(50% - 20px); background: var(--red); color: #fff; border-radius: 999px; font-size: 10px; min-width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; }

/* mobile menu sheet */
.sheet-veil { position: fixed; inset: 0; background: rgba(21,21,21,0.5); z-index: 90; opacity: 0; visibility: hidden; transition: 0.2s; }
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; background: var(--card); z-index: 95;
  border-radius: 18px 18px 0 0; transform: translateY(105%); transition: transform 0.25s ease;
  max-height: 82vh; overflow-y: auto; padding: 10px 20px 26px;
}
body.menu-open .sheet { transform: none; }
body.menu-open .sheet-veil { opacity: 1; visibility: visible; }
.sheet .grab { width: 44px; height: 4px; border-radius: 4px; background: var(--line); margin: 6px auto 14px; }
.sheet h4 { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin: 16px 0 6px; }
.sheet a { display: block; padding: 10px 4px; font-weight: 700; border-bottom: 1px solid var(--line); font-size: 15px; }
.sheet a.sub { font-weight: 400; padding-left: 16px; color: #4c4844; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
  footer.site .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  body { padding-bottom: 62px; }
  .topbar { display: none; }
  nav.main { display: none; }
  .hamburger { display: block; }
  header.site .wrap { height: 58px; gap: 12px; justify-content: space-between; }
  .cart-btn { padding: 9px 14px; }
  .cart-btn .lbl { display: none; }
  .hero .wrap { grid-template-columns: 1fr; padding: 36px 20px; gap: 24px; }
  .grid, .grid.cols3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .review-grid { grid-template-columns: 1fr; }
  .pd { grid-template-columns: 1fr; gap: 22px; }
  .co { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  footer.site .cols { grid-template-columns: 1fr; gap: 20px; padding: 30px 0 20px; }
  .bottom-nav { display: block; }
  section.block { padding: 30px 0 12px; }
  .card .body { padding: 10px 11px 12px; }
  .card .name { font-size: 13.5px; }
  .price { font-size: 15px; }
  .add-btn { width: 32px; height: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
