/* ─── Bika's Kitchen — Main Stylesheet ─────────────────────────────────────── */

/* ── Variables ──────────────────────────────────────────────────────────────── */
:root {
  --gold:#E8891A; --gold-l:#F5A623; --gold-pale:#FEF3E2; --gold-d:#B5640A;
  --cream:#FFFDF7; --dark:#1A1208; --text:#3D2B0E; --muted:#9B7E55;
  --green:#2D5A27; --red:#C0392B;
  --sidebar-w:290px;
  --nav-h:62px;
  --radius:16px;
  --shadow:0 8px 32px rgba(26,18,8,.10);
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; background:var(--cream); color:var(--dark); overflow-x:hidden; }
a { color:inherit; }
button { font-family:'DM Sans',sans-serif; }
img { max-width:100%; }
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-thumb { background:var(--gold-l); border-radius:2px; }

/* ── Overlay ────────────────────────────────────────────────────────────────── */
#overlay {
  position:fixed; inset:0; background:rgba(26,18,8,.55); z-index:299;
  opacity:0; pointer-events:none; transition:opacity .35s; backdrop-filter:blur(3px);
}
#overlay.on { opacity:1; pointer-events:all; }


/* ── Navigation ─────────────────────────────────────────────────────────────── */
nav#mainNav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  padding:0 20px; height:var(--nav-h);
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(255,253,247,.95); backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(232,137,26,.1); transition:box-shadow .3s;
  gap:12px;
}
nav#mainNav.scrolled { box-shadow:0 4px 24px rgba(26,18,8,.08); }

.nav-profile-btn {
  width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--gold-l),var(--gold-d));
  border:none; cursor:pointer; display:flex; align-items:center; justify-content:center;
  font-size:17px; transition:transform .2s,box-shadow .2s; box-shadow:0 2px 10px rgba(232,137,26,.3);
  flex-shrink:0;
}
.nav-profile-btn:hover { transform:scale(1.08); box-shadow:0 4px 16px rgba(232,137,26,.4); }

.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
.nav-logo-img { width:36px; height:36px; object-fit:contain; border-radius:8px; background:#1A1208; padding:3px; }
.nav-logo-icon { width:34px; height:34px; border-radius:10px; background:linear-gradient(135deg,var(--gold-l),var(--gold-d)); display:flex; align-items:center; justify-content:center; font-size:16px; }
.nav-logo-name { font-family:'Playfair Display',serif; font-size:16px; color:var(--dark); line-height:1.2; }
.nav-logo-sub { font-size:10px; color:var(--muted); }

.nav-center { display:flex; align-items:center; gap:4px; }
.nav-link { font-size:13px; font-weight:500; color:var(--muted); text-decoration:none; padding:6px 12px; border-radius:20px; transition:all .2s; }
.nav-link:hover, .nav-link.active { color:var(--gold-d); background:var(--gold-pale); }

.nav-right { display:flex; align-items:center; gap:8px; }
.nav-cart-btn {
  display:none; align-items:center; gap:6px; background:var(--dark); color:#fff;
  border:none; border-radius:22px; padding:8px 16px; font-size:12px; font-weight:500;
  cursor:pointer; position:relative; transition:transform .2s;
}
.nav-cart-btn:hover { transform:scale(1.03); }
.nav-cart-dot {
  position:absolute; top:-4px; right:-4px; width:16px; height:16px;
  background:#E24B4A; border-radius:50%; font-size:9px; color:#fff;
  display:flex; align-items:center; justify-content:center; font-weight:700;
  border:2px solid var(--cream);
}
@media(max-width:600px) {
  .nav-center { display:none; }
  .nav-logo-sub { display:none; }
}

/* ── Hero Slider (index page) ────────────────────────────────────────────────── */
.slider-wrap { margin-top:var(--nav-h); position:relative; overflow:hidden; }
.slider-track { display:flex; transition:transform .75s cubic-bezier(.77,0,.175,1); }
.slide { min-width:100%; height:460px; position:relative; display:flex; align-items:center; overflow:hidden; }
@media(max-width:600px) { .slide { height:auto; min-height:400px; padding-bottom:20px; flex-direction:column; justify-content:flex-end; } }

.s1 { background:linear-gradient(135deg,#110800 0%,#3D2000 50%,#7A3D0D 100%); }
.s2 { background:linear-gradient(135deg,#071207 0%,#1A3A1A 50%,#2D5A27 100%); }
.s3 { background:linear-gradient(135deg,#120404 0%,#3A1010 50%,#7A2020 100%); }

.slide-visual { position:absolute; right:6%; top:50%; transform:translateY(-50%); width:42%; display:flex; align-items:center; justify-content:center; pointer-events:none; }
@media(max-width:600px) { .slide-visual { position:relative; right:auto; top:auto; transform:none; width:100%; padding-top:30px; margin-bottom:-10px; order:-1; } }

.food-ring-wrap { position:relative; display:flex; align-items:center; justify-content:center; width:260px; height:260px; }
@media(max-width:600px) { .food-ring-wrap { width:180px; height:180px; } }
.fr { position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.07); }
.fr1 { width:100%; height:100%; animation:spinR 20s linear infinite; }
.fr2 { width:76%; height:76%; animation:spinR 30s linear infinite reverse; }
.fr3 { width:55%; height:55%; animation:spinR 15s linear infinite; border-color:rgba(255,255,255,.12); }
.food-em { font-size:110px; position:relative; z-index:2; filter:drop-shadow(0 10px 28px rgba(0,0,0,.4)); animation:foodFloat 4s ease-in-out infinite; user-select:none; }
@media(max-width:600px) { .food-em { font-size:80px; } }
@keyframes spinR { to { transform:rotate(360deg); } }
@keyframes foodFloat { 0%,100% { transform:translateY(0) rotate(-2deg); } 50% { transform:translateY(-14px) rotate(2deg); } }

.float-tag { position:absolute; background:rgba(255,255,255,.1); backdrop-filter:blur(10px); border:1px solid rgba(255,255,255,.15); border-radius:14px; padding:8px 14px; color:rgba(255,255,255,.9); font-size:11px; white-space:nowrap; pointer-events:none; }
.ft1 { top:18%; left:-10%; animation:ftA 3.5s ease-in-out infinite; }
.ft2 { bottom:18%; right:-5%; animation:ftB 3.5s ease-in-out infinite; }
@media(max-width:600px) { .ft1,.ft2 { display:none; } }
@keyframes ftA { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes ftB { 0%,100% { transform:translateY(0); } 50% { transform:translateY(8px); } }

.slide-content { padding:0 6% 0 7%; z-index:2; position:relative; max-width:54%; }
@media(max-width:600px) { .slide-content { max-width:100%; padding:0 20px 24px; text-align:center; } }
.slide-tag-pill { display:inline-flex; align-items:center; gap:6px; background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); border-radius:24px; padding:5px 14px; font-size:11px; color:rgba(255,255,255,.9); margin-bottom:16px; letter-spacing:.4px; animation:sUp .6s ease both; }
.slide-h { font-family:'Playfair Display',serif; font-size:40px; line-height:1.1; color:#fff; margin-bottom:12px; animation:sUp .6s .1s ease both; }
@media(max-width:600px) { .slide-h { font-size:28px; } }
.slide-h em { font-style:italic; color:var(--gold-l); }
.slide-p { font-size:13px; color:rgba(255,255,255,.6); line-height:1.7; margin-bottom:22px; max-width:300px; animation:sUp .6s .2s ease both; }
@media(max-width:600px) { .slide-p { display:none; } }
.slide-price { display:flex; align-items:baseline; gap:8px; margin-bottom:22px; animation:sUp .6s .25s ease both; }
@media(max-width:600px) { .slide-price { justify-content:center; } }
.sp-num { font-size:30px; font-weight:500; color:var(--gold-l); }
.sp-lbl { font-size:11px; color:rgba(255,255,255,.4); }
.slide-btn { display:inline-flex; align-items:center; gap:10px; border:none; border-radius:26px; padding:13px 26px; font-size:13px; font-weight:500; cursor:pointer; animation:sUp .6s .3s ease both; transition:transform .2s,box-shadow .2s; }
.slide-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.3); }
.btn-gold { background:linear-gradient(135deg,var(--gold-l),var(--gold-d)); color:#fff; }
.btn-green { background:linear-gradient(135deg,#3B7A30,#1F4A1A); color:#fff; }
.btn-red { background:linear-gradient(135deg,#9B2C2C,#6B1818); color:#fff; }
@keyframes sUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }

.s-arrow { position:absolute; top:50%; transform:translateY(-50%); z-index:10; width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); color:#fff; font-size:18px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s; backdrop-filter:blur(8px); }
.s-arrow:hover { background:rgba(255,255,255,.18); }
.sa-l { left:16px; } .sa-r { right:16px; }
.s-dots { position:absolute; bottom:20px; left:50%; transform:translateX(-50%); display:flex; gap:7px; z-index:10; }
.sdot { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.28); cursor:pointer; transition:all .35s; }
.sdot.on { width:26px; border-radius:3px; background:var(--gold-l); }
@media(max-width:600px) { .s-arrow { display:none; } }

/* ── Promo Banners ────────────────────────────────────────────────────────────── */
.banners-section { padding:32px 24px 0; }
@media(max-width:600px) { .banners-section { padding:24px 16px 0; } }
.banners-grid {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.banners-grid::-webkit-scrollbar { display: none; }
.banners-grid .banner {
  flex: 0 0 240px;
  min-width: 240px;
  scroll-snap-align: start;
}
@media(max-width:600px) { .banners-grid .banner { flex: 0 0 200px; min-width: 200px; } }

.banner { border-radius:20px; overflow:hidden; position:relative; cursor:pointer; transition:transform .3s,box-shadow .3s; aspect-ratio:16/7; }
.banner:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(0,0,0,.18); }
.banner-bg { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:80px; opacity:.18; }
.b1 { background:linear-gradient(135deg,#3D2000,#8B4500); }
.b2 { background:linear-gradient(135deg,#071A07,#1F4A1A); }
.b3 { background:linear-gradient(135deg,#1A0A2E,#4A2080); }
.b4 { background:linear-gradient(135deg,#1A0808,#6B2020); }
.b5 { background:linear-gradient(135deg,#0A1A1A,#1A4A4A); }
.b6 { background:linear-gradient(135deg,#1A1400,#4A3A00); }
.banner-content { position:absolute; inset:0; padding:16px 18px; display:flex; flex-direction:column; justify-content:flex-end; }
.banner-tag { display:inline-block; padding:3px 10px; border-radius:20px; font-size:9px; font-weight:600; letter-spacing:.5px; text-transform:uppercase; margin-bottom:6px; background:rgba(255,255,255,.15); color:rgba(255,255,255,.9); width:fit-content; }
.banner-title { font-family:'Playfair Display',serif; font-size:17px; color:#fff; line-height:1.2; margin-bottom:4px; }
.banner-sub { font-size:11px; color:rgba(255,255,255,.6); margin-bottom:10px; }
.banner-price { display:flex; align-items:center; gap:10px; }
.bp-num { font-size:20px; font-weight:500; color:var(--gold-l); }
.bp-btn { background:rgba(255,255,255,.15); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.25); color:#fff; border-radius:20px; padding:6px 14px; font-size:11px; cursor:pointer; transition:background .2s; white-space:nowrap; }
.bp-btn:hover { background:rgba(255,255,255,.25); }
.banner::after { content:''; position:absolute; inset:0; background:linear-gradient(105deg,transparent 40%,rgba(255,255,255,.06) 50%,transparent 60%); background-size:200% 100%; animation:shimmer 3s infinite; pointer-events:none; }
@keyframes shimmer { 0% { background-position:200% 0; } 100% { background-position:-200% 0; } }

/* ── Category Strip ───────────────────────────────────────────────────────────── */
.cats-section { padding:28px 24px 0; }
@media(max-width:600px) { .cats-section { padding:24px 16px 0; } }
.sec-header { display:flex; align-items:baseline; justify-content:space-between; margin-bottom:16px; }
.sec-title { font-family:'Playfair Display',serif; font-size:22px; color:var(--dark); }
.sec-link { font-size:12px; color:var(--gold); cursor:pointer; text-decoration:none; }
.cats-scroll { display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; padding-bottom:4px; }
.cats-scroll::-webkit-scrollbar { display:none; }
.cat-chip { flex-shrink:0; display:flex; flex-direction:column; align-items:center; gap:6px; padding:12px 20px; border-radius:16px; border:1px solid rgba(232,137,26,.18); background:#fff; cursor:pointer; transition:all .25s; min-width:78px; }
.cat-chip:hover { border-color:var(--gold); transform:translateY(-3px); box-shadow:0 8px 20px rgba(232,137,26,.12); }
.cat-chip.on { background:var(--gold); border-color:var(--gold); transform:translateY(-3px); box-shadow:0 8px 20px rgba(232,137,26,.3); }
.cc-icon { font-size:22px; } .cc-label { font-size:11px; color:var(--muted); font-weight:500; }
.cat-chip.on .cc-label { color:#fff; }

/* ── Items Grid ──────────────────────────────────────────────────────────────── */
.items-section { padding:20px 24px 120px; }
@media(max-width:600px) { .items-section { padding:16px 16px 120px; } }
.items-grid { display:grid; /* col-rule-removed */ gap:16px; }
@media(max-width:1000px) { .items-grid { /* col-rule-removed */ } }
@media(max-width:600px) { .items-grid { /* col-rule-removed */ gap:12px; } }

.icard { background:#fff; border-radius:18px; overflow:hidden; border:1px solid rgba(232,137,26,.1); cursor:pointer; transition:all .32s; position:relative; }
.icard:hover { transform:translateY(-4px); box-shadow:0 14px 38px rgba(232,137,26,.14); border-color:rgba(232,137,26,.28); }
@media(max-width:600px) { .icard { display:flex; flex-direction:column; border-radius:14px; } }

.icard-img { height:160px; background:var(--gold-pale); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; flex-shrink:0; }
@media(max-width:600px) { .icard-img { width:104px; height:auto; min-height:104px; } }
.ic-bg { position:absolute; width:140px; height:140px; border-radius:50%; background:rgba(245,166,35,.13); transition:transform .4s; }
.icard:hover .ic-bg { transform:scale(1.3); }
.ic-em { font-size:68px; position:relative; z-index:1; transition:transform .4s; filter:drop-shadow(0 5px 14px rgba(0,0,0,.12)); user-select:none; }
@media(max-width:600px) { .ic-em { font-size:48px; } }
.icard:hover .ic-em { transform:scale(1.1) rotate(-5deg); }
.ic-grad { position:absolute; bottom:0; left:0; right:0; height:40px; background:linear-gradient(to top,rgba(255,253,247,.85),transparent); }
@media(max-width:600px) { .ic-grad { display:none; } }
.ic-badge { position:absolute; top:10px; left:10px; padding:3px 8px; border-radius:20px; font-size:9px; font-weight:600; letter-spacing:.3px; text-transform:uppercase; }
.bh { background:#FEF3E2; color:#A0530A; }
.bv { background:#EAF3DE; color:#2D5A27; }
.bn { background:#E6F1FB; color:#185FA5; }
.by { background:#F2E8FF; color:#6B3A9F; }

.icard-body { padding:14px; flex:1; min-width:0; }
@media(max-width:600px) { .icard-body { padding:10px 12px; display:flex; flex-direction:column; justify-content:center; } }
.ic-name { font-family:'Playfair Display',serif; font-size:14px; color:var(--dark); line-height:1.3; margin-bottom:5px; }
.ic-desc { font-size:11px; color:var(--muted); line-height:1.55; margin-bottom:12px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
@media(max-width:600px) { .ic-desc { -webkit-line-clamp:1; margin-bottom:8px; } }
.ic-foot { display:flex; align-items:center; justify-content:space-between; }
.ic-price { font-size:17px; font-weight:500; color:var(--gold-d); }

.add-btn { width:34px; height:34px; border-radius:50%; background:var(--gold); border:none; color:#fff; font-size:19px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:transform .15s,background .2s; box-shadow:0 4px 12px rgba(232,137,26,.28); flex-shrink:0; }
.add-btn:hover { background:var(--gold-d); transform:scale(1.1); }
.add-btn:active { transform:scale(.9); }
.add-btn.added { background:var(--green); }

/* ── Float Cart ──────────────────────────────────────────────────────────────── */
.cart-float {
  position:fixed; bottom:24px; left:50%; transform:translateX(-50%) translateY(100px);
  background:var(--dark); color:#fff; border-radius:30px; padding:12px 18px 12px 14px;
  display:flex; align-items:center; gap:20px; z-index:150; min-width:280px;
  justify-content:space-between; box-shadow:0 12px 40px rgba(26,18,8,.35);
  opacity:0; transition:all .45s cubic-bezier(.34,1.56,.64,1); pointer-events:none;
}
.cart-float.show { opacity:1; transform:translateX(-50%) translateY(0); pointer-events:all; }
.cf-left { display:flex; align-items:center; gap:12px; }
.cf-icon { width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:16px; }
.cf-count { font-size:10px; color:rgba(255,255,255,.5); display:block; }
.cf-total { font-size:16px; font-weight:500; }
.cf-btn { background:linear-gradient(135deg,var(--gold-l),var(--gold-d)); color:#fff; border:none; border-radius:22px; padding:10px 20px; font-size:12px; font-weight:500; cursor:pointer; white-space:nowrap; box-shadow:0 4px 14px rgba(232,137,26,.4); transition:transform .2s; }
.cf-btn:hover { transform:scale(1.04); }

/* ── Toast ───────────────────────────────────────────────────────────────────── */
.g-toast {
  position:fixed; top:72px; right:20px; border-radius:14px; padding:10px 16px;
  font-size:12px; z-index:500; transform:translateY(-16px); opacity:0;
  transition:all .3s; pointer-events:none; display:flex; align-items:center; gap:8px;
  max-width:320px; font-family:'DM Sans',sans-serif;
}
.g-toast.show { transform:translateY(0); opacity:1; }
.g-toast-success { background:#1A1208; color:#fff; }
.g-toast-error { background:#6B1818; color:#fff; }
.g-toast-info { background:#185FA5; color:#fff; }
.g-toast-warn { background:#8B4500; color:#fff; }

/* ── Cart Page ───────────────────────────────────────────────────────────────── */
.page-wrap { padding-top:var(--nav-h); min-height:100vh; }
.cart-page { padding:32px 24px 80px; max-width:1100px; margin:0 auto; }
@media(max-width:600px) { .cart-page { padding:24px 16px 80px; } }
.cart-page-grid { display:grid; grid-template-columns:1fr 380px; gap:24px; align-items:start; }
@media(max-width:860px) { .cart-page-grid { grid-template-columns:1fr; } }

.cart-items-panel, .cart-summary-panel { background:#fff; border-radius:20px; padding:24px; border:1px solid rgba(232,137,26,.1); }
.panel-title { font-family:'Playfair Display',serif; font-size:20px; color:var(--dark); margin-bottom:20px; }

.cart-item { display:flex; align-items:center; gap:14px; padding:14px 0; border-bottom:1px solid rgba(232,137,26,.08); }
.cart-item:last-child { border-bottom:none; }
.ci-emoji { font-size:40px; flex-shrink:0; width:52px; height:52px; background:var(--gold-pale); border-radius:12px; display:flex; align-items:center; justify-content:center; }
.ci-info { flex:1; min-width:0; }
.ci-name { font-size:14px; font-weight:500; color:var(--dark); margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.ci-price { font-size:13px; color:var(--muted); }
.ci-qty { display:flex; align-items:center; gap:8px; flex-shrink:0; }
.qty-btn { width:28px; height:28px; border-radius:50%; border:1.5px solid rgba(232,137,26,.3); background:#fff; color:var(--gold-d); font-size:16px; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .2s; }
.qty-btn:hover { background:var(--gold); border-color:var(--gold); color:#fff; }
.qty-val { font-size:14px; font-weight:600; color:var(--dark); min-width:24px; text-align:center; }
.ci-subtotal { font-size:14px; font-weight:600; color:var(--gold-d); min-width:56px; text-align:right; flex-shrink:0; }

.cart-empty { text-align:center; padding:60px 20px; }
.cart-empty-icon { font-size:64px; margin-bottom:16px; }
.cart-empty h3 { font-family:'Playfair Display',serif; font-size:22px; margin-bottom:8px; }
.cart-empty p { color:var(--muted); font-size:14px; margin-bottom:24px; }
.btn-primary { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,var(--gold-l),var(--gold-d)); color:#fff; border:none; border-radius:26px; padding:12px 28px; font-size:14px; font-weight:500; cursor:pointer; text-decoration:none; transition:transform .2s,box-shadow .2s; }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(232,137,26,.35); }

/* Address Form */
.address-section { margin-top:24px; }
.form-section-title { font-size:14px; font-weight:600; color:var(--dark); margin-bottom:14px; display:flex; align-items:center; gap:8px; }
.saved-addresses { display:flex; flex-direction:column; gap:10px; margin-bottom:16px; }
.saved-addr-card { border:1.5px solid rgba(232,137,26,.2); border-radius:12px; padding:12px 14px; cursor:pointer; transition:all .2s; display:flex; align-items:center; gap:12px; }
.saved-addr-card:hover, .saved-addr-card.selected { border-color:var(--gold); background:var(--gold-pale); }
.sa-radio { width:16px; height:16px; border-radius:50%; border:2px solid var(--gold); flex-shrink:0; display:flex; align-items:center; justify-content:center; }
.saved-addr-card.selected .sa-radio::after { content:''; width:8px; height:8px; border-radius:50%; background:var(--gold); display:block; }
.sa-info { flex:1; }
.sa-label { font-size:12px; font-weight:600; color:var(--gold-d); margin-bottom:2px; }
.sa-text { font-size:12px; color:var(--muted); line-height:1.4; }

.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
@media(max-width:500px) { .form-grid { grid-template-columns:1fr; } }
.form-group { display:flex; flex-direction:column; gap:5px; }
.form-group.full { grid-column:1/-1; }
.form-label { font-size:12px; font-weight:500; color:var(--text); }
.form-input { padding:10px 12px; border:1.5px solid rgba(232,137,26,.2); border-radius:10px; font-size:13px; font-family:'DM Sans',sans-serif; color:var(--dark); background:#fff; outline:none; transition:border-color .2s; }
.form-input:focus { border-color:var(--gold); }
.form-input::placeholder { color:#ccc; }

/* Order Summary */
.order-summary { margin-top:0; }
.summary-row { display:flex; justify-content:space-between; align-items:center; padding:8px 0; font-size:13px; color:var(--text); }
.summary-row.total { font-size:16px; font-weight:600; color:var(--dark); border-top:1.5px solid rgba(232,137,26,.15); padding-top:14px; margin-top:6px; }
.summary-row .free { color:var(--green); font-weight:500; }
.free-delivery-badge { background:#EAF3DE; color:var(--green); border-radius:20px; padding:4px 12px; font-size:11px; font-weight:600; margin:8px 0; text-align:center; }

.payment-method { margin-top:20px; }
.pm-option { display:flex; align-items:center; gap:12px; padding:14px; border:1.5px solid var(--gold); border-radius:12px; background:var(--gold-pale); cursor:pointer; }
.pm-radio { width:18px; height:18px; border-radius:50%; border:2px solid var(--gold); display:flex; align-items:center; justify-content:center; }
.pm-radio::after { content:''; width:10px; height:10px; border-radius:50%; background:var(--gold); display:block; }
.pm-label { flex:1; }
.pm-label strong { font-size:13px; color:var(--dark); display:block; }
.pm-label span { font-size:11px; color:var(--muted); }

.place-order-btn { width:100%; padding:16px; background:linear-gradient(135deg,var(--gold-l),var(--gold-d)); color:#fff; border:none; border-radius:16px; font-size:15px; font-weight:600; cursor:pointer; margin-top:16px; font-family:'DM Sans',sans-serif; transition:transform .2s,box-shadow .2s; }
.place-order-btn:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(232,137,26,.4); }
.place-order-btn:disabled { opacity:.6; cursor:not-allowed; transform:none; }

/* ── Orders Page ─────────────────────────────────────────────────────────────── */
.orders-page { padding:32px 24px 80px; max-width:800px; margin:0 auto; }
@media(max-width:600px) { .orders-page { padding:24px 16px 80px; } }

.page-hero { background:linear-gradient(135deg,#110800,#3D2000); border-radius:20px; padding:32px; color:#fff; margin-bottom:28px; }
.page-hero h1 { font-family:'Playfair Display',serif; font-size:28px; margin-bottom:8px; }
.page-hero p { font-size:13px; color:rgba(255,255,255,.6); }

.sign-in-prompt { text-align:center; padding:60px 20px; background:#fff; border-radius:20px; border:1px solid rgba(232,137,26,.1); }
.sign-in-prompt h3 { font-family:'Playfair Display',serif; font-size:22px; margin:16px 0 8px; }
.sign-in-prompt p { color:var(--muted); font-size:14px; margin-bottom:24px; }
.btn-google { display:inline-flex; align-items:center; gap:10px; background:#fff; border:1.5px solid #e0e0e0; border-radius:26px; padding:12px 24px; font-size:14px; font-weight:500; cursor:pointer; transition:all .2s; box-shadow:0 2px 12px rgba(0,0,0,.08); }
.btn-google:hover { box-shadow:0 4px 20px rgba(0,0,0,.12); transform:translateY(-1px); }

.order-card { background:#fff; border-radius:16px; border:1px solid rgba(232,137,26,.1); padding:20px; margin-bottom:14px; transition:box-shadow .2s; }
.order-card:hover { box-shadow:0 8px 28px rgba(232,137,26,.1); }
.order-card-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; flex-wrap:wrap; gap:8px; }
.order-id { font-size:12px; color:var(--muted); }
.order-date { font-size:12px; color:var(--muted); }
.order-status { padding:4px 12px; border-radius:20px; font-size:11px; font-weight:600; }
.status-placed { background:#FEF3E2; color:#A0530A; }
.status-confirmed { background:#E6F1FB; color:#185FA5; }
.status-preparing { background:#FFF3E0; color:#E65100; }
.status-delivered { background:#EAF3DE; color:var(--green); }
.status-cancelled { background:#FFEBEE; color:#c0392b; }
.order-items-list { font-size:13px; color:var(--text); margin-bottom:12px; }
.order-items-list li { padding:4px 0; list-style:none; display:flex; justify-content:space-between; }
.order-footer { display:flex; align-items:center; justify-content:space-between; padding-top:12px; border-top:1px solid rgba(232,137,26,.08); flex-wrap:wrap; gap:8px; }
.order-total { font-size:15px; font-weight:600; color:var(--dark); }
.order-address { font-size:11px; color:var(--muted); flex:1; margin:0 12px; }
.reorder-btn { background:var(--gold-pale); color:var(--gold-d); border:1px solid rgba(232,137,26,.3); border-radius:20px; padding:6px 16px; font-size:12px; font-weight:500; cursor:pointer; font-family:'DM Sans',sans-serif; transition:all .2s; }
.reorder-btn:hover { background:var(--gold); color:#fff; }

/* ── About Page ──────────────────────────────────────────────────────────────── */
.about-hero { background:linear-gradient(135deg,#110800 0%,#3D2000 50%,#7A3D0D 100%); padding:80px 24px; text-align:center; color:#fff; }
.about-hero-emoji { font-size:72px; margin-bottom:20px; animation:foodFloat 4s ease-in-out infinite; }
.about-hero h1 { font-family:'Playfair Display',serif; font-size:42px; margin-bottom:12px; }
.about-hero h1 em { font-style:italic; color:var(--gold-l); }
.about-hero p { font-size:16px; color:rgba(255,255,255,.7); max-width:500px; margin:0 auto; line-height:1.7; }
@media(max-width:600px) { .about-hero h1 { font-size:30px; } .about-hero { padding:60px 20px; } }

.about-body { max-width:900px; margin:0 auto; padding:60px 24px; }
@media(max-width:600px) { .about-body { padding:40px 16px; } }

.about-section { margin-bottom:60px; }
.about-section h2 { font-family:'Playfair Display',serif; font-size:28px; color:var(--dark); margin-bottom:16px; }
.about-section h2 em { color:var(--gold); font-style:italic; }
.about-section p { font-size:15px; color:var(--text); line-height:1.8; margin-bottom:14px; }

.about-values { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:24px; }
@media(max-width:700px) { .about-values { grid-template-columns:1fr; } }
.value-card { background:#fff; border-radius:20px; padding:28px 20px; text-align:center; border:1px solid rgba(232,137,26,.1); transition:transform .3s,box-shadow .3s; }
.value-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.value-icon { font-size:48px; margin-bottom:14px; }
.value-title { font-family:'Playfair Display',serif; font-size:18px; color:var(--dark); margin-bottom:8px; }
.value-desc { font-size:13px; color:var(--muted); line-height:1.6; }

.team-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:24px; }
@media(max-width:600px) { .team-grid { grid-template-columns:1fr; } }
.team-card { background:#fff; border-radius:20px; padding:28px; border:1px solid rgba(232,137,26,.1); display:flex; align-items:center; gap:20px; transition:transform .3s; }
.team-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.team-avatar { width:64px; height:64px; border-radius:50%; background:linear-gradient(135deg,var(--gold-l),var(--gold-d)); display:flex; align-items:center; justify-content:center; font-size:28px; flex-shrink:0; }
.team-name { font-family:'Playfair Display',serif; font-size:18px; color:var(--dark); margin-bottom:4px; }
.team-role { font-size:12px; color:var(--gold-d); font-weight:500; margin-bottom:6px; }
.team-desc { font-size:12px; color:var(--muted); line-height:1.5; }

.stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:24px; }
@media(max-width:700px) { .stats-row { grid-template-columns:repeat(2,1fr); } }
.stat-card { background:linear-gradient(135deg,#110800,#3D2000); border-radius:16px; padding:24px; text-align:center; color:#fff; }
.stat-num { font-family:'Playfair Display',serif; font-size:36px; color:var(--gold-l); margin-bottom:4px; }
.stat-label { font-size:12px; color:rgba(255,255,255,.6); }

/* ── Contact Page ────────────────────────────────────────────────────────────── */
.contact-hero { background:linear-gradient(135deg,#071207 0%,#1A3A1A 50%,#2D5A27 100%); padding:80px 24px; text-align:center; color:#fff; }
.contact-hero h1 { font-family:'Playfair Display',serif; font-size:42px; margin-bottom:12px; }
.contact-hero h1 em { font-style:italic; color:var(--gold-l); }
.contact-hero p { font-size:16px; color:rgba(255,255,255,.7); }
@media(max-width:600px) { .contact-hero h1 { font-size:30px; } .contact-hero { padding:60px 20px; } }

.contact-body { max-width:900px; margin:0 auto; padding:60px 24px; }
@media(max-width:600px) { .contact-body { padding:40px 16px; } }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:32px; }
@media(max-width:700px) { .contact-grid { grid-template-columns:1fr; } }

.contact-info { display:flex; flex-direction:column; gap:16px; }
.contact-card { background:#fff; border-radius:18px; padding:22px; border:1px solid rgba(232,137,26,.1); display:flex; align-items:flex-start; gap:16px; transition:transform .2s; }
.contact-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }
.cc-icon-wrap { width:44px; height:44px; border-radius:12px; background:var(--gold-pale); display:flex; align-items:center; justify-content:center; font-size:22px; flex-shrink:0; }
.cc-title { font-size:14px; font-weight:600; color:var(--dark); margin-bottom:4px; }
.cc-text { font-size:13px; color:var(--muted); line-height:1.5; }
.cc-link { color:var(--gold); text-decoration:none; font-weight:500; }
.cc-link:hover { text-decoration:underline; }

.contact-form-card { background:#fff; border-radius:20px; padding:28px; border:1px solid rgba(232,137,26,.1); }
.contact-form-card h3 { font-family:'Playfair Display',serif; font-size:22px; color:var(--dark); margin-bottom:20px; }
.contact-form { display:flex; flex-direction:column; gap:14px; }
.contact-form .form-input { width:100%; }
.contact-textarea { padding:10px 12px; border:1.5px solid rgba(232,137,26,.2); border-radius:10px; font-size:13px; font-family:'DM Sans',sans-serif; color:var(--dark); background:#fff; outline:none; transition:border-color .2s; resize:vertical; min-height:110px; }
.contact-textarea:focus { border-color:var(--gold); }
.whatsapp-cta { background:linear-gradient(135deg,#1A6A2A,#2D5A27); border-radius:16px; padding:24px; color:#fff; text-align:center; margin-top:20px; }
.whatsapp-cta h3 { font-family:'Playfair Display',serif; font-size:20px; margin-bottom:8px; }
.whatsapp-cta p { font-size:13px; color:rgba(255,255,255,.7); margin-bottom:16px; }
.btn-whatsapp { display:inline-flex; align-items:center; gap:10px; background:#25D366; color:#fff; border:none; border-radius:26px; padding:12px 28px; font-size:14px; font-weight:600; cursor:pointer; text-decoration:none; transition:transform .2s,box-shadow .2s; font-family:'DM Sans',sans-serif; }
.btn-whatsapp:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(37,211,102,.4); }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.site-footer { background:var(--dark); color:#fff; padding:40px 24px 24px; margin-top:60px; }
.footer-inner { max-width:1100px; margin:0 auto; }
.footer-brand { display:flex; align-items:center; gap:14px; margin-bottom:24px; }
.footer-logo-img { width:44px; height:44px; object-fit:contain; border-radius:10px; background:rgba(255,255,255,.08); padding:4px; }
.footer-brand-name { font-family:'Playfair Display',serif; font-size:20px; }
.footer-brand-sub { font-size:12px; color:rgba(255,255,255,.5); }
.footer-links { display:flex; flex-wrap:wrap; gap:8px 20px; margin-bottom:24px; }
.footer-links a { font-size:13px; color:rgba(255,255,255,.6); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--gold-l); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:16px; }
.footer-bottom p { font-size:12px; color:rgba(255,255,255,.4); line-height:1.8; }

/* ── Order Confirmed Modal ────────────────────────────────────────────────────── */
.modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,.6); z-index:600; display:flex; align-items:center; justify-content:center; backdrop-filter:blur(4px); }
.modal-overlay.hidden { display:none; }
.modal-box { background:#fff; border-radius:24px; padding:40px 32px; max-width:420px; width:90%; text-align:center; animation:sUp .4s ease; }
.modal-icon { font-size:72px; margin-bottom:20px; }
.modal-title { font-family:'Playfair Display',serif; font-size:26px; color:var(--dark); margin-bottom:10px; }
.modal-sub { font-size:14px; color:var(--muted); line-height:1.6; margin-bottom:24px; }
.modal-order-id { background:var(--gold-pale); border-radius:12px; padding:12px 20px; font-size:13px; color:var(--gold-d); font-weight:600; margin-bottom:24px; }
.modal-actions { display:flex; gap:12px; justify-content:center; }

/* ── Animations ──────────────────────────────────────────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
.fu { animation:fadeUp .45s ease both; }

/* ── Page Padding Top ─────────────────────────────────────────────────────────── */
.pt-nav { padding-top:var(--nav-h); }
/* Fonts */
body {
  font-family: 'Poppins', sans-serif;
}

.cart-dot {
  font-family: 'Barlow', sans-serif;
}

/* Header */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.nav-header.scrolled {
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-wrap img {
  width: 36px;
}

.logo-text span {
  font-weight: 600;
}

.logo-text small {
  font-size: 10px;
  color: #888;
}

/* Nav Links */
.nav-center {
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.nav-link.active,
.nav-link:hover {
  color: #ff7a00;
}

/* Cart */
.cart-btn {
  position: relative;
  font-size: 20px;
  text-decoration: none;
}

.cart-dot {
  position: absolute;
  top: -6px;
  right: -10px;
  background: red;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}




/* Mobile */
@media (max-width: 768px) {
  .nav-center {
    display: none;
  }
}

/* ─── 2026 Redesign Overrides ─────────────────────────────────────────────── */
:root{
  --bg:#fff8ef;
  --panel:rgba(255,255,255,.82);
  --panel-solid:#ffffff;
  --ink:#1d160d;
  --ink-soft:#4b3a26;
  --muted-2:#7a6850;
  --gold:#c97a12;
  --gold-2:#f3a53a;
  --gold-3:#8f4d06;
  --line:rgba(26,18,8,.10);
  --line-2:rgba(201,122,18,.18);
  --shadow-lg:0 24px 60px rgba(26,18,8,.12);
  --shadow-md:0 14px 34px rgba(26,18,8,.10);
  --radius-xl:28px;
  --radius-lg:22px;
  --nav-h:76px;
}

html{scroll-behavior:smooth}
body{
  font-family:'Poppins',sans-serif !important;
  background:
    radial-gradient(circle at top left, rgba(243,165,58,.14), transparent 24%),
    radial-gradient(circle at top right, rgba(201,122,18,.12), transparent 22%),
    linear-gradient(180deg,#fffdf8 0%,#fff5e7 100%) !important;
  color:var(--ink);
  overflow-x:hidden;
}
h1,h2,h3,h4,.section-title,.sec-title,.panel-title,.brand-name,.footer-brand-name,.hero-title,.about-hero h1,.page-hero h1{
  font-family:'Playfair Display',serif;
  letter-spacing:-.02em;
}
button,input,textarea,select{font-family:'Poppins',sans-serif}
a{color:inherit}

/* Header */
nav#mainNav.site-nav{
  position:fixed; inset:0 0 auto 0;
  height:var(--nav-h);
  z-index:300;
  padding:0 clamp(14px, 2vw, 24px);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  background:rgba(255,250,241,.78);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(201,122,18,.12);
  box-shadow:0 8px 28px rgba(26,18,8,.04);
}
nav#mainNav.site-nav.scrolled{
  box-shadow:0 12px 36px rgba(26,18,8,.08);
  background:rgba(255,250,241,.92);
}
.nav-brand{display:flex;align-items:center;gap:12px;min-width:0}
.menu-btn{
  width:44px;height:44px;border:none;border-radius:14px;
  background:linear-gradient(135deg,rgba(201,122,18,.10),rgba(243,165,58,.14));
  color:var(--ink);
  font-size:18px;cursor:pointer;flex:none;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.menu-btn:hover{transform:translateY(-1px);box-shadow:0 10px 20px rgba(201,122,18,.14)}
.brand-link,.footer-brand-link{display:flex;align-items:center;gap:12px;text-decoration:none;min-width:0}
.brand-mark{
  width:48px;height:48px;border-radius:16px;
  background:linear-gradient(135deg,#fff,#fff5e6);
  border:1px solid rgba(201,122,18,.16);
  display:grid;place-items:center;flex:none;
  box-shadow:0 10px 24px rgba(26,18,8,.08);
  overflow:hidden;
}
.brand-mark img{width:100%;height:100%;object-fit:contain;padding:6px}
.footer-logo{
  width:48px;height:48px;border-radius:16px;
  background:transparent;
  display:grid;place-items:center;flex:none;
  overflow:hidden;
}
.footer-logo img{width:100%;height:100%;object-fit:contain;filter:brightness(0) invert(1)}
.brand-copy{display:flex;flex-direction:column;min-width:0}
.brand-name{font-size:17px;font-weight:700;color:var(--ink);line-height:1.1}
.brand-sub{font-size:11px;color:var(--muted-2);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.nav-center{display:flex;align-items:center;gap:6px}
.nav-link{
  font-size:13px;font-weight:600;text-decoration:none;
  color:var(--muted-2);
  padding:10px 14px;border-radius:999px;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.nav-link:hover,.nav-link.active{
  background:rgba(201,122,18,.10);
  color:var(--gold-3);
  transform:translateY(-1px);
}
.nav-actions{display:flex;align-items:center;gap:10px}
.nav-pill{
  display:inline-flex;align-items:center;gap:8px;
  min-height:42px;padding:0 14px;border-radius:999px;
  border:1px solid rgba(201,122,18,.14);
  text-decoration:none;
  background:rgba(255,255,255,.72);
  color:var(--ink-soft);
}
.nav-call{font-size:12px;font-weight:700}
.nav-pill-text{display:inline}
.nav-cart-btn{
  position:relative;
  width:46px;height:46px;border-radius:16px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  border:none;color:#fff;text-decoration:none;
  display:grid;place-items:center;
  box-shadow:0 14px 28px rgba(201,122,18,.28);
  transition:transform .2s ease,box-shadow .2s ease;
}
.nav-cart-btn:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(201,122,18,.32)}
.cart-dot{
  position:absolute;top:-6px;right:-6px;
  min-width:20px;height:20px;padding:0 5px;border-radius:999px;
  background:#1d160d;color:#fff;border:2px solid #fff;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;
}
@media (max-width: 980px){
  .nav-center{display:none}
  .nav-pill-text{display:none}
}
@media (max-width: 560px){
  nav#mainNav.site-nav{padding-inline:12px}
  .brand-sub{display:none}
  .brand-name{font-size:15px}
  .menu-btn,.nav-cart-btn{width:42px;height:42px}
}

/* Sidebar */
#overlay{
  position:fixed;inset:0;background:rgba(22,17,10,.50);
  backdrop-filter:blur(3px);z-index:390;
  opacity:0;pointer-events:none;transition:opacity .25s ease;
}
#overlay.show{opacity:1;pointer-events:auto}
#sidebar{
  position:fixed;top:0;left:0;height:100vh;width:min(320px,88vw);
  z-index:400;
  background:#FFFDF8;
  transform:translateX(-105%);
  transition:transform .38s cubic-bezier(.2,.8,.2,1);
  border-right:1px solid rgba(201,122,18,.10);
  box-shadow:24px 0 60px rgba(26,18,8,.14);
  display:flex;flex-direction:column;
  overflow:hidden;
}
#sidebar.open{transform:translateX(0)}

/* Header */
.sb-header{
  display:flex;align-items:center;gap:12px;
  padding:18px 18px 16px;
  border-bottom:1px solid rgba(201,122,18,.09);
  background:#FFFDF8;
  flex-shrink:0;
}
.sb-close-btn{
  width:34px;height:34px;border-radius:10px;border:none;
  background:rgba(201,122,18,.08);
  color:var(--gold-d,#B5640A);
  cursor:pointer;display:grid;place-items:center;flex-shrink:0;
  transition:background .18s ease,transform .18s ease;
}
.sb-close-btn:hover{background:rgba(201,122,18,.15);transform:rotate(90deg)}
.sb-brand-link{
  display:flex;align-items:center;gap:11px;
  text-decoration:none;flex:1;min-width:0;
}
.sb-logo-wrap{
  width:44px;height:44px;border-radius:13px;flex-shrink:0;
  background:transparent;
  display:grid;place-items:center;overflow:hidden;
  position:relative;
}
.sb-logo-img{width:44px;height:44px;object-fit:contain;border-radius:13px}
.sb-logo-fallback{
  display:none;width:100%;height:100%;
  place-items:center;font-size:20px;
}
.sb-brand-text{display:flex;flex-direction:column;min-width:0}
.sb-brand-name{
  font-family:'Playfair Display',serif;font-size:16px;font-weight:700;
  color:var(--dark,#1A1208);letter-spacing:-.01em;line-height:1.2;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.sb-brand-tagline{font-size:11px;color:var(--gold,#E8891A);font-weight:500;letter-spacing:.04em;margin-top:2px}

/* Auth Zone */
.sb-auth-zone{
  padding:14px 16px;border-bottom:1px solid rgba(201,122,18,.07);flex-shrink:0;
}
.sb-guest-card{
  display:flex;align-items:center;gap:11px;
  padding:13px 14px;border-radius:14px;
  background:linear-gradient(135deg,var(--gold-pale,#FEF3E2),#fff7ed);
  border:1px solid rgba(201,122,18,.18);
  text-decoration:none;cursor:pointer;
  transition:border-color .2s,box-shadow .2s;
}
.sb-guest-card:hover{border-color:rgba(201,122,18,.35);box-shadow:0 4px 16px rgba(201,122,18,.12)}
.sb-guest-avatar{
  width:36px;height:36px;border-radius:50%;
  background:rgba(201,122,18,.12);
  display:grid;place-items:center;flex-shrink:0;color:var(--gold,#E8891A);
}
.sb-guest-text{flex:1;display:flex;flex-direction:column;min-width:0}
.sb-guest-label{font-size:13px;font-weight:700;color:var(--dark,#1A1208)}
.sb-guest-sub{font-size:11px;color:var(--muted,#9B7E55);margin-top:1px}
.sb-guest-arrow{color:var(--gold,#E8891A);flex-shrink:0}
.sb-user-row{display:flex;align-items:center;gap:12px;padding:10px 14px;border-radius:14px;background:rgba(201,122,18,.05)}
.sb-avatar-wrap{width:38px;height:38px;border-radius:50%;overflow:hidden;flex-shrink:0;position:relative;background:rgba(201,122,18,.12);display:grid;place-items:center}
.sb-avatar-placeholder{display:grid;place-items:center;color:var(--gold,#E8891A)}
.user-avatar-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.sb-user-info{display:flex;flex-direction:column;min-width:0}
.sb-user-name{font-size:13px;font-weight:700;color:var(--dark,#1A1208);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sb-user-email{font-size:11px;color:var(--muted,#9B7E55);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

/* Nav Body */
.sb-nav-body{
  flex:1;overflow-y:auto;padding:10px 14px 8px;
  scrollbar-width:thin;scrollbar-color:rgba(201,122,18,.2) transparent;
}
.sb-nav-body::-webkit-scrollbar{width:3px}
.sb-nav-body::-webkit-scrollbar-thumb{background:rgba(201,122,18,.2);border-radius:2px}
.sb-nav-group{margin-bottom:6px;padding-bottom:10px;border-bottom:1px solid rgba(201,122,18,.06)}
.sb-nav-group:last-child{border-bottom:none;margin-bottom:0}
.sb-nav-label{
  font-size:9.5px;font-weight:800;letter-spacing:.16em;
  color:var(--muted,#9B7E55);text-transform:uppercase;
  padding:10px 10px 6px;
}
.sb-nav-item{
  display:flex;align-items:center;gap:11px;
  padding:11px 12px;border-radius:12px;
  text-decoration:none;color:var(--dark,#1A1208);
  font-size:14px;font-weight:500;
  transition:background .18s ease,color .18s ease,transform .18s ease;
  width:100%;border:none;background:transparent;cursor:pointer;text-align:left;
  font-family:'DM Sans',sans-serif;
  position:relative;
}
.sb-nav-item:hover{
  background:rgba(201,122,18,.07);transform:translateX(3px);
}
.sb-nav-icon{
  width:32px;height:32px;border-radius:9px;
  background:rgba(201,122,18,.08);
  display:grid;place-items:center;flex-shrink:0;
  color:var(--gold,#E8891A);
  transition:background .18s ease;
}
.sb-nav-item:hover .sb-nav-icon{background:rgba(201,122,18,.15)}
.sb-nav-icon--green{background:rgba(37,211,102,.1)!important;color:#25d366!important}
.sb-nav-item:hover .sb-nav-icon--green{background:rgba(37,211,102,.2)!important}
.sb-nav-icon--danger{background:rgba(192,57,43,.08)!important;color:#c0392b!important}
.sb-nav-text{flex:1}
.sb-nav-text--danger{color:#c0392b}
.sb-nav-chip{
  font-size:10px;font-weight:700;color:#fff;
  background:var(--gold,#E8891A);
  padding:2px 7px;border-radius:99px;letter-spacing:.02em;
}
.sb-signout-btn{margin-top:0}
.sb-legal-group{
  display:flex;align-items:center;gap:6px;padding:12px 10px 4px;border-bottom:none;
}
.sb-legal-link{
  font-size:11px;color:var(--muted,#9B7E55);text-decoration:none;
  transition:color .18s;
}
.sb-legal-link:hover{color:var(--gold,#E8891A)}
.sb-legal-dot{color:rgba(155,126,85,.4);font-size:11px}

/* Footer Strip */
.sb-footer-strip{
  flex-shrink:0;padding:14px 16px;
  border-top:1px solid rgba(201,122,18,.08);
  background:linear-gradient(135deg,#1d160d 0%,#3a200e 100%);
}
.sb-hours-pill{
  display:flex;align-items:center;gap:10px;margin-bottom:8px;
}
.sb-hours-dot{
  width:8px;height:8px;border-radius:50%;
  background:#4ade80;box-shadow:0 0 8px rgba(74,222,128,.5);
  flex-shrink:0;animation:sbPulse 2s ease-in-out infinite;
}
@keyframes sbPulse{0%,100%{opacity:1}50%{opacity:.5}}
.sb-hours-label{display:block;font-size:10px;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:.12em;font-weight:700;margin-bottom:2px}
.sb-hours-times{display:block;font-size:12px;font-weight:600;color:#fff}
.sb-footer-copy{font-size:11px;color:rgba(255,255,255,.45);margin-top:2px}



/* Footer */
.site-footer{
  margin-top:68px;
  background:linear-gradient(180deg,#1d160d 0%,#120d08 100%);
  color:#fff;
}
.footer-inner{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
  padding:40px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.45fr .8fr .9fr .9fr;
  gap:24px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-brand{display:grid;gap:14px}
.footer-brand-name{display:block;font-size:20px;color:#fff;font-weight:700;line-height:1.1}
.footer-brand-sub{display:block;font-size:12px;color:rgba(255,255,255,.54);margin-top:2px}
.footer-desc{margin:0;color:rgba(255,255,255,.72);font-size:13px;line-height:1.8;max-width:36ch}
.footer-badges{display:flex;flex-wrap:wrap;gap:8px}
.footer-badges span{
  font-size:11px;font-weight:700;color:#fff;
  padding:7px 10px;border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08)
}
.footer-col{display:grid;gap:10px;align-content:start}
.footer-title{
  font-size:12px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:rgba(255,255,255,.55);margin-bottom:4px
}
.footer-col a,.footer-col span{
  color:rgba(255,255,255,.82);
  text-decoration:none;font-size:13px;line-height:1.6
}
.footer-col a:hover{color:var(--gold-2)}
.footer-small{color:rgba(255,255,255,.52)}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding-top:18px;flex-wrap:wrap
}
.footer-bottom p{margin:0;color:rgba(255,255,255,.46);font-size:12px;line-height:1.7}
.footer-top-link{
  text-decoration:none;font-size:12px;font-weight:700;
  color:#fff;padding:10px 14px;border-radius:999px;
  background:rgba(255,255,255,.08);
}
.footer-top-link:hover{background:rgba(255,255,255,.14)}
@media (max-width: 980px){
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .footer-grid{grid-template-columns:1fr}
  .footer-inner{width:min(1180px, calc(100% - 24px));padding-top:32px}
}

/* General cards / panels */
.page-wrap{padding-top:var(--nav-h)}
.page-hero,
.about-hero,
.hero-panel,
.glow-card,
.content-panel,
.form-card,
.cart-items-panel,
.cart-summary-panel,
.order-card,
.sign-in-prompt,
.value-card,
.team-card,
.stat-card{
  background:var(--panel);
  border:1px solid rgba(201,122,18,.12);
  box-shadow:var(--shadow-md);
  backdrop-filter:blur(10px);
}
.page-hero,
.about-hero,
.hero-panel,
.glow-card,
.content-panel,
.form-card,
.cart-items-panel,
.cart-summary-panel,
.value-card,
.team-card,
.order-card,
.sign-in-prompt{
  border-radius:var(--radius-xl);
}
.section-title,.sec-title,.panel-title,.page-hero h1,.about-section h2,.footer-title{color:var(--ink)}
.section-subtitle,.info-text,.mini-text,.hero-desc,.hero-sub,.section-subtitle,.stat-label,.value-desc,.team-desc,.order-items-list,.order-footer,.footer-desc{color:var(--muted-2)}

/* Homepage */
.slider-wrap{
  margin-top:var(--nav-h);
  padding:24px 24px 0;
}
@media (max-width: 640px){ .slider-wrap{padding:16px 14px 0} }
.slide{
  min-height:560px;
  border-radius:34px;
  overflow:hidden;
  position:relative;
  background:linear-gradient(135deg,#23170b 0%,#3d230b 55%,#67400f 100%);
  box-shadow:var(--shadow-lg);
}
.slide::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255,255,255,.12), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.10), transparent 20%),
    radial-gradient(circle at 65% 75%, rgba(255,255,255,.08), transparent 22%);
  pointer-events:none;
}
.slide-content{max-width:52%}
.slide-tag-pill,.banner-tag,.cat-chip,.ic-badge,.top-pill,.chip,.visual-badge{
  border:1px solid rgba(255,255,255,.16)
}
.slide-tag-pill{
  background:rgba(255,255,255,.10)!important;
  backdrop-filter:blur(10px);
}
.slide-h{font-size:clamp(2.3rem, 4vw, 4.25rem)}
.slide-p{font-size:14px;max-width:32ch;color:rgba(255,255,255,.70)}
.slide-price .sp-num,.bp-num{font-family:'Barlow',sans-serif}
.slide-btn{
  border-radius:999px;
  box-shadow:0 14px 28px rgba(26,18,8,.24);
}
.btn-gold,.btn-green,.btn-red{
  background:linear-gradient(135deg,var(--gold),var(--gold-2)) !important;
}
@media (max-width: 860px){
  .slide{min-height:auto}
  .slide-content{max-width:100%}
}
@media (max-width: 600px){
  .slide{border-radius:28px}
  .slide-h{text-align:center}
  .slide-price{justify-content:center}
}
.banners-section,.cats-section,.items-section{padding-left:24px;padding-right:24px}
@media (max-width:640px){.banners-section,.cats-section,.items-section{padding-left:14px;padding-right:14px}}
.sec-title{font-size:26px}
.sec-link{color:var(--gold-3);font-weight:700}
.items-grid{gap:18px}
.banner,.icard,.cat-chip{border:1px solid rgba(201,122,18,.12);box-shadow:0 10px 24px rgba(26,18,8,.06)}
.banner{border-radius:24px}
.banner-title{font-size:18px}
.banner-sub{font-size:12px}
.cat-chip{padding:14px 18px;border-radius:18px;min-width:84px}
.cat-chip.on{background:linear-gradient(135deg,var(--gold),var(--gold-2));}
.cc-label{color:var(--ink-soft)}
.cat-chip.on .cc-label{color:#fff}
.icard{border-radius:24px;overflow:hidden}
.icard-img{background:linear-gradient(180deg,#fff7ea,#fbe9cb)}
.ic-name{font-size:15px}
.ic-desc{font-size:12px}
.ic-price{font-family:'Barlow',sans-serif;font-size:18px}
.add-btn{
  border-radius:14px;width:40px;height:40px;font-size:22px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  box-shadow:0 8px 20px rgba(201,122,18,.24);
}
.add-btn.added{background:linear-gradient(135deg,#2d5a27,#4d7b3f)}
.cart-float{
  bottom:18px;
  border-radius:24px;
  background:rgba(26,18,8,.96);
  backdrop-filter:blur(14px)
}

/* About page */
.about-hero{
  width:min(1180px, calc(100% - 32px));
  margin:24px auto 0;
  padding:42px 32px;
  background:
    linear-gradient(135deg, rgba(29,22,13,.98), rgba(60,35,12,.96)),
    radial-gradient(circle at 18% 20%, rgba(243,165,58,.20), transparent 25%);
  color:#fff;
  text-align:center;
}
.about-hero-emoji{font-size:74px;margin-bottom:12px;animation:floatUp 5s ease-in-out infinite}
.about-hero h1{font-size:clamp(2.2rem, 4vw, 4rem);margin-bottom:10px;color:#fff}
.about-hero em{color:#f7cc7c;font-style:italic}
.about-hero p{max-width:760px;margin:0 auto;color:rgba(255,255,255,.74);line-height:1.8;font-size:15px}
.about-body{
  width:min(1180px, calc(100% - 32px));
  margin:22px auto 0;
  display:grid;
  gap:22px;
}
.about-section{
  padding:28px;
  border-radius:var(--radius-xl);
  background:var(--panel);
  border:1px solid rgba(201,122,18,.12);
  box-shadow:var(--shadow-md);
}
.about-section h2{
  margin:0 0 16px;
  font-size:clamp(1.5rem, 2vw, 2.1rem);
}
.about-section em{color:var(--gold-3)}
.about-section p{margin:0 0 14px;line-height:1.9;font-size:15px;color:var(--ink-soft)}
.stats-row,.about-values,.team-grid{
  display:grid;gap:14px
}
.stats-row{grid-template-columns:repeat(4,1fr)}
.stat-card{padding:20px;border-radius:22px;text-align:center}
.stat-num{font-size:clamp(1.8rem, 3vw, 2.5rem);font-family:'Barlow',sans-serif;color:var(--gold-3)}
.stat-label{font-size:13px}
.about-values{grid-template-columns:repeat(3,1fr)}
.value-card,.team-card{padding:20px}
.value-icon,.team-avatar{
  width:58px;height:58px;border-radius:18px;display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(201,122,18,.12), rgba(243,165,58,.14));
  font-size:26px;margin-bottom:14px
}
.value-title,.team-name{font-size:18px;font-weight:700;color:var(--ink);margin-bottom:6px}
.value-desc,.team-desc{font-size:13px;line-height:1.75}
.team-grid{grid-template-columns:repeat(2,1fr)}
.team-card{display:flex;gap:16px;align-items:flex-start}
@media (max-width: 900px){
  .stats-row,.about-values,.team-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 680px){
  .about-hero,.about-body{width:min(1180px, calc(100% - 24px))}
  .about-hero,.about-section{padding:22px}
  .stats-row,.about-values,.team-grid{grid-template-columns:1fr}
  .team-card{flex-direction:column}
}

/* Contact page */
.page-wrap{
  position:relative;
  min-height:100vh;
}
.bg-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(56px);
  opacity:.26;
  pointer-events:none;
  z-index:0;
  animation:drift 14s ease-in-out infinite;
}
.orb-1{top:-120px;left:-90px;width:300px;height:300px;background:rgba(243,165,58,.34)}
.orb-2{right:-120px;bottom:-140px;width:360px;height:360px;background:rgba(201,122,18,.24);animation-duration:18s}
.contact-shell{position:relative;z-index:1;width:min(1200px, calc(100% - 32px));margin:0 auto;padding:26px 0 0}
.top-bar{
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:18px 20px;border-radius:26px;
  background:rgba(255,255,255,.74);border:1px solid rgba(201,122,18,.12);
  box-shadow:var(--shadow-md);backdrop-filter:blur(14px)
}
.brand-lockup{display:flex;align-items:center;gap:14px}
.brand-mark{
  width:54px;height:54px;border-radius:18px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#fff;font-size:22px;box-shadow:0 14px 26px rgba(201,122,18,.24)
}
.eyebrow{font-size:11px;font-weight:800;letter-spacing:.18em;text-transform:uppercase;color:var(--gold-3);margin-bottom:5px}
.brand-copy h2{font-family:'Playfair Display',serif;font-size:24px;color:var(--ink);margin:0}
.top-pill,.chip,.visual-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:9px 12px;border-radius:999px;
  background:rgba(201,122,18,.08);color:var(--ink-soft);
  font-size:12px;font-weight:700
}
.pulse-dot,.dot,.mini-dot{width:8px;height:8px;border-radius:50%;background:var(--gold)}
.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:22px;
  margin-top:22px
}
.hero-panel{padding:28px;position:relative;overflow:hidden}
.hero-grid{display:grid;grid-template-columns:auto 1fr;gap:18px 20px;align-items:start}
.hero-icon{
  width:74px;height:74px;border-radius:24px;
  display:grid;place-items:center;font-size:34px;
  background:linear-gradient(135deg, rgba(201,122,18,.12), rgba(243,165,58,.16))
}
.hero-title{font-size:clamp(2rem, 4vw, 3.5rem);line-height:1.02;margin:0 0 12px;color:var(--ink)}
.hero-title em{color:var(--gold-3);font-style:italic}
.hero-desc{font-size:15px;line-height:1.9;margin:0 0 18px;max-width:62ch}
.hero-chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{background:rgba(255,255,255,.78);border:1px solid rgba(201,122,18,.14)}
.hero-stats{grid-column:2;display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.hero-stats .stat-card{background:rgba(255,255,255,.8);padding:18px;text-align:left}
.stat-value{font-size:clamp(1.8rem, 3vw, 2.4rem);font-weight:800;color:var(--gold-3)}
.stat-note{margin-top:8px;font-size:12px;font-weight:700;color:var(--gold-3)}
.hero-visual{display:flex;align-items:center;justify-content:center}
.glow-card{width:100%;padding:24px;position:relative;transform:rotate(-1deg)}
.glow-card::before{
  content:"";position:absolute;inset:0;border-radius:inherit;
  background:
    radial-gradient(circle at top left, rgba(243,165,58,.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(201,122,18,.10), transparent 30%);
  pointer-events:none
}
.visual-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;margin-bottom:18px}
.clock{font-family:'Barlow',sans-serif;font-weight:800;font-size:clamp(2rem, 4vw, 3.2rem);line-height:1;color:var(--ink)}
.clock small{display:block;margin-top:6px;color:var(--muted-2);font-size:11px;font-weight:800;letter-spacing:.16em;text-transform:uppercase}
.mini-list{display:grid;gap:12px;margin-top:18px}
.mini-item{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px;border-radius:18px;
  background:rgba(255,255,255,.8);border:1px solid rgba(201,122,18,.10)
}
.mini-ico{
  width:46px;height:46px;border-radius:16px;display:grid;place-items:center;flex:none;
  background:linear-gradient(135deg, rgba(201,122,18,.12), rgba(243,165,58,.14));
  font-size:20px
}
.mini-title{font-size:14px;font-weight:800;margin:0 0 2px;color:var(--ink)}
.mini-text{margin:0;font-size:13px;line-height:1.65;color:var(--muted-2)}
.content-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  margin-top:22px
}
.content-panel{padding:28px}
.section-head{margin-bottom:18px}
.section-kicker{
  margin:0 0 8px;
  color:var(--gold-3);
  font-size:11px;font-weight:800;letter-spacing:.18em;text-transform:uppercase
}
.section-title{margin:0;font-size:clamp(1.5rem, 2vw, 2.1rem)}
.section-subtitle{margin:10px 0 0;font-size:14px;line-height:1.75}
.info-stack{display:grid;gap:14px}
.info-card{
  display:flex;gap:14px;align-items:flex-start;
  padding:16px;border-radius:18px;
  background:rgba(255,255,255,.82);border:1px solid rgba(201,122,18,.10)
}
.info-ico{
  width:50px;height:50px;border-radius:16px;flex:none;display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(201,122,18,.10), rgba(243,165,58,.14));
  font-size:20px
}
.info-title{font-weight:800;margin:0 0 4px;font-size:14px;color:var(--ink)}
.info-text{margin:0;font-size:13px;line-height:1.7}
.info-link{display:inline-block;margin-top:6px;color:var(--gold-3);font-weight:700;text-decoration:none}
.info-link:hover{text-decoration:underline}
.cta-banner{
  margin-top:16px;
  padding:18px;border-radius:22px;
  background:linear-gradient(135deg, rgba(201,122,18,.10), rgba(243,165,58,.10));
  border:1px solid rgba(201,122,18,.10)
}
.cta-banner h4{margin:0 0 8px;font-size:16px;color:var(--ink)}
.cta-banner p{margin:0 0 14px;font-size:13px;line-height:1.7;color:var(--muted-2)}
.btn-row{display:flex;flex-wrap:wrap;gap:12px}
.btn{
  appearance:none;border:none;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  min-height:48px;padding:0 18px;border-radius:16px;
  font-weight:800;text-decoration:none;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease,opacity .2s ease
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#fff;box-shadow:0 14px 26px rgba(201,122,18,.24)
}
.btn-ghost{background:#fff;color:var(--ink);border:1px solid rgba(201,122,18,.12)}
.btn-whatsapp{background:#16a34a;color:#fff;box-shadow:0 14px 26px rgba(22,163,74,.20)}
.form-card{padding:28px}
.contact-form{display:grid;gap:14px}
.form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.form-group{display:grid;gap:8px}
.form-label{font-size:13px;font-weight:700;color:var(--ink-soft)}
.req{color:#dc2626}
.form-input,.contact-textarea{
  width:100%;
  border:1px solid rgba(26,18,8,.10);
  background:rgba(255,255,255,.9);
  color:var(--ink);
  border-radius:16px;
  padding:14px 15px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease
}
.form-input:focus,.contact-textarea:focus{
  border-color:rgba(201,122,18,.42);
  box-shadow:0 0 0 4px rgba(201,122,18,.10)
}
.contact-textarea{min-height:140px;resize:vertical;line-height:1.7}
.helper-line{
  display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
  margin-top:2px;font-size:12px;color:var(--muted-2)
}
.form-actions{display:grid;gap:12px;margin-top:4px}
.success-box{
  display:none;text-align:center;padding:26px 18px;border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,248,237,.92));
  border:1px solid rgba(22,163,74,.12)
}
.success-emoji{font-size:56px;line-height:1;margin-bottom:12px;animation:pop 700ms ease}
.success-box h3{margin:0 0 8px;font-size:24px}
.success-box p{margin:0;color:var(--muted-2);font-size:14px;line-height:1.7}
.faq-wrap{margin-top:18px;padding-top:18px;border-top:1px solid rgba(26,18,8,.08)}
.faq-list{display:grid;gap:12px}
.faq-item{
  border:1px solid rgba(26,18,8,.08);
  border-radius:18px;background:rgba(255,255,255,.84);overflow:hidden
}
.faq-q{
  width:100%;border:none;background:transparent;cursor:pointer;
  padding:15px 16px;display:flex;align-items:center;justify-content:space-between;gap:12px;
  text-align:left;color:var(--ink);font-weight:800;font-size:14px
}
.faq-q span:last-child{color:var(--gold-3);transition:transform .2s ease}
.faq-a{display:grid;grid-template-rows:0fr;transition:grid-template-rows .25s ease}
.faq-a-inner{overflow:hidden;padding:0 16px;color:var(--muted-2);font-size:13px;line-height:1.75}
.faq-item.open .faq-a{grid-template-rows:1fr}
.faq-item.open .faq-q span:last-child{transform:rotate(180deg)}
.faq-item.open .faq-a-inner{padding-bottom:16px}
.footer-note{margin-top:18px;text-align:center;color:var(--muted-2);font-size:12px;line-height:1.75}
.footer-note strong{color:var(--ink)}
.toast-stack{position:fixed;right:16px;bottom:16px;z-index:500;display:grid;gap:10px}
.g-toast{min-width:min(360px, calc(100vw - 32px));padding:14px 16px;border-radius:16px;color:#fff;box-shadow:0 18px 40px rgba(17,24,39,.18);transform:translateY(16px);opacity:0;display:flex;gap:10px;align-items:flex-start;transition:all .26s ease}
.g-toast.show{transform:translateY(0);opacity:1}
.g-toast.success{background:linear-gradient(135deg,#16a34a,#22c55e)}
.g-toast.error{background:linear-gradient(135deg,#dc2626,#ef4444)}
.g-toast.info{background:linear-gradient(135deg,#0f766e,#14b8a6)}
.toast-dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.95);margin-top:5px;flex:none}
.toast-copy{font-size:13px;line-height:1.5;font-weight:600}
.phone-num,.digit,.clock,.stat-value,.ic-price,.bp-num,.sp-num{font-family:'Barlow',sans-serif}
.fade-up{animation:fadeUp .65s ease both}
.d1{animation-delay:.04s}.d2{animation-delay:.12s}.d3{animation-delay:.20s}.d4{animation-delay:.28s}.d5{animation-delay:.36s}

/* Cart / Orders / Modal */
.cart-page,.orders-page{width:min(1180px, calc(100% - 32px));margin:0 auto;padding:28px 0 0}
.cart-page-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:22px;align-items:start}
.cart-items-panel,.cart-summary-panel{padding:24px}
.cart-summary-panel{position:sticky;top:100px}
.panel-title{font-size:22px;margin-bottom:18px}
.summary-row,.order-footer{display:flex;align-items:center;justify-content:space-between;gap:12px}
.summary-row{padding:10px 0;font-size:14px}
.summary-row.total{padding-top:14px;margin-top:8px;border-top:1px solid rgba(26,18,8,.08);font-weight:800;font-size:17px;color:var(--ink)}
.free-delivery-badge{
  margin-bottom:12px;padding:10px 14px;border-radius:14px;
  background:linear-gradient(135deg, rgba(22,163,74,.10), rgba(22,163,74,.06));
  border:1px solid rgba(22,163,74,.12);color:#166534;font-size:12px;font-weight:700
}
.place-order-btn{
  width:100%;margin-top:18px;border:none;border-radius:18px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#fff;font-size:15px;font-weight:800;padding:16px 18px;
  box-shadow:0 16px 28px rgba(201,122,18,.22);cursor:pointer
}
.payment-method{margin-top:18px;padding-top:18px;border-top:1px solid rgba(26,18,8,.08)}
.pm-option{
  display:flex;gap:12px;align-items:flex-start;
  padding:14px 16px;border-radius:16px;background:rgba(255,255,255,.84);
  border:1px solid rgba(201,122,18,.10)
}
.pm-radio{
  width:18px;height:18px;border-radius:50%;margin-top:2px;
  border:2px solid var(--gold);position:relative;flex:none
}
.pm-radio::after{
  content:'';position:absolute;inset:3px;border-radius:50%;background:var(--gold)
}
.pm-label{display:grid;gap:2px}
.pm-label strong{font-size:14px;color:var(--ink)}
.pm-label span{font-size:12px;color:var(--muted-2)}
.modal-overlay{
  position:fixed;inset:0;z-index:600;background:rgba(18,13,8,.56);
  backdrop-filter:blur(4px);display:grid;place-items:center;padding:16px
}
.modal-overlay.hidden{display:none}
.modal-box{
  width:min(540px, 100%);
  background:var(--panel-solid);border-radius:28px;
  padding:28px;box-shadow:var(--shadow-lg);
  border:1px solid rgba(201,122,18,.12);text-align:center
}
.modal-icon{font-size:68px;margin-bottom:14px}
.modal-title{font-size:28px;margin-bottom:8px;color:var(--ink)}
.modal-sub{font-size:14px;line-height:1.75;color:var(--muted-2);margin-bottom:16px}
.modal-order-id{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;border-radius:999px;background:rgba(201,122,18,.08);
  color:var(--gold-3);font-size:13px;font-weight:800;margin-bottom:20px
}
.modal-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.order-card{
  padding:20px;margin-bottom:14px;border-radius:22px;
  background:var(--panel);border:1px solid rgba(201,122,18,.12);box-shadow:var(--shadow-md)
}
.order-card-header,.page-hero{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.order-status,.pm-label strong,.sa-label,.cc-label,.banner-tag,.top-pill,.nav-call{font-weight:800}
.order-status{
  font-size:11px;padding:7px 10px;border-radius:999px;
  background:rgba(22,163,74,.10);color:#166534
}
.order-items-list{margin:12px 0 0;font-size:13px;line-height:1.8}
.order-footer{margin-top:14px;padding-top:14px;border-top:1px solid rgba(26,18,8,.08);font-size:13px}
.sign-in-prompt{
  text-align:center;padding:38px 24px;
}
.btn-google{
  display:inline-flex;align-items:center;gap:10px;justify-content:center;
  margin-top:16px;border:none;border-radius:18px;padding:14px 18px;
  background:#fff;color:var(--ink);border:1px solid rgba(26,18,8,.10);
  box-shadow:0 12px 24px rgba(26,18,8,.08);font-weight:800;cursor:pointer
}
.btn-google:hover{transform:translateY(-1px)}
.page-hero{
  padding:28px;background:
    linear-gradient(135deg, rgba(29,22,13,.98), rgba(60,35,12,.96));
  color:#fff;margin-bottom:22px
}
.page-hero h1{margin:0;font-size:clamp(2rem, 4vw, 3rem);color:#fff}
.page-hero p{margin:8px 0 0;font-size:14px;color:rgba(255,255,255,.72);line-height:1.7;max-width:62ch}
.page-hero .hero-meta{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.hero-meta span{
  padding:8px 11px;border-radius:999px;background:rgba(255,255,255,.08);
  color:#fff;font-size:12px;font-weight:700
}
@media (max-width: 980px){
  .hero,.content-grid,.cart-page-grid{grid-template-columns:1fr}
  .hero-stats{grid-column:auto}
  .cart-summary-panel{position:static}
  .content-grid{margin-top:16px}
}
@media (max-width: 760px){
  .page-wrap{padding-top:var(--nav-h)}
  .contact-shell,.cart-page,.orders-page,.about-body,.about-hero{width:min(1180px, calc(100% - 24px))}
  .top-bar,.hero-panel,.content-panel,.form-card,.cart-items-panel,.cart-summary-panel,.about-section,.order-card,.sign-in-prompt{padding:20px}
  .hero-grid{grid-template-columns:1fr}
  .hero-stats{grid-template-columns:1fr}
  .slide-content{padding:0 18px 22px}
  .slide-h{text-align:center}
}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation:none !important;transition:none !important;scroll-behavior:auto !important}
}

@keyframes fadeUp{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}
@keyframes floatUp{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes drift{0%,100%{transform:translate3d(0,0,0) scale(1)}50%{transform:translate3d(18px,-18px,0) scale(1.06)}}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(22,163,74,.34)}70%{box-shadow:0 0 0 12px rgba(22,163,74,0)}100%{box-shadow:0 0 0 0 rgba(22,163,74,0)}}
@keyframes pop{0%{transform:scale(.82);opacity:0}70%{transform:scale(1.06);opacity:1}100%{transform:scale(1);opacity:1}}
@keyframes toastIn{to{transform:translateY(0);opacity:1}}


/* ─── Auth / Search / Checkout Enhancements ─────────────────────────────── */
.auth-page .page-wrap,
.contact-page .page-wrap,
.about-page .page-wrap,
.orders-page .page-wrap,
.cart-page .page-wrap{padding-top:var(--nav-h)}

/* ── NEW SEARCH BAR ── */
.search-bar-wrap{
  width:min(1180px, calc(100% - 32px));margin:24px auto 0;
  position:relative;z-index:100;
}
.search-bar-inner{
  display:flex;align-items:center;gap:0;
  background:#fff;border:1.5px solid rgba(201,122,18,.18);
  border-radius:18px;box-shadow:0 4px 18px rgba(26,18,8,.07);
  padding:0 16px;height:54px;transition:border-color .2s,box-shadow .2s;
}
.search-bar-inner:focus-within{
  border-color:rgba(201,122,18,.4);
  box-shadow:0 0 0 4px rgba(201,122,18,.10),0 4px 18px rgba(26,18,8,.07);
}
.search-icon-el{font-size:18px;margin-right:10px;opacity:.55;flex-shrink:0}
.search-input-clean{
  flex:1;border:none;outline:none;background:transparent;
  font-size:15px;color:var(--ink);font-family:inherit;
}
.search-input-clean::placeholder{color:var(--muted)}
.search-clear-btn{
  display:none;align-items:center;justify-content:center;
  background:rgba(201,122,18,.10);border:none;border-radius:50%;
  width:24px;height:24px;cursor:pointer;color:var(--gold-3);font-size:12px;
  flex-shrink:0;
}
/* Dropdown */
.search-dropdown{
  position:absolute;top:calc(100% + 8px);left:0;right:0;
  background:#fff;border:1.5px solid rgba(201,122,18,.16);
  border-radius:20px;box-shadow:0 16px 40px rgba(26,18,8,.12);
  overflow:hidden;display:none;flex-direction:column;
}
.search-dropdown.open{display:flex}
.sdrop-chips{
  display:flex;gap:8px;flex-wrap:wrap;padding:14px 16px 10px;
  border-bottom:1px solid rgba(201,122,18,.08);
}
.search-chip{
  border:none;border-radius:999px;padding:7px 13px;cursor:pointer;
  background:rgba(201,122,18,.08);color:var(--gold-3);font-size:12px;font-weight:700;
  white-space:nowrap;
}
.search-chip.active{background:linear-gradient(135deg,var(--gold),var(--gold-2));color:#fff}
.sdrop-label{
  padding:10px 16px 6px;font-size:11px;font-weight:700;
  color:var(--muted);text-transform:uppercase;letter-spacing:.06em;
}
.sdrop-grid{display:flex;flex-direction:column}
.sdrop-item{
  display:flex;align-items:center;gap:12px;padding:10px 16px;cursor:pointer;
  transition:background .15s;
}
.sdrop-item:hover{background:rgba(201,122,18,.05)}
.sdrop-em{font-size:24px;flex-shrink:0;width:32px;text-align:center}
.sdrop-info{flex:1;min-width:0}
.sdrop-name{font-size:14px;font-weight:600;color:var(--ink);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.sdrop-price{font-size:12px;color:var(--gold-3);font-weight:700}
.sdrop-add{
  border:none;border-radius:999px;padding:7px 13px;cursor:pointer;
  background:var(--gold);color:#fff;font-size:12px;font-weight:700;flex-shrink:0;
}
.search-meta{font-size:12px;color:var(--muted-2)}
/* Keep old sug- classes from breaking anything */
.sug-btn{border:none;border-radius:999px;padding:8px 12px;cursor:pointer;background:var(--gold);color:#fff;font-size:12px;font-weight:700;}
.auth-shell{
  width:min(1120px, calc(100% - 32px));margin:0 auto;padding:28px 0 0;
  display:grid;grid-template-columns:1.05fr .95fr;gap:22px;align-items:stretch;
}
.auth-intro,.auth-card{
  background:rgba(255,255,255,.82);border:1px solid rgba(201,122,18,.12);
  border-radius:30px;box-shadow:0 20px 52px rgba(26,18,8,.10);backdrop-filter:blur(10px);
}
.auth-intro{padding:34px;display:grid;align-content:space-between;min-height:540px;background:linear-gradient(135deg,rgba(255,255,255,.94),rgba(255,244,224,.94))}
.auth-kicker{display:inline-flex;align-self:flex-start;padding:8px 12px;border-radius:999px;background:rgba(201,122,18,.10);color:var(--gold-3);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.auth-title{font-family:'Playfair Display',serif;font-size:48px;line-height:1.03;color:var(--ink);margin:16px 0 12px;max-width:10ch}
.auth-copy{font-size:15px;line-height:1.85;color:var(--muted-2);max-width:52ch}
.auth-points{display:grid;gap:12px;margin-top:18px}
.auth-point{display:flex;align-items:flex-start;gap:12px;padding:14px;border-radius:18px;background:rgba(255,255,255,.72);border:1px solid rgba(201,122,18,.10)}
.auth-point-icon{width:34px;height:34px;border-radius:12px;display:grid;place-items:center;background:rgba(201,122,18,.12)}
.auth-point strong{display:block;font-size:14px;color:var(--ink);margin-bottom:2px}
.auth-point span{font-size:12px;color:var(--muted-2);line-height:1.6}
.auth-card{padding:28px;display:grid;align-content:start;gap:18px}
.auth-tabs{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;background:rgba(201,122,18,.06);padding:6px;border-radius:18px}
.auth-tab{border:none;border-radius:14px;padding:12px 10px;background:transparent;color:var(--muted-2);font-size:13px;font-weight:700;cursor:pointer}
.auth-tab.active{background:#fff;color:var(--gold-3);box-shadow:0 8px 22px rgba(26,18,8,.06)}
.auth-form{display:none;gap:14px}
.auth-form.active{display:grid}
.auth-form .form-input{height:54px;border-radius:16px}
.auth-btn{height:54px;border:none;border-radius:16px;background:linear-gradient(135deg,var(--gold),var(--gold-2));color:#fff;font-weight:800;cursor:pointer;box-shadow:0 14px 28px rgba(201,122,18,.24)}
.auth-btn.secondary{background:#1d160d}
.auth-actions{display:grid;gap:10px}
.auth-note{font-size:12px;color:var(--muted-2);line-height:1.7}
.checkout-gate{padding:18px;border-radius:22px;background:rgba(255,248,235,.9);border:1px solid rgba(201,122,18,.14)}
.checkout-gate .btn-primary{width:100%;justify-content:center;margin-top:12px}
.address-empty{padding:18px;border-radius:18px;background:#fff;border:1px dashed rgba(201,122,18,.22);color:var(--muted-2);font-size:13px;line-height:1.7}
.saved-addr-card.selected{border-color:rgba(201,122,18,.35);box-shadow:0 10px 24px rgba(201,122,18,.12)}
.contact-page .site-nav{position:fixed}
.contact-page .page-wrap{padding-top:calc(var(--nav-h) + 10px)}

@media (max-width: 980px){
  .auth-shell{grid-template-columns:1fr}
  .auth-intro{min-height:auto}
}
@media (max-width: 640px){
  .auth-shell{width:min(1120px, calc(100% - 24px))}
  .search-bar-wrap{width:calc(100% - 24px)}
  .auth-intro,.auth-card{padding:22px}
  .auth-title{font-size:36px}
  .auth-tabs{grid-template-columns:1fr}
}


/* ── Header button polish for new layout ───────────────────────────────────── */
.nav-pill,
.nav-search-btn,
.nav-menu-btn {
  cursor: pointer;
}

.sidebar-link.signout-btn {
  width: 100%;
  text-align: left;
  border: none;
  font: inherit;
  cursor: pointer;
}

.sidebar-link.signout-btn:focus {
  outline: none;
}

/* ── Final shared-theme polish ─────────────────────────────────────────────── */
nav#mainNav.site-nav{
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:16px;
  padding-inline:clamp(14px, 2vw, 24px);
}
.nav-brand{justify-self:start}
.nav-center{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:0;
}
.nav-actions{justify-self:end}
.brand-link.nav-logo-only .brand-copy{display:none}
.brand-link.nav-logo-only .brand-mark{width:48px;height:48px}
@media (max-width: 980px){
  nav#mainNav.site-nav{grid-template-columns:auto 1fr auto}
  .nav-center{display:none}
}
@media (max-width: 560px){
  .brand-link.nav-logo-only .brand-mark{width:44px;height:44px;border-radius:14px}
}

/* Better spacing for the home slider and sections */
.slider-wrap{
  width:min(1240px, calc(100% - 32px));
  margin:calc(var(--nav-h) + 20px) auto 0;
  padding:0;
  position:relative;
  overflow:hidden;
}
.slider-track{display:flex;transition:transform .75s cubic-bezier(.77,0,.175,1)}
.slide{
  min-width:100%;
  min-height:560px;
  height:auto;
  position:relative;
  display:grid;
  grid-template-columns:minmax(300px,.95fr) minmax(320px,1.05fr);
  align-items:center;
  gap:24px;
  padding:clamp(20px, 3vw, 34px);
  border-radius:34px;
  overflow:hidden;
}
.slide-visual{
  position:relative;
  right:auto;
  top:auto;
  transform:none;
  width:100%;
  min-height:100%;
  justify-content:center;
}
.slide-content{
  position:relative;
  z-index:2;
  max-width:none;
  padding:0 12px 0 0;
}
.slide-p{max-width:38ch}
.s-arrow.sa-l{left:18px}
.s-arrow.sa-r{right:18px}
.s-dots{bottom:18px}
@media (max-width: 860px){
  .slide{
    min-height:auto;
    grid-template-columns:1fr;
    gap:8px;
  }
  .slide-content{
    padding:0 14px 24px;
    text-align:center;
  }
  .slide-p{max-width:100%}
  .slide-price{justify-content:center}
  .slide-visual{padding-top:18px}
}
@media (max-width: 600px){
  .slider-wrap{width:min(1240px, calc(100% - 24px)); margin-top:calc(var(--nav-h) + 14px)}
  .slide{border-radius:28px;padding:16px}
  .slide-h{font-size:clamp(28px, 8vw, 38px)}
  .slide-p{display:block;font-size:13px}
  .s-arrow{display:none}
}

.banners-section,
.cats-section,
.items-section{
  width:min(1240px, calc(100% - 32px));
  margin-left:auto;
  margin-right:auto;
  padding-left:0;
  padding-right:0;
}
@media (max-width: 640px){
  .banners-section,
  .cats-section,
  .items-section,
  .search-bar-wrap{width:min(1240px, calc(100% - 24px))}
}

/* Slightly softer cards for a cleaner premium feel */
.banner,
.icard,
.cat-chip,
.search-bar-inner,
.search-dropdown,
.info-card,
.menu-card,
.delivery-card,
.hero-left,
.feature-card,
.footer-inner{
  box-shadow:0 12px 30px rgba(26,18,8,.08);
}
.menu-card:hover,
.banner:hover,
.icard:hover{
  transform:translateY(-4px);
}


/* ── Updated shared header, search results and floating cart ───────────────── */
nav#mainNav.site-nav{
  position:fixed;
  inset:0 0 auto 0;
  height:var(--nav-h);
  z-index:300;
  padding:0 clamp(14px, 2vw, 24px);
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:14px;
  background:rgba(255,250,241,.86);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(201,122,18,.12);
  box-shadow:0 8px 28px rgba(26,18,8,.05);
}
nav#mainNav.site-nav.scrolled{
  background:rgba(255,250,241,.96);
  box-shadow:0 12px 36px rgba(26,18,8,.08);
}
.nav-brand{display:flex;align-items:center;justify-self:start;min-width:0}
.brand-link,.footer-brand-link{display:flex;align-items:center;gap:12px;text-decoration:none;min-width:0}
.brand-mark{
  width:48px;height:48px;border-radius:16px;
  background:linear-gradient(135deg,#fff,#fff5e6);
  border:1px solid rgba(201,122,18,.16);
  display:grid;place-items:center;flex:none;
  box-shadow:0 10px 24px rgba(26,18,8,.08);
  overflow:hidden;
}
.brand-mark img{width:100%;height:100%;object-fit:contain;padding:6px}
.footer-logo{
  width:48px;height:48px;border-radius:16px;
  background:transparent;
  display:grid;place-items:center;flex:none;
  overflow:hidden;
}
.footer-logo img{width:100%;height:100%;object-fit:contain;filter:brightness(0) invert(1)}
.brand-link.nav-logo-only .brand-copy{display:none}
.brand-link.nav-logo-only .brand-mark{width:48px;height:48px}
.nav-search{justify-self:center;min-width:0;width:min(640px,100%)}
.header-search-shell{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:46px;
  padding:0 14px;
  border-radius:999px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(201,122,18,.16);
  box-shadow:0 10px 24px rgba(26,18,8,.05);
}
.header-search-icon{
  font-size:16px;
  line-height:1;
  opacity:.85;
  flex:none;
}
.header-search-input{
  width:100%;
  min-width:0;
  height:44px;
  border:none;
  outline:none;
  background:transparent;
  color:var(--ink);
  font-size:14px;
}
.header-search-input::placeholder{color:var(--muted-2)}
.header-search-clear{
  width:28px;
  height:28px;
  border:none;
  border-radius:999px;
  background:rgba(201,122,18,.10);
  color:var(--ink);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:18px;
  line-height:1;
  flex:none;
}
.header-search-results{
  position:absolute;
  top:calc(100% + 10px);
  left:0;
  width:100%;
  background:#fff;
  border-radius:20px;
  box-shadow:0 24px 48px rgba(26,18,8,.14);
  border:1px solid rgba(201,122,18,.12);
  overflow:hidden;
  z-index:320;
  display:none;
  max-height:min(72vh, 560px);
  overflow-y:auto;
}
.header-search-results.open{display:block}
.search-result-list{padding:10px}
.search-result-card{
  width:100%;
  display:flex;
  gap:12px;
  align-items:flex-start;
  text-align:left;
  border:none;
  background:transparent;
  border-radius:16px;
  padding:10px;
  cursor:pointer;
  transition:background .18s ease, transform .18s ease;
}
.search-result-card:hover{
  background:rgba(201,122,18,.06);
  transform:translateY(-1px);
}
.search-result-emoji{
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#fff8ee,#fff3df);
  font-size:28px;
  flex:none;
}
.search-result-copy{min-width:0;flex:1}
.search-result-name{
  font-size:14px;
  font-weight:700;
  color:var(--ink);
  line-height:1.25;
}
.search-result-desc{
  font-size:12px;
  color:var(--muted-2);
  line-height:1.45;
  margin-top:4px;
}
.search-result-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:8px;
  font-size:12px;
  color:var(--gold-3);
  font-weight:700;
}
.search-result-badge{
  padding:4px 8px;
  border-radius:999px;
  background:rgba(201,122,18,.10);
  color:var(--gold-3);
  font-size:11px;
}
.search-empty{
  padding:28px 18px;
  text-align:center;
  display:grid;
  gap:8px;
  justify-items:center;
}
.search-empty-icon{font-size:30px}
.search-empty-title{font-size:16px;font-weight:700;color:var(--ink)}
.search-empty-text{font-size:13px;color:var(--muted-2);max-width:280px}
.search-empty-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 12px 24px rgba(201,122,18,.24);
}
.search-empty-query{
  font-size:12px;
  color:var(--muted-2);
}
.nav-actions{
  justify-self:end;
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-icon-btn{
  width:46px;
  height:46px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,rgba(201,122,18,.10),rgba(243,165,58,.14));
  color:var(--ink);
  font-size:18px;
  cursor:pointer;
  flex:none;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.nav-icon-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 20px rgba(201,122,18,.14);
}
.nav-search-btn{display:none}
.mobile-search-drawer{
  position:fixed;
  top:var(--nav-h);
  left:0;
  right:0;
  z-index:280;
  padding:12px 12px 0;
  pointer-events:none;
  opacity:0;
  transform:translateY(-8px);
  transition:opacity .22s ease, transform .22s ease;
}
.mobile-search-drawer.open{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.mobile-search-inner{
  max-width:740px;
  margin:0 auto;
}
.mobile-search-shell{
  width:100%;
}
.mobile-search-shell .header-search-results{
  position:static;
  display:block;
  box-shadow:none;
  border:none;
  border-radius:0 0 20px 20px;
  margin-top:10px;
  max-height:min(58vh, 420px);
}
.mobile-search-shell .search-result-list{
  padding:0 0 10px;
}
.mobile-search-shell .search-result-card{
  border-radius:14px;
}
.cart-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:500;
  display:none;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  border-radius:18px;
  text-decoration:none;
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  color:#fff;
  box-shadow:0 18px 34px rgba(201,122,18,.28);
}
.cart-float.show{display:flex}
.cart-float-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.16);
  font-size:20px;
  flex:none;
}
.cart-float-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}
.cart-float-title{
  font-size:12px;
  font-weight:700;
  line-height:1.1;
  letter-spacing:.02em;
}
.cart-float-sub{
  font-size:11px;
  opacity:.92;
  line-height:1.2;
}
@media (max-width: 980px){
  .nav-search{display:none}
  .nav-search-btn{display:inline-flex}
  .brand-link.nav-logo-only .brand-mark{width:46px;height:46px}
}
@media (max-width: 560px){
  nav#mainNav.site-nav{padding-inline:12px}
  .brand-link.nav-logo-only .brand-mark{width:42px;height:42px;border-radius:14px}
  .nav-icon-btn{width:42px;height:42px;border-radius:14px}
  .cart-float{
    right:12px;
    bottom:12px;
    padding:10px 12px;
    gap:10px;
  }
  .cart-float-icon{width:38px;height:38px;border-radius:12px}
  .cart-float-sub{font-size:10px}
}

/* ── Brand name always visible in nav ─────────────────────────────────────── */
.brand-link .brand-copy { display:flex !important; }
.brand-link .brand-mark { width:42px !important; height:42px !important; }
.brand-name { font-size:16px !important; font-weight:700; color:var(--ink,#1d160d); line-height:1.1; }
.brand-sub  { font-size:10px; color:var(--muted-2,#7a6850); }
@media(max-width:400px){
  .brand-name { font-size:14px !important; }
  .brand-sub  { display:none !important; }
}

/* ── Nav cart btn always visible ─────────────────────────────────────────── */
.nav-cart-btn { display:grid !important; }

/* ── Cart float — always uses flex layout ─────────────────────────────────── */
#cartFloat.cart-float.show { display:flex !important; }

/* ── Items grid 2-col on mobile ──────────────────────────────────────────── */
@media(max-width:600px) {
  /* items-grid handled by definitive block at EOF */
  .icard { border-radius:16px; }
  .icard-img { height:120px; width:100%; min-height:unset; }
  .ic-em { font-size:48px; }
  .icard-body { padding:8px 10px 10px; }
  .ic-name { font-size:12px; }
  .ic-desc { font-size:11px; margin-bottom:6px; }
  .ic-price { font-size:14px; }
  .add-btn { width:32px !important; height:32px !important; font-size:16px !important; border-radius:10px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BIKA'S KITCHEN v5 — RESPONSIVE POLISH + ORDER FLOW + NOTIFICATION UI
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL TOUCH TARGETS (min 44px everywhere) ──────────────────────── */
button, .btn-primary, .slide-btn, .add-btn, .qty-btn,
.cat-chip, .sdot, .s-arrow, .nav-icon-btn, .icd-qty-btn {
  min-height: 44px;
  min-width: 44px;
}
.add-btn { min-height: 40px; min-width: 40px; border-radius: 12px !important; }
@media (max-width:600px) {
  .add-btn { width: 40px !important; height: 40px !important; font-size: 20px !important; }
  .qty-btn { width: 36px !important; height: 36px !important; }
}

/* ── 2. NAV — full responsive 320px→1440px ──────────────────────────────── */
.brand-link {
  display: flex !important; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0;
}
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #fff7ed, #fff3e0);
  border: 1px solid rgba(201,122,18,.18);
  padding: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(26,18,8,.08);
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex !important; flex-direction: column; }
.brand-name { font-size: 15px; font-weight: 700; color: #1d160d; line-height: 1.15; white-space: nowrap; }
.brand-sub  { font-size: 10px; color: #9b7e55; font-weight: 400; }
@media (max-width: 380px) {
  .brand-name { font-size: 13px; }
  .brand-sub  { display: none; }
  .brand-mark { width: 36px; height: 36px; }
}
.nav-search {
  flex: 1; max-width: 480px; min-width: 0;
  display: flex; align-items: center;
}
@media (max-width: 680px) { .nav-search { display: none; } }
.header-search-shell {
  position: relative; display: flex; align-items: center;
  background: rgba(255,250,241,.9); border: 1.5px solid rgba(201,122,18,.2);
  border-radius: 14px; height: 44px; width: 100%; overflow: visible;
}
.header-search-icon { padding: 0 10px 0 14px; font-size: 14px; flex-shrink: 0; color: #9b7e55; }
.header-search-input {
  flex: 1; border: none; background: none; outline: none;
  font-size: 13px; font-family: 'Poppins', sans-serif; color: #1d160d;
  padding: 0; min-width: 0;
}
.header-search-input::placeholder { color: #c8b8a8; }
.header-search-clear {
  display: none; width: 28px; height: 28px; border: none; background: none;
  color: #9b7e55; cursor: pointer; font-size: 14px; align-items: center; justify-content: center;
  margin-right: 6px; border-radius: 50%; flex-shrink: 0;
}
.header-search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(26,18,8,.16);
  border: 1px solid rgba(201,122,18,.12); z-index: 400;
  max-height: 380px; overflow-y: auto; display: none;
}
.header-search-results.open { display: block; }

.nav-actions {
  display: flex; align-items: center; gap: 8px; flex-shrink: 0;
}
.nav-icon-btn {
  width: 44px; height: 44px; border-radius: 14px; border: none;
  background: rgba(201,122,18,.1); color: #1d160d; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s; flex-shrink: 0;
}
.nav-icon-btn:hover { background: rgba(201,122,18,.18); }
.nav-search-btn { display: none; }
@media (max-width: 680px) { .nav-search-btn { display: flex; } }

/* Mobile search drawer */
.mobile-search-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 299;
  padding: 12px 16px; background: rgba(255,250,241,.97);
  border-bottom: 1px solid rgba(201,122,18,.15);
  backdrop-filter: blur(16px);
  transform: translateY(-110%); transition: transform .3s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 8px 28px rgba(26,18,8,.1);
}
.mobile-search-drawer.open { transform: translateY(0); }
.mobile-search-shell { position: relative; display: flex; align-items: center;
  background: #fff; border: 1.5px solid rgba(201,122,18,.25);
  border-radius: 14px; height: 48px; width: 100%; }
#mobileSearchResults { position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: 16px; box-shadow: 0 16px 48px rgba(26,18,8,.16);
  border: 1px solid rgba(201,122,18,.12); z-index: 400; max-height: 60vh;
  overflow-y: auto; display: none; }
#mobileSearchResults.open { display: block; }

/* ── 3. ITEMS GRID responsive ───────────────────────────────────────────── */
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px)  { .items-grid { /* col-rule-removed */ gap: 14px; } }
@media (max-width: 480px)  { .items-grid { /* col-rule-removed */; gap: 10px !important; } }
@media (max-width: 320px)  { .items-grid { /* col-rule-removed */; } }

.icard { display: flex; flex-direction: column; }
@media (max-width: 480px) {
  .icard { flex-direction: column; border-radius: 16px; }
  .icard-img { height: 110px !important; width: 100%; min-height: unset; }
  .ic-em { font-size: 44px !important; }
  .icard-body { padding: 8px 10px 10px !important; }
  .ic-name { font-size: 12px !important; line-height: 1.3; }
  .ic-desc { font-size: 10px !important; -webkit-line-clamp: 2; margin-bottom: 6px; }
  .ic-price { font-size: 13px !important; }
}
@media (max-width: 360px) {
  .icard-img { height: 90px !important; }
  .ic-em { font-size: 36px !important; }
}

/* ── 4. CART PAGE responsive ────────────────────────────────────────────── */
@media (max-width: 860px) {
  .cart-page-grid { grid-template-columns: 1fr !important; }
  .cart-summary-panel { position: static !important; }
}
@media (max-width: 480px) {
  .cart-item { gap: 10px; padding: 10px 0; }
  .ci-emoji { width: 42px; height: 42px; font-size: 28px; border-radius: 10px; }
  .ci-name { font-size: 13px; }
  .ci-price { font-size: 11px; }
  .qty-btn { width: 28px !important; height: 28px !important; font-size: 15px !important; }
  .ci-subtotal { font-size: 13px; min-width: 44px; }
}

/* ── 5. ORDER STATUS TIMELINE ────────────────────────────────────────────── */
.order-timeline {
  display: flex; align-items: flex-start; gap: 0;
  padding: 16px 0 8px; overflow-x: auto; scrollbar-width: none;
}
.order-timeline::-webkit-scrollbar { display: none; }
.ot-step {
  display: flex; flex-direction: column; align-items: center;
  min-width: 80px; position: relative; flex: 1;
}
.ot-step:not(:last-child)::after {
  content: ''; position: absolute; top: 18px; left: 50%; width: 100%;
  height: 2px; background: rgba(201,122,18,.15);
}
.ot-step.done:not(:last-child)::after { background: #c97a12; }
.ot-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(201,122,18,.1); border: 2px solid rgba(201,122,18,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; z-index: 1; position: relative; flex-shrink: 0;
  transition: all .3s;
}
.ot-step.done .ot-dot {
  background: linear-gradient(135deg, #c97a12, #f3a53a);
  border-color: #c97a12; box-shadow: 0 4px 12px rgba(201,122,18,.3);
}
.ot-step.current .ot-dot {
  background: #fff; border-color: #c97a12; border-width: 3px;
  box-shadow: 0 0 0 4px rgba(201,122,18,.15), 0 4px 12px rgba(201,122,18,.2);
  animation: pulse-ot .8s ease-in-out infinite alternate;
}
@keyframes pulse-ot { from { box-shadow: 0 0 0 3px rgba(201,122,18,.15); } to { box-shadow: 0 0 0 7px rgba(201,122,18,.08); } }
.ot-step.cancelled .ot-dot { background: #fef2f2; border-color: #dc2626; }
.ot-label {
  font-size: 9px; font-weight: 600; color: #9b7e55;
  margin-top: 6px; text-align: center; text-transform: uppercase; letter-spacing: .04em;
  line-height: 1.3; padding: 0 4px; max-width: 80px;
}
.ot-step.done .ot-label, .ot-step.current .ot-label { color: #c97a12; }
.ot-step.cancelled .ot-label { color: #dc2626; }

/* ── 6. ORDER CARDS upgrade ────────────────────────────────────────────── */
.order-card { transition: box-shadow .2s, transform .2s; }
.order-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,122,18,.12); }
.order-status-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; margin-bottom: 12px;
}
.status-out_for_delivery { background: #FFF3E0; color: #E65100; }
.status-preparing { background: #FFF8E1; color: #F57F17; }
.cancel-order-btn {
  padding: 5px 14px; background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.2);
  border-radius: 20px; color: #dc2626; font-size: 11px; font-weight: 600;
  cursor: pointer; font-family: 'Poppins', sans-serif; transition: all .2s;
}
.cancel-order-btn:hover { background: rgba(220,38,38,.15); }

/* ── 7. ORDER SUCCESS SCREEN ─────────────────────────────────────────────── */
.order-success-overlay {
  position: fixed; inset: 0; background: rgba(18,13,8,.7);
  z-index: 800; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.order-success-overlay.open { opacity: 1; pointer-events: all; }
.order-success-box {
  background: #fffdf8; border-radius: 28px; max-width: 420px; width: 100%;
  text-align: center; padding: 36px 28px 28px;
  box-shadow: 0 28px 60px rgba(18,13,8,.25);
  transform: scale(.92); transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.order-success-overlay.open .order-success-box { transform: scale(1); }
.success-tick {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #c97a12, #f3a53a);
  display: flex; align-items: center; justify-content: center;
  font-size: 38px; margin: 0 auto 20px;
  box-shadow: 0 12px 32px rgba(201,122,18,.35);
  animation: pop-in .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop-in { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-title { font-family: 'Playfair Display', serif; font-size: 26px; color: #1d160d; margin-bottom: 8px; }
.success-sub { font-size: 13px; color: #9b7e55; line-height: 1.6; margin-bottom: 20px; }
.success-order-id {
  background: rgba(201,122,18,.1); border: 1px solid rgba(201,122,18,.2);
  border-radius: 12px; padding: 12px 18px; font-size: 13px;
  font-weight: 700; color: #8f4d06; margin-bottom: 24px; letter-spacing: .05em;
}
.success-actions { display: flex; gap: 10px; }
.success-actions a, .success-actions button {
  flex: 1; padding: 13px 16px; border-radius: 14px; font-size: 13px;
  font-weight: 700; text-decoration: none; text-align: center; cursor: pointer;
  font-family: 'Poppins', sans-serif; border: none; transition: opacity .2s;
}
.success-actions a:first-child { background: linear-gradient(135deg,#c97a12,#f3a53a); color: #fff; box-shadow: 0 8px 20px rgba(201,122,18,.3); }
.success-actions a:last-child { background: rgba(26,18,8,.06); color: #1d160d; }
.success-actions a:hover { opacity: .88; }

/* ── 8. FCM NOTIFICATION PERMISSION PROMPT ─────────────────────────────── */
.notif-permission-card {
  background: linear-gradient(135deg, #1d160d, #3a2008);
  border-radius: 20px; padding: 20px; display: flex; align-items: flex-start;
  gap: 16px; margin: 0 0 20px;
  border: 1px solid rgba(255,255,255,.06);
}
.notif-perm-icon { font-size: 32px; flex-shrink: 0; margin-top: 2px; }
.notif-perm-body { flex: 1; }
.notif-perm-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.notif-perm-sub { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; margin-bottom: 12px; }
.notif-perm-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-enable-notif {
  padding: 8px 18px; background: linear-gradient(135deg, #c97a12, #f3a53a);
  border: none; border-radius: 10px; color: #fff; font-size: 12px;
  font-weight: 700; cursor: pointer; font-family: 'Poppins', sans-serif;
  transition: opacity .2s;
}
.btn-enable-notif:hover { opacity: .9; }
.btn-notif-dismiss {
  padding: 8px 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; color: rgba(255,255,255,.55); font-size: 12px;
  cursor: pointer; font-family: 'Poppins', sans-serif;
}

/* ── 9. LOADING STATES ───────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, #f0ebe4 25%, #e8ddd4 50%, #f0ebe4 75%);
  background-size: 200% 100%; border-radius: 8px;
  animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(201,122,18,.08);
}
.skeleton-img  { height: 160px; width: 100%; }
.skeleton-text { height: 14px; margin: 12px 14px 6px; border-radius: 4px; }
.skeleton-text.short { width: 60%; }
.skeleton-text.shorter { width: 40%; }

/* ── 10. EMPTY STATES ───────────────────────────────────────────────────── */
.empty-state-wrap {
  grid-column: 1 / -1; text-align: center; padding: 60px 20px;
}
.empty-state-icon { font-size: 56px; margin-bottom: 16px; }
.empty-state-title {
  font-family: 'Playfair Display', serif; font-size: 24px;
  color: #1d160d; margin-bottom: 8px;
}
.empty-state-sub { font-size: 14px; color: #9b7e55; margin-bottom: 24px; line-height: 1.6; }

/* ── 11. CART FLOAT bar full responsive ────────────────────────────────── */
.cart-float {
  position: fixed; bottom: 20px; left: 50%; z-index: 150;
  transform: translateX(-50%) translateY(120px);
  background: #1d160d; color: #fff; border-radius: 20px;
  padding: 14px 18px 14px 14px;
  display: flex !important; align-items: center; gap: 16px;
  min-width: 260px; max-width: calc(100vw - 32px);
  justify-content: space-between;
  box-shadow: 0 12px 40px rgba(26,18,8,.35), 0 0 0 1px rgba(255,255,255,.05);
  opacity: 0; transition: all .45s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none; text-decoration: none;
}
.cart-float.show {
  opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: all;
}
.cart-float-icon { font-size: 22px; flex-shrink: 0; }
.cart-float-copy { flex: 1; min-width: 0; }
.cart-float-title { font-size: 13px; font-weight: 700; color: #fff; white-space: nowrap; }
.cart-float-sub { font-size: 11px; color: rgba(255,255,255,.55); white-space: nowrap; }
@media (max-width: 360px) {
  .cart-float { padding: 12px 14px; gap: 10px; border-radius: 16px; min-width: 220px; }
  .cart-float-title { font-size: 12px; }
  .cart-float-sub { font-size: 10px; }
}

/* ── 12. AUTH PAGE responsive ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .auth-box, .auth-card { padding: 24px 18px !important; border-radius: 20px !important; }
  .auth-title { font-size: 24px !important; }
  .form-input { height: 48px !important; font-size: 14px !important; }
  .btn-google { width: 100% !important; justify-content: center !important; }
}

/* ── 13. ADMIN DASHBOARD responsive ────────────────────────────────────── */
@media (max-width: 900px) {
  .sidebar { width: 56px !important; }
  .main-content { margin-left: 56px !important; padding: 16px !important; }
  .sb-name, .sb-sub, .sb-item span:not(.sb-item-icon), .sb-badge { display: none !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
  .stat-card { padding: 14px !important; }
  .stat-val { font-size: 22px !important; }
  .table-wrap { border-radius: 14px !important; }
  th, td { padding: 8px 10px !important; font-size: 12px !important; }
  .modal-box { padding: 0 !important; border-radius: 20px !important; }
  .modal-head { padding: 18px 18px 0 !important; }
  .modal-body { padding: 14px 18px 0 !important; }
  .modal-footer { padding: 14px 18px 18px !important; }
}
@media (max-width: 320px) {
  .main-content { margin-left: 0 !important; padding: 12px !important; }
  .sidebar { display: none !important; }
}

/* ── 14. FOOTER responsive ──────────────────────────────────────────────── */
.site-footer .footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 28px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 20px; } }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #f3a53a; }
.footer-col span { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); margin-bottom: 4px; }
.footer-brand-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo { width: 44px; height: 44px; border-radius: 12px; background: transparent !important; padding: 0; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; }
.footer-brand-sub { font-size: 11px; color: rgba(255,255,255,.4); }
.footer-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.6; margin-bottom: 14px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-badges span { font-size: 11px; padding: 4px 10px; background: rgba(255,255,255,.06); border-radius: 20px; color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 18px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.3); line-height: 1.7; }
.footer-bottom a { font-size: 11px; color: rgba(201,122,18,.7); text-decoration: none; }
.footer-bottom a:hover { color: #f3a53a; }
.footer-legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── 15. SEARCH RESULT ITEMS ────────────────────────────────────────────── */
.search-result-list { padding: 8px; }
.search-result-card {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: 12px; cursor: pointer; background: none; border: none;
  width: 100%; text-align: left; transition: background .15s;
}
.search-result-card:hover { background: rgba(201,122,18,.07); }
.search-result-emoji { font-size: 28px; flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(201,122,18,.08); border-radius: 10px; }
.search-result-copy { flex: 1; min-width: 0; }
.search-result-name { font-size: 13px; font-weight: 600; color: #1d160d; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-result-desc { font-size: 11px; color: #9b7e55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 1px; }
.search-result-meta { display: flex; align-items: center; gap: 8px; margin-top: 3px; }
.search-result-meta span:first-child { font-size: 12px; font-weight: 700; color: #c97a12; }
.search-result-badge { font-size: 10px; padding: 2px 7px; background: rgba(201,122,18,.1); color: #8f4d06; border-radius: 20px; font-weight: 600; }
.search-empty { text-align: center; padding: 28px 16px; }
.search-empty-icon { font-size: 36px; margin-bottom: 8px; }
.search-empty-title { font-size: 14px; font-weight: 700; color: #1d160d; margin-bottom: 4px; }
.search-empty-text { font-size: 12px; color: #9b7e55; margin-bottom: 12px; }
.search-empty-link { font-size: 12px; color: #c97a12; text-decoration: none; font-weight: 600; }
.search-chip {
  padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 600;
  background: rgba(201,122,18,.08); border: 1px solid rgba(201,122,18,.15);
  color: #8f4d06; cursor: pointer; transition: all .15s; white-space: nowrap;
}
.search-chip:hover, .search-chip.active { background: #c97a12; color: #fff; border-color: #c97a12; }

/* ── 16. TOAST STACK ─────────────────────────────────────────────────────── */
.toast-stack {
  position: fixed; top: calc(var(--nav-h) + 8px); right: 16px;
  display: flex; flex-direction: column; gap: 6px; z-index: 900;
  max-width: calc(100vw - 32px);
}
.g-toast {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  background: #1d160d; color: #fff; border-radius: 14px;
  font-size: 13px; font-family: 'Poppins', sans-serif;
  box-shadow: 0 8px 24px rgba(26,18,8,.22); pointer-events: none;
  transform: translateX(calc(100% + 24px)); opacity: 0;
  transition: all .28s cubic-bezier(.34,1.56,.64,1);
  max-width: 320px; min-width: 180px;
  position: static !important; top: auto !important; right: auto !important;
}
.g-toast.show { transform: translateX(0); opacity: 1; }
.g-toast.success { background: #1a3a1a; }
.g-toast.error   { background: #5a1a1a; }
.g-toast.info    { background: #1a2a4a; }
.toast-dot { width: 6px; height: 6px; border-radius: 50%; background: #f3a53a; flex-shrink: 0; }
.g-toast.success .toast-dot { background: #5cbf7a; }
.g-toast.error .toast-dot   { background: #f87171; }
.g-toast.info .toast-dot    { background: #60a5fa; }
.toast-copy { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 480px) {
  .toast-stack { left: 16px; right: 16px; }
  .g-toast { max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   v6 FIXES — 4 targeted issues
   ═══════════════════════════════════════════════════════════ */

/* FIX 1 — Slider: remove side margin / corner cut
   The width:min(1240px, calc(100% - 24px)) was clipping corners */
.slider-wrap {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
}
/* Also remove border-radius from individual slides */
.slide {
  border-radius: 0 !important;
}
@media (max-width: 640px) {
  .slider-wrap { padding: 0 !important; }
}

/* FIX 2 — Slider dots: tiny white dots, not big touch squares
   The global touch-target rule was adding min-height/min-width:44px to .sdot */
.sdot {
  min-height: unset !important;
  min-width: unset !important;
  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.35) !important;
  border: none !important;
  padding: 0 !important;
  cursor: pointer;
  transition: all .3s ease;
}
.sdot.on {
  width: 22px !important;
  height: 7px !important;
  border-radius: 4px !important;
  background: #fff !important;
}
/* Invisible larger tap target via pseudo-element (accessibility without visual size) */
.sdot::before {
  content: '';
  position: absolute;
  inset: -12px -8px;
}
.s-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
  align-items: center;
}
.s-dots button { position: relative; }

/* FIX 3 — Card qty +/- inline controls */
.card-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  background: #1d160d;
  border-radius: 12px;
  padding: 3px;
  min-height: unset !important;
}
.card-qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: unset !important;
  min-width: unset !important;
  transition: background .15s;
  flex-shrink: 0;
}
.card-qty-btn:active { background: rgba(255,255,255,.15); }
.card-qty-val {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  min-width: 22px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
@media (max-width: 480px) {
  .card-qty-btn { width: 26px; height: 26px; font-size: 16px; }
  .card-qty-val { font-size: 12px; min-width: 18px; }
  .card-qty-ctrl { border-radius: 10px; padding: 2px; }
}

/* FIX 4 — Search: results dropdown always above everything */
#siteSearchResults,
#mobileSearchResults {
  z-index: 9999 !important;
  border-radius: 16px !important;
  box-shadow: 0 16px 48px rgba(26,18,8,.18) !important;
}
/* Make sure search shell has position relative for dropdown positioning */
.header-search-shell {
  position: relative !important;
}
/* Ensure results display properly when open */
.header-search-results.open {
  display: block !important;
}

/* ═══════════════════════════════════════════════════════════
   v7 FIXES — all 6 UI issues
   ═══════════════════════════════════════════════════════════ */

/* ── FIX 1: Category chips — horizontal layout, no shadow ─────────────────── */
.cat-chip {
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 16px !important;
  min-width: unset !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  white-space: nowrap;
  border: 1.5px solid rgba(201,122,18,.15) !important;
}
.cat-chip.on {
  box-shadow: none !important;
  transform: none !important;
}
.cat-chip:hover {
  box-shadow: none !important;
  transform: none !important;
}
.cc-icon { font-size: 18px !important; line-height: 1; }
.cc-label {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: var(--ink, #1d160d) !important;
  line-height: 1;
}
.cat-chip.on .cc-label { color: #fff !important; }
/* Remove the card-style chip appearance inherited from older CSS */
.cats-scroll { gap: 8px !important; padding: 4px 2px 8px !important; }
@media (max-width: 600px) {
  .cat-chip { padding: 8px 12px !important; gap: 6px !important; }
  .cc-icon { font-size: 16px !important; }
  .cc-label { font-size: 11px !important; }
}

/* ── FIX 2: Cart qty +/- controls reliable everywhere ─────────────────────── */
/* Item card on index.html */
.card-qty-ctrl {
  display: inline-flex !important;
  align-items: center !important;
  background: #1d160d !important;
  border-radius: 12px !important;
  padding: 4px !important;
  gap: 2px !important;
  min-height: unset !important;
  min-width: unset !important;
}
.card-qty-btn {
  width: 30px !important; height: 30px !important;
  min-width: unset !important; min-height: unset !important;
  border: none !important;
  background: rgba(255,255,255,.1) !important;
  color: #fff !important; font-size: 18px !important;
  border-radius: 8px !important; cursor: pointer !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important; line-height: 1 !important;
  flex-shrink: 0 !important;
  transition: background .15s !important;
}
.card-qty-btn:active { background: rgba(255,255,255,.25) !important; }
.card-qty-val {
  min-width: 24px !important; text-align: center !important;
  font-size: 13px !important; font-weight: 800 !important;
  color: #fff !important; font-family: 'Poppins', sans-serif;
}
/* Cart page qty */
.qty-ctrl { display: flex; align-items: center; gap: 4px; }
.qty-btn {
  width: 34px !important; height: 34px !important;
  min-width: unset !important; min-height: unset !important;
  border-radius: 10px !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important;
}
@media (max-width: 480px) {
  .card-qty-btn { width: 28px !important; height: 28px !important; font-size: 16px !important; }
  .card-qty-val { min-width: 20px !important; font-size: 12px !important; }
}

/* ── FIX 3: Footer full-width — no side gaps on any page ─────────────────── */
.site-footer {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
.site-footer .footer-inner {
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding-left: clamp(16px, 3vw, 40px) !important;
  padding-right: clamp(16px, 3vw, 40px) !important;
  box-sizing: border-box !important;
}
.footer-bottom {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ── FIX 4: Search ONLY opens on user action — not on page load ───────────── */
/* Hide results by default; JS only opens on actual input */
#siteSearchResults,
#mobileSearchResults {
  display: none !important;
}
#siteSearchResults.open,
#mobileSearchResults.open {
  display: block !important;
}

/* ── FIX 5 & 6: Grid — 1 col mobile, 3 col desktop, slider padding ──────── */
/* Items grid */
.items-grid {
  display: grid !important;
  gap: 14px !important;
}
/* Default: 3 columns on desktop */
@media (min-width: 901px) {
  .items-grid { /* col-rule-removed */; }
}
/* 2 columns on tablet */
@media (min-width: 541px) and (max-width: 900px) {
  .items-grid { /* col-rule-removed */; gap: 12px !important; }
}
/* 1 column on mobile */
@media (max-width: 540px) {
  .items-grid { /* col-rule-removed */; gap: 10px !important; }
}

/* Mobile 1-col card layout */
@media (max-width: 540px) {
  .icard {
    flex-direction: column !important;
    border-radius: 18px !important;
    overflow: hidden;
    min-height: 100px;
  }
  .icard-img {
    width: 100% !important;
    height: 110px !important;
    min-height: unset !important;
    flex-shrink: 0 !important;
    border-radius: 0 !important;
  }
  .ic-em { font-size: 48px !important; }
  .icard-body {
    flex: 1;
    padding: 12px 14px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
  }
  .ic-name { font-size: 14px !important; margin-bottom: 4px; }
  .ic-desc {
    font-size: 12px !important;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .ic-price { font-size: 15px !important; }
  .add-btn { width: 36px !important; height: 36px !important; font-size: 20px !important; }
}

/* ── FIX 6: Slider inner padding — Foodle-style layout ───────────────────── */
.slider-wrap {
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  overflow: hidden;
  position: relative;
}
.slide {
  border-radius: 0 !important;
  /* Generous padding so content never touches edges */
  padding: clamp(32px, 5vw, 64px) clamp(24px, 6vw, 80px) !important;
  min-height: 420px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 24px !important;
}
.slide-content { padding: 0 !important; }
.slide-h {
  font-size: clamp(28px, 4vw, 52px) !important;
  line-height: 1.1 !important;
  margin-bottom: 14px !important;
}
.slide-p {
  font-size: clamp(13px, 1.2vw, 15px) !important;
  max-width: 380px;
  line-height: 1.65 !important;
  margin-bottom: 20px !important;
  opacity: .85;
}
.slide-price {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  margin-bottom: 22px !important;
}
.sp-num { font-size: clamp(26px, 3vw, 38px) !important; }
.slide-btn {
  display: inline-flex !important;
  padding: 13px 28px !important;
  font-size: 14px !important;
  border-radius: 14px !important;
}
.slide-visual {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
}
/* Food ring visual */
.food-ring-wrap {
  width: clamp(180px, 20vw, 280px) !important;
  height: clamp(180px, 20vw, 280px) !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative;
}
.food-em { font-size: clamp(72px, 8vw, 110px) !important; }
/* Float tags */
.float-tag {
  position: absolute;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.ft1 { top: 12%; left: -8%; }
.ft2 { bottom: 12%; right: -8%; }

/* Mobile slide layout */
@media (max-width: 640px) {
  .slide {
    grid-template-columns: 1fr !important;
    padding: 28px 20px 24px !important;
    min-height: auto !important;
    gap: 8px !important;
    text-align: center;
  }
  .slide-content { order: 2; }
  .slide-visual { order: 1; justify-content: center; }
  .food-ring-wrap {
    width: 140px !important; height: 140px !important;
  }
  .food-em { font-size: 64px !important; }
  .float-tag { display: none !important; }
  .slide-p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .slide-price { justify-content: center; }
  .slide-btn { width: 100%; justify-content: center; }
  .slide-h { font-size: 26px !important; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .slide { padding: 40px 40px !important; min-height: 360px !important; }
  .food-ring-wrap { width: 200px !important; height: 200px !important; }
  .food-em { font-size: 80px !important; }
}

/* ── Slider arrows — properly positioned inside ───────────────────────────── */
.s-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 40px !important; height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.15) !important;
  backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: #fff !important; font-size: 20px !important;
  display: flex !important; align-items: center !important;
  justify-content: center !important; cursor: pointer !important;
  transition: background .2s !important;
  min-height: unset !important; min-width: unset !important;
}
.s-arrow:hover { background: rgba(255,255,255,.28) !important; }
.sa-l { left: 16px !important; }
.sa-r { right: 16px !important; }

/* ── Sections max-width + padding ─────────────────────────────────────────── */
.cats-section,
.items-section,
.search-bar-wrap,
.banners-section {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: clamp(16px, 4vw, 40px) !important;
  padding-right: clamp(16px, 4vw, 40px) !important;
  box-sizing: border-box !important;
}

/* ── Cart page full-width fix ─────────────────────────────────────────────── */
.cart-page, .orders-page {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding-left: clamp(16px, 4vw, 40px) !important;
  padding-right: clamp(16px, 4vw, 40px) !important;
  box-sizing: border-box !important;
}

/* ── Global touch target override — don't affect small visual elements ───── */
.sdot, .s-arrow {
  min-height: unset !important;
  min-width: unset !important;
}

/* ═══════════════════════════════════════════════
   v8 FIXES
   ═══════════════════════════════════════════════ */

/* ── FIX 1: Slider — symmetric padding, equal left+right ──────────────────
   All previous rules had asymmetric or conflicting values.
   Single source of truth here with !important to win all layers. */
.slider-wrap {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;              /* no outer padding — slide has its own */
  margin-top: calc(var(--nav-h, 64px) + 0px) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
/* The track and every slide fill the full wrapper width */
.slider-track {
  display: flex !important;
  width: 100% !important;
  transition: transform .72s cubic-bezier(.77,0,.175,1) !important;
}
.slide {
  min-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  border-radius: 0 !important;        /* no cut corners */
  /* Generous SYMMETRIC inner padding */
  padding: clamp(28px,5vw,60px) clamp(28px,6vw,80px) !important;
  min-height: 420px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 20px !important;
  position: relative !important;
  overflow: hidden !important;
}
/* Mobile: single column, centred */
@media (max-width: 640px) {
  .slide {
    grid-template-columns: 1fr !important;
    padding: 32px 20px 28px !important;   /* equal left=right=20px */
    min-height: auto !important;
    gap: 12px !important;
    text-align: center !important;
  }
  .slide-content { order: 2 !important; padding: 0 !important; text-align: center !important; }
  .slide-visual  { order: 1 !important; justify-content: center !important; }
  .slide-p       { max-width: 100% !important; margin-left: auto !important; margin-right: auto !important; }
  .slide-price   { justify-content: center !important; }
  .slide-btn     { width: 100% !important; justify-content: center !important; box-sizing: border-box !important; }
  .slide-h       { font-size: clamp(26px, 7vw, 34px) !important; text-align: center !important; }
  .float-tag     { display: none !important; }
  .food-ring-wrap { width: 160px !important; height: 160px !important; }
  .food-em { font-size: 72px !important; }
}

/* ── FIX 2: After item detail closes, overlay removed INSTANTLY ─────────────
   pointer-events:none is set immediately so taps pass through */
.icd-overlay {
  pointer-events: none !important;
}
.icd-overlay.open {
  pointer-events: all !important;
}
/* On mobile iOS, body overflow hidden can get stuck — reset aggressively */
body.detail-open { overflow: hidden !important; }

/* ── FIX 3: Items grid — 1 col mobile, 2 col tablet, 3 col desktop ─────────
   Override ALL previous conflicting grid rules */
.items-grid {
  display: grid !important;
  gap: 14px !important;
  grid-template-columns: repeat(3, 1fr) !important; /* desktop default */
}
@media (max-width: 900px) and (min-width: 541px) {
  .items-grid { /* col-rule-removed */; gap: 12px !important; }
}
@media (max-width: 540px) {
  .items-grid { /* col-rule-removed */; gap: 10px !important; }
  /* Mobile 1-col: card goes horizontal */
  .icard {
    flex-direction: column !important;
    border-radius: 18px !important;
  }
  .icard-img {
    width: 120px !important;
    min-width: 120px !important;
    height: 120px !important;
    min-height: unset !important;
    border-radius: 18px 0 0 18px !important;
    flex-shrink: 0 !important;
  }
  .icard-body {
    flex: 1 !important;
    padding: 12px 14px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    min-width: 0 !important;
  }
  .ic-name { font-size: 14px !important; }
  .ic-desc { font-size: 12px !important; -webkit-line-clamp: 2; }
  .ic-price { font-size: 15px !important; }
  .add-btn { width: 38px !important; height: 38px !important; font-size: 20px !important; border-radius: 12px !important; }
  .card-qty-btn { width: 30px !important; height: 30px !important; }
}

/* ═══════════════════════════════════════════════════════════
   v9 FINAL — items grid definitive (wins over ALL previous)
   ═══════════════════════════════════════════════════════════ */

/* DEFINITIVE items grid — overwrites every earlier rule */
.items-grid {
  display: grid !important;
  gap: 14px !important;
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .items-grid { /* col-rule-removed */; gap: 12px !important; }
}
@media (max-width: 600px) {
  /* MOBILE: 1 column always — no exceptions */
  .items-grid { /* col-rule-removed */; gap: 10px !important; }

  /* Horizontal card on 1-col mobile */
  .icard {
    flex-direction: column !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    min-height: unset !important;
  }
  .icard-img {
    width: 100% !important; min-width: 100% !important;
    height: 110px !important; min-height: 110px !important;
    border-radius: 0 !important;
    flex-shrink: 0 !important;
  }
  .ic-bg { border-radius: 0 !important; }
  .icard-body {
    flex: 1 !important; padding: 12px 14px !important;
    display: flex !important; flex-direction: column !important;
    justify-content: space-between !important; min-width: 0 !important;
  }
  .ic-name { font-size: 14px !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .ic-desc { font-size: 12px !important; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .ic-foot { display: flex !important; align-items: center !important; justify-content: space-between !important; }
  .ic-price { font-size: 15px !important; }
  .add-btn { width: 38px !important; height: 38px !important; min-width: unset !important; min-height: unset !important; border-radius: 12px !important; font-size: 20px !important; }
  .card-qty-ctrl { padding: 3px !important; }
  .card-qty-btn { width: 28px !important; height: 28px !important; min-width: unset !important; min-height: unset !important; }
}

/* Slider full-bleed on mobile — definitive */
@media (max-width: 600px) {
  .slider-wrap {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-1 * var(--page-pad, 0px)) !important;
    margin-right: calc(-1 * var(--page-pad, 0px)) !important;
    padding: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
  }
  .slide {
    width: 100vw !important;
    min-width: 100vw !important;
    border-radius: 0 !important;
    padding: 28px 20px 24px !important;  /* equal 20px both sides */
    box-sizing: border-box !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   v10 NUCLEAR FIXES — slider + grid — single source of truth
   ═══════════════════════════════════════════════════════════════ */

/* ── GRID: 1 col mobile, 2 col tablet, 3 col desktop ─────────────────────
   This block is the LAST in the file — wins over everything above          */
.items-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
}
@media screen and (max-width: 900px) {
  .items-grid { /* col-rule-removed */; gap: 12px !important; }
}
@media screen and (max-width: 600px) {
  .items-grid { /* col-rule-removed */; gap: 10px !important; }
}
/* mobile card horizontal layout removed — vertical layout applied below */

/* ── SLIDER: full bleed, symmetric, clean ─────────────────────────────────
   Destroys every previous conflicting rule                                   */
.slider-wrap {
  /* Full viewport width — no side gaps at all */
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  margin-top: var(--nav-h, 64px) !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
}

.slider-track {
  display: flex !important;
  width: 100% !important;
  transition: transform .72s cubic-bezier(.77,0,.175,1) !important;
}

/* Desktop slide: 2-col grid layout, generous inner padding */
.slide {
  min-width: 100vw !important;
  width: 100vw !important;
  min-height: 480px !important;
  border-radius: 0 !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  align-items: center !important;
  gap: 24px !important;
  /* Symmetric equal padding both sides */
  padding: 56px 72px !important;
}

/* Tablet */
@media screen and (max-width: 900px) {
  .slide {
    padding: 44px 48px !important;
    min-height: 420px !important;
    gap: 20px !important;
  }
}

/* Mobile: single column, centred, EQUAL left/right */
@media screen and (max-width: 640px) {
  .slide {
    grid-template-columns: 1fr !important;
    padding: 36px 24px 32px !important;   /* left=right=24px always */
    min-height: auto !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .slide-content { order: 2 !important; text-align: center !important; padding: 0 !important; }
  .slide-visual  { order: 1 !important; display: flex !important; justify-content: center !important; }
  .slide-h { font-size: 28px !important; text-align: center !important; }
  .slide-p { font-size: 13px !important; max-width: 100% !important; text-align: center !important; }
  .slide-price { justify-content: center !important; }
  .slide-btn { width: 100% !important; justify-content: center !important; box-sizing: border-box !important; }
  .float-tag { display: none !important; }
  .food-ring-wrap { width: 160px !important; height: 160px !important; }
  .food-em { font-size: 72px !important; }
  .slide-content { max-width: 100% !important; }
}

/* Slide-tag-pill: keep it readable */
.slide-tag-pill {
  display: inline-flex !important;
  margin-bottom: 12px !important;
}

/* Arrows: inside the slider */
.s-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 40px !important; height: 40px !important;
  min-width: unset !important; min-height: unset !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.15) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  color: #fff !important; font-size: 20px !important;
  cursor: pointer !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  transition: background .2s !important;
}
.sa-l { left: 14px !important; }
.sa-r { right: 14px !important; }
.s-arrow:hover { background: rgba(255,255,255,.28) !important; }

/* Dots: simple small pill */
.s-dots {
  position: absolute !important;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
  z-index: 5 !important;
}
.sdot {
  width: 7px !important; height: 7px !important;
  min-width: unset !important; min-height: unset !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,.38) !important;
  border: none !important; padding: 0 !important;
  cursor: pointer !important;
  transition: all .3s !important;
}
.sdot.on {
  width: 22px !important; height: 7px !important;
  border-radius: 4px !important;
  background: #fff !important;
}

/* ═══════════════════════════════════════════════════════════════
   v11 FINAL FIXES — Slider with margins + Mobile single-column
   ═══════════════════════════════════════════════════════════════ */

/* SLIDER: contained with symmetric side margins, rounded corners */
.slider-wrap {
  width: calc(100% - 32px) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: calc(var(--nav-h, 64px) + 16px) !important;
  margin-bottom: 0 !important;
  left: auto !important;
  right: auto !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  box-sizing: border-box !important;
}

/* On smaller screens keep 16px each side */
@media screen and (max-width: 640px) {
  .slider-wrap {
    width: calc(100% - 28px) !important;
    border-radius: 20px !important;
    margin-top: calc(var(--nav-h, 56px) + 12px) !important;
  }
}

.slider-track {
  display: flex !important;
  width: 100% !important;
  transition: transform .72s cubic-bezier(.77,0,.175,1) !important;
}

.slide {
  min-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* MENU GRID: 1 column on mobile */
@media screen and (max-width: 640px) {
  .items-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .icard {
    flex-direction: column !important;
    max-height: 120px !important;
    min-height: 110px !important;
    overflow: hidden !important;
    align-items: stretch !important;
  }
  .icard-img {
    width: 100% !important;
    min-width: 100% !important;
    height: auto !important;
    min-height: 110px !important;
    flex-shrink: 0 !important;
    border-radius: 18px 0 0 18px !important;
  }
  .icard-body {
    flex: 1 !important;
    padding: 12px 12px 10px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }
  .ic-name { font-size: 13px !important; margin-bottom: 3px !important; }
  .ic-desc { font-size: 11px !important; -webkit-line-clamp: 2 !important; }
  .ic-price { font-size: 14px !important; }
  .add-btn { width: 32px !important; height: 32px !important; font-size: 18px !important; border-radius: 9px !important; }
  .icard-img .ic-em { font-size: 48px !important; }
}

/* ── v11 PATCH: Detail sheet close button always visible ── */
.icd-handle-row {
  padding: 14px 16px 8px !important;
  position: relative !important;
  flex-shrink: 0 !important;
}
.icd-close {
  position: absolute !important;
  right: 16px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 34px !important; height: 34px !important;
  border-radius: 50% !important;
  background: rgba(26,18,8,.08) !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  z-index: 10 !important;
}

/* ── v11 PATCH: Logo light background ── */
.brand-mark {
  background: linear-gradient(135deg, #fff7ed, #fff3e0) !important;
  border: 1px solid rgba(201,122,18,.18) !important;
}

/* ── v11 PATCH: Hide native browser search × (type=text handles it) ── */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }

/* ══ v11c FINAL — Detail sheet close btn + footer fixes ══════════════════ */

/* icd-sheet: overflow visible so close btn isn't clipped */
#itemDetailSheet {
  overflow: visible !important;
}

/* Close button: absolute to the sheet, top-right corner */
#itemDetailSheet .icd-close {
  position: absolute !important;
  top: 14px !important;
  right: 16px !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  background: rgba(26,18,8,.09) !important;
  color: #1d160d !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 30 !important;
  cursor: pointer !important;
  border: none !important;
}

/* icd-scroll: clip only this inner div, not the whole sheet */
#itemDetailSheet .icd-scroll {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Footer always visible, safe-area-aware */
#itemDetailSheet .icd-footer {
  padding-bottom: max(24px, env(safe-area-inset-bottom, 24px)) !important;
  flex-shrink: 0 !important;
}

/* Add button always present */
#itemDetailSheet .icd-add-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 !important;
  min-height: 52px !important;
}

/* Qty row compact when shown alongside add button */
#itemDetailSheet .icd-qty-row {
  flex-shrink: 0 !important;
}

/* Mobile: smaller media so footer is always on screen */
@media (max-width: 640px) {
  #itemDetailSheet .icd-media {
    max-height: 220px !important;
    aspect-ratio: auto !important;
    min-height: 180px !important;
  }
  #itemDetailSheet .icd-emoji-lg {
    font-size: 80px !important;
  }
  #itemDetailSheet .icd-name {
    font-size: 20px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v12 DEFINITIVE LAYOUT — Slider + Menu Grid + Full Responsive
   Single canonical block — overrides ALL previous conflicting rules
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── SLIDER: same horizontal margin as page content ── */
.slider-wrap {
  width: calc(100% - 48px) !important;
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: calc(var(--nav-h, 64px) + 16px) !important;
  margin-bottom: 0 !important;
  left: auto !important; right: auto !important;
  padding: 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 26px !important;
  box-sizing: border-box !important;
  display: block !important;
}
@media (max-width: 900px) {
  .slider-wrap {
    width: calc(100% - 32px) !important;
    border-radius: 22px !important;
  }
}
@media (max-width: 600px) {
  .slider-wrap {
    width: calc(100% - 24px) !important;
    border-radius: 18px !important;
    margin-top: calc(var(--nav-h, 56px) + 10px) !important;
  }
}

/* ── ITEMS SECTION: same padding as slider margin ── */
.items-section,
.cats-section,
.banners-section {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
@media (max-width: 900px) {
  .items-section,
  .cats-section,
  .banners-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 600px) {
  .items-section,
  .cats-section,
  .banners-section {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
}

/* ── ITEMS GRID: desktop 3-col, tablet 2-col, mobile 1-col ── */
.items-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}
@media (max-width: 1000px) {
  .items-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}
@media (max-width: 600px) {
  .items-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}

/* ── ICARD: vertical card on desktop/tablet ── */
.icard {
  display: flex !important;
  flex-direction: column !important;
  background: #fff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  cursor: pointer !important;
  border: 1px solid rgba(201,122,18,.12) !important;
  box-shadow: 0 2px 8px rgba(26,18,8,.06) !important;
  transition: transform .28s, box-shadow .28s !important;
  position: relative !important;
}
.icard:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(201,122,18,.14) !important;
  border-color: rgba(201,122,18,.28) !important;
}

/* ── ICARD IMAGE: tall on desktop, good height ── */
.icard-img {
  width: 100% !important;
  height: 180px !important;
  min-height: 180px !important;
  background: linear-gradient(180deg,#fff8ed,#fce9c8) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  flex-direction: column !important;
}
/* Real photo image inside icard-img */
.icard-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── ICARD EMOJI ── */
.ic-em {
  font-size: 72px !important;
  position: relative !important;
  z-index: 1 !important;
  line-height: 1 !important;
  transition: transform .3s !important;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.12)) !important;
  user-select: none !important;
}
.icard:hover .ic-em {
  transform: scale(1.1) rotate(-4deg) !important;
}

/* ── ICARD BODY ── */
.icard-body {
  padding: 14px 16px 14px !important;
  flex: 1 !important;
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.ic-name {
  font-size: 14.5px !important;
  font-weight: 700 !important;
  color: var(--ink,#1d160d) !important;
  line-height: 1.3 !important;
  margin-bottom: 5px !important;
  white-space: normal !important;
}
.ic-desc {
  font-size: 12px !important;
  color: var(--muted,#7a6040) !important;
  line-height: 1.5 !important;
  margin-bottom: 12px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.ic-foot {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
}
.ic-price {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--gold-d, #C97A12) !important;
}

/* ── MOBILE: horizontal card layout ── */
@media (max-width: 600px) {
  .icard {
    flex-direction: column !important;
    border-radius: 16px !important;
    align-items: stretch !important;
    min-height: 120px !important;
    max-height: 140px !important;
  }
  .icard-img {
    width: 120px !important;
    min-width: 120px !important;
    height: auto !important;
    min-height: 120px !important;
    max-height: 140px !important;
    border-radius: 16px 0 0 16px !important;
    flex-shrink: 0 !important;
  }
  .icard-img img {
    border-radius: 16px 0 0 16px !important;
  }
  .ic-em {
    font-size: 52px !important;
  }
  .icard-body {
    flex: 1 !important;
    padding: 12px 12px 10px !important;
    justify-content: space-between !important;
    min-width: 0 !important;
  }
  .ic-name {
    font-size: 13.5px !important;
    margin-bottom: 4px !important;
  }
  .ic-desc {
    font-size: 11.5px !important;
    -webkit-line-clamp: 2 !important;
    margin-bottom: 8px !important;
  }
  .ic-price {
    font-size: 15px !important;
  }
  .add-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 18px !important;
    border-radius: 9px !important;
    flex-shrink: 0 !important;
  }
  /* ic-bg circle hidden on mobile */
  .ic-bg {
    display: none !important;
  }
  /* ic-grad hidden on mobile */
  .ic-grad {
    display: none !important;
  }
}

/* ── CATEGORY CHIPS: horizontal scroll ── */
.cats-scroll {
  display: flex !important;
  gap: 10px !important;
  overflow-x: auto !important;
  scrollbar-width: none !important;
  padding-bottom: 4px !important;
  -webkit-overflow-scrolling: touch !important;
}
.cats-scroll::-webkit-scrollbar { display: none !important; }
@media (max-width: 600px) {
  .cat-chip {
    padding: 10px 16px !important;
    min-width: 70px !important;
    border-radius: 14px !important;
  }
  .cc-icon { font-size: 18px !important; }
  .cc-label { font-size: 10px !important; }
}

/* ── SECTION HEADER ── */
.sec-header {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
}
.sec-title {
  font-size: 22px !important;
  font-weight: 700 !important;
}
@media (max-width: 600px) {
  .sec-title { font-size: 20px !important; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   v12b FINAL — Cart page spacing + Footer full-width + Hide cart float
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CART PAGE: proper horizontal padding, no over-constraining ── */
.cart-page {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 28px 24px 80px !important;
  box-sizing: border-box !important;
}
@media (max-width: 900px) {
  .cart-page {
    padding: 20px 18px 80px !important;
  }
}
@media (max-width: 600px) {
  .cart-page {
    padding: 16px 14px 80px !important;
  }
}

/* ── CART GRID: 2-col → 1-col on tablet/mobile ── */
.cart-page-grid {
  display: grid !important;
  grid-template-columns: 1fr 360px !important;
  gap: 22px !important;
  align-items: start !important;
}
@media (max-width: 860px) {
  .cart-page-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
}

/* ── FOOTER: always full viewport width, content centered ── */
.site-footer {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
  background: linear-gradient(180deg,#1d160d 0%,#120d08 100%) !important;
}
.site-footer .footer-inner {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 36px 24px 22px !important;
  box-sizing: border-box !important;
}
@media (max-width: 900px) {
  .site-footer .footer-inner {
    padding: 30px 18px 20px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-inner {
    padding: 24px 14px 16px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}

/* ── HIDE floating cart bar on cart.html ── */
.cart-page ~ .cart-float,
body.cart-page .cart-float {
  display: none !important;
}

/* ── PAGE-WRAP: ensure it doesn't add side padding ── */
.page-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
}


/* ═══════════════════════════════════════════════════════════════════
   v12c TOAST FIX — container + toasts never block touch events
   ═══════════════════════════════════════════════════════════════════ */
#globalToast,
.toast-stack {
  pointer-events: none !important;
  /* Move to bottom-right on mobile so it doesn't cover the menu grid */
  position: fixed !important;
  bottom: 24px !important;
  top: auto !important;
  right: 16px !important;
  left: auto !important;
  z-index: 9990 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  align-items: flex-end !important;
  max-width: calc(100vw - 32px) !important;
}
#globalToast .g-toast,
.toast-stack .g-toast {
  pointer-events: none !important;
  max-width: 300px !important;
}
@media (max-width: 600px) {
  #globalToast,
  .toast-stack {
    bottom: 18px !important;
    right: 12px !important;
    left: 12px !important;
    align-items: center !important;
    max-width: calc(100vw - 24px) !important;
  }
  #globalToast .g-toast,
  .toast-stack .g-toast {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v12e — CART PAGE FULL RESPONSIVE REWRITE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.cart-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 100px;
  box-sizing: border-box;
}
@media (max-width: 860px) { .cart-wrap { padding: 20px 18px 90px; } }
@media (max-width: 600px) { .cart-wrap { padding: 14px 14px 80px; } }

/* ── Two-col → one-col grid ── */
.cart-wrap .cart-page-grid {
  display: grid !important;
  grid-template-columns: 1fr 340px !important;
  gap: 22px !important;
  align-items: start !important;
}
@media (max-width: 860px) {
  .cart-wrap .cart-page-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* ── Page hero ── */
.cart-wrap .page-hero {
  background: linear-gradient(135deg, #1d160d, #2e1f0a);
  border-radius: 20px;
  padding: 28px 28px;
  margin-bottom: 20px;
  color: #fff;
}
.cart-wrap .page-hero h1 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}
.cart-wrap .page-hero p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 600px) {
  .cart-wrap .page-hero {
    padding: 20px 18px;
    border-radius: 16px;
  }
  .cart-wrap .page-hero h1 { font-size: 22px; }
  .cart-wrap .page-hero p  { font-size: 13px; }
}

/* ── Panels ── */
.cart-items-panel,
.cart-summary-panel {
  background: #fff;
  border-radius: 20px;
  padding: 22px 22px;
  border: 1px solid rgba(201,122,18,.1);
  box-shadow: 0 2px 12px rgba(26,18,8,.06);
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 600px) {
  .cart-items-panel,
  .cart-summary-panel {
    padding: 16px 16px;
    border-radius: 16px;
  }
}

.panel-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink, #1d160d);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

/* ── Cart Item rows ── */
.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,122,18,.08);
}
.cart-item:last-of-type { border-bottom: none; }

.ci-emoji {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff7ec, #fde9c0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
  overflow: hidden;
}
.ci-emoji img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.ci-info {
  flex: 1;
  min-width: 0;
}
.ci-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink, #1d160d);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.ci-price {
  font-size: 12px;
  color: var(--muted, #7a6040);
  margin-top: 2px;
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.qty-btn {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(201,122,18,.25);
  border-radius: 9px;
  background: #fff;
  color: var(--ink, #1d160d);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}
.qty-btn:hover { background: var(--brand-pale, #fff7ec); border-color: var(--brand, #c97a12); }
.qty-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink, #1d160d);
  min-width: 22px;
  text-align: center;
}

.ci-subtotal {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand, #c97a12);
  min-width: 48px;
  text-align: right;
  flex-shrink: 0;
}

/* Mobile cart items: tighter */
@media (max-width: 480px) {
  .cart-item { gap: 9px; padding: 10px 0; }
  .ci-emoji  { width: 44px; height: 44px; font-size: 22px; border-radius: 10px; }
  .ci-name   { font-size: 12.5px; }
  .ci-price  { font-size: 11px; }
  .qty-btn   { width: 28px; height: 28px; font-size: 14px; border-radius: 8px; }
  .qty-val   { font-size: 13px; min-width: 18px; }
  .ci-subtotal { font-size: 13px; min-width: 40px; }
}

/* ── Summary panel ── */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--ink, #1d160d);
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,122,18,.07);
}
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total {
  font-size: 16px;
  font-weight: 800;
  padding-top: 12px;
  border-top: 2px solid rgba(201,122,18,.15);
  border-bottom: none;
  margin-top: 4px;
}
.free-delivery-badge {
  background: rgba(21,128,61,.08);
  border: 1px solid rgba(21,128,61,.2);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #15803d;
  margin-bottom: 12px;
}

/* ── Address section ── */
.address-section {
  margin-top: 18px;
  border-top: 1.5px dashed rgba(201,122,18,.15);
  padding-top: 18px;
}
.checkout-gate {
  background: rgba(255,247,230,.6);
  border: 1.5px dashed rgba(201,122,18,.25);
  border-radius: 14px;
  padding: 18px;
}
.address-empty {
  font-size: 13px;
  color: var(--muted, #7a6040);
  line-height: 1.6;
  margin-bottom: 12px;
}
.form-section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink, #1d160d);
  margin-bottom: 10px;
  letter-spacing: .02em;
}
.saved-addresses {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.saved-addr-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1.5px solid var(--border, #e8ddd0);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  background: #fff;
}
.saved-addr-card.selected {
  border-color: var(--brand, #c97a12);
  background: rgba(201,122,18,.04);
}
.sa-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border, #e8ddd0);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color .18s;
}
.saved-addr-card.selected .sa-radio {
  border-color: var(--brand, #c97a12);
  background: var(--brand, #c97a12);
  box-shadow: inset 0 0 0 3px #fff;
}
.sa-label { font-size: 13px; font-weight: 700; color: var(--ink, #1d160d); }
.sa-text  { font-size: 12px; color: var(--muted, #7a6040); line-height: 1.5; margin-top: 2px; }

/* ── Form grid: responsive ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 540px) {
  .form-grid {
    grid-template-columns: 1fr !important;
  }
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--muted, #7a6040);
}
.form-input {
  height: 42px;
  padding: 0 12px;
  border: 1.5px solid var(--border, #e8ddd0);
  border-radius: 10px;
  font-size: 13.5px;
  font-family: 'Poppins', sans-serif;
  color: var(--ink, #1d160d);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--brand, #c97a12);
  box-shadow: 0 0 0 3px rgba(201,122,18,.1);
}
select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237A6040' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 12px) center;
  padding-right: 32px;
}

/* ── Place order button ── */
#placeOrderBtn {
  width: 100% !important;
  justify-content: center !important;
  margin-top: 16px !important;
  padding: 15px 20px !important;
  font-size: 15px !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
}





/* Hide floating View Cart bar everywhere */
.cart-float { display: none !important; }

/* ════════════════════════════════════════════════════════════════════════════
   BK NAV  —  Left(burger+name) | Center(logo) | Right(search+cart)
   ════════════════════════════════════════════════════════════════════════════ */

nav#mainNav.bk-nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h, 64px);
  z-index: 300;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 16px;
  gap: 12px;
  background: rgba(255,250,241,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,122,18,.13);
  box-shadow: 0 2px 16px rgba(26,18,8,.06);
}
nav#mainNav.bk-nav.scrolled {
  background: rgba(255,250,241,.98);
  box-shadow: 0 4px 24px rgba(26,18,8,.10);
}

.bk-nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  grid-column: 1;
  justify-self: start;
}
.bk-burger {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: none;
  border-radius: 12px;
  background: rgba(201,122,18,.10);
  color: #1d160d;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s, transform .18s;
}
.bk-burger:hover { background: rgba(201,122,18,.18); transform: scale(1.04); }
.bk-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: #1d160d;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
@media (max-width: 380px) { .bk-brand-name { display: none; } }

.bk-nav-center {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-logo-link { display: block; line-height: 0; }
.bk-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.bk-nav-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  min-width: 0;
}

/* Desktop search shell */
.bk-search-shell {
  display: none;
  position: relative;
  align-items: center;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(201,122,18,.18);
  padding: 0 10px 0 12px;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(26,18,8,.06);
  min-width: 180px;
  max-width: 300px;
}
@media (min-width: 680px) {
  .bk-search-shell { display: flex; }
  .bk-mobile-search-btn { display: none !important; }
}
.bk-search-icon { flex-shrink: 0; color: #9b7e55; opacity: .8; }
.bk-search-input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #1d160d;
  height: 100%;
}
.bk-search-input::placeholder { color: #c0a880; }
.bk-search-clear {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border: none;
  border-radius: 50%;
  background: rgba(201,122,18,.12);
  color: #6b4c1e;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}
.bk-search-shell .header-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: -40px;
  min-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(26,18,8,.14);
  border: 1px solid rgba(201,122,18,.12);
  z-index: 320;
  display: none;
  max-height: min(70vh, 500px);
  overflow-y: auto;
}
.bk-search-shell .header-search-results.open { display: block; }

/* Mobile search icon btn */
.bk-mobile-search-btn {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: none;
  border-radius: 12px;
  background: rgba(201,122,18,.10);
  color: #1d160d;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .18s;
}
.bk-mobile-search-btn:hover { background: rgba(201,122,18,.18); }

/* Cart btn */
.bk-cart-btn {
  position: relative;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #c97a12, #e8891a);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(201,122,18,.30);
  transition: transform .18s, box-shadow .18s;
}
.bk-cart-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,122,18,.38); }
.bk-cart-btn .cart-dot {
  position: absolute;
  top: -5px; right: -5px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e53e3e;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 2px solid #fffaf1;
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE SEARCH DRAWER — fix position and z-index
   ════════════════════════════════════════════════════════════════════════════ */
.mobile-search-drawer {
  position: fixed !important;
  top: var(--nav-h, 64px) !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 290 !important;
  padding: 8px 12px !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  transition: opacity .22s ease, transform .22s ease !important;
  background: transparent !important;
}
.mobile-search-drawer.open {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
}
.mobile-search-inner {
  background: #fff;
  border-radius: 16px;
  padding: 4px 0;
  box-shadow: 0 12px 36px rgba(26,18,8,.14);
  border: 1px solid rgba(201,122,18,.12);
}
.mobile-search-shell {
  display: flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
}
.mobile-search-shell .header-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: #1d160d;
}
.mobile-search-shell .header-search-input::placeholder { color: #c0a880; }
.mobile-search-shell .header-search-results {
  display: none;
}
.mobile-search-shell .header-search-results.open {
  display: block;
  padding: 4px 0 8px;
  border-top: 1px solid rgba(201,122,18,.10);
  max-height: 55vh;
  overflow-y: auto;
}

/* ════════════════════════════════════════════════════════════════════════════
   SIDEBAR AVATAR FIX
   ════════════════════════════════════════════════════════════════════════════ */
.sb-avatar-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.sb-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,122,18,.15), rgba(243,165,58,.20));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c97a12;
}
.user-avatar-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ════════════════════════════════════════════════════════════════════════════
   MOBILE MENU CARDS — image top, full content below (FINAL — overrides all)
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 600px) {

  .items-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .icard {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    min-height: unset !important;
  }

  /* Image section — full width, tall */
  .icard-img {
    width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    min-width: unset !important;
    aspect-ratio: unset !important;
    flex-shrink: 0 !important;
    border-radius: 0 !important;
  }
  .ic-em { font-size: 80px !important; }
  .ic-bg { border-radius: 0 !important; }

  /* Body — always visible below image */
  .icard-body {
    padding: 14px 16px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: unset !important;
    justify-content: flex-start !important;
  }
  .ic-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    display: block !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
  }
  .ic-desc {
    font-size: 13px !important;
    color: #7a6850 !important;
    line-height: 1.55 !important;
    margin-bottom: 14px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
  .ic-foot {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: auto !important;
    gap: 8px !important;
  }
  .ic-price {
    font-size: 20px !important;
    font-weight: 800 !important;
  }
  .add-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    font-size: 24px !important;
  }
  .card-qty-ctrl {
    height: 44px !important;
    border-radius: 14px !important;
  }
  .card-qty-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 20px !important;
  }
  .card-qty-val {
    font-size: 16px !important;
    min-width: 36px !important;
  }
}

/* Infinite scroll loader */
#infiniteLoader {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c97a12;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s;
  letter-spacing: .03em;
}


/* ══════════════════════════════════════════════════════════════════
   DEFINITIVE ITEMS-GRID — overrides everything above
   Desktop: 3 col | Tablet (≤900px): 2 col | Mobile (≤600px): 1 col
   ══════════════════════════════════════════════════════════════════ */
.items-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
}
@media (max-width: 900px) {
  .items-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}
@media (max-width: 600px) {
  .items-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* MOBILE CARD: column layout, image top, body below — FINAL */
  .icard {
    display: flex !important;
    flex-direction: column !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    min-height: unset !important;
  }
  .icard-img {
    width: 100% !important;
    height: 180px !important;
    min-width: unset !important;
    min-height: 180px !important;
    flex-shrink: 0 !important;
    border-radius: 0 !important;
    aspect-ratio: unset !important;
  }
  .ic-em { font-size: 80px !important; }
  .icard-body {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    padding: 14px 16px 16px !important;
    min-width: unset !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .ic-name {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: block !important;
  }
  .ic-desc {
    font-size: 13px !important;
    color: #7a6850 !important;
    margin-bottom: 14px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    line-height: 1.5 !important;
  }
  .ic-foot {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-top: auto !important;
  }
  .ic-price { font-size: 20px !important; font-weight: 800 !important; }
  .add-btn {
    width: 44px !important; height: 44px !important;
    min-width: 44px !important; min-height: 44px !important;
    border-radius: 14px !important; font-size: 24px !important;
  }
  .card-qty-ctrl { height: 44px !important; border-radius: 14px !important; }
  .card-qty-btn {
    width: 44px !important; height: 44px !important;
    min-width: 44px !important; min-height: 44px !important;
    font-size: 20px !important;
  }
  .card-qty-val { font-size: 16px !important; min-width: 36px !important; }
}


/* ── FINAL MOBILE ITEM CARD OVERRIDE: keep full details visible ── */
@media (max-width: 600px) {
  #itemsGrid .icard {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    min-height: unset !important;
    max-height: none !important;
    overflow: hidden !important;
    border-radius: 18px !important;
  }
  #itemsGrid .icard-img {
    width: 100% !important;
    min-width: 100% !important;
    height: 180px !important;
    min-height: 180px !important;
    max-height: 180px !important;
    border-radius: 0 !important;
    flex-shrink: 0 !important;
  }
  #itemsGrid .icard-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  #itemsGrid .icard-body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 14px 14px 16px !important;
    box-sizing: border-box !important;
  }
  #itemsGrid .ic-name {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: block !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    margin-bottom: 6px !important;
  }
  #itemsGrid .ic-desc {
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 3 !important;
    overflow: hidden !important;
    font-size: 12.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }
  #itemsGrid .ic-foot {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-top: auto !important;
  }
  #itemsGrid .ic-price {
    font-size: 18px !important;
    font-weight: 800 !important;
  }
  #itemsGrid .add-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 14px !important;
    font-size: 24px !important;
  }
  #itemsGrid .card-qty-ctrl {
    height: 44px !important;
    border-radius: 14px !important;
    padding: 3px !important;
  }
  #itemsGrid .card-qty-btn {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    font-size: 20px !important;
  }
  #itemsGrid .card-qty-val {
    font-size: 16px !important;
    min-width: 36px !important;
  }
}


/* ── Mobile header: brand under logo + reliable search button ───────────── */
@media (max-width: 680px) {
  :root { --nav-h: 92px; }

  nav#mainNav.bk-nav {
    height: var(--nav-h, 92px);
    padding: 8px 12px 10px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 42px 22px;
    row-gap: 2px;
    align-items: center;
  }

  .bk-nav-left {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    align-self: center;
  }

  .bk-nav-center {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .bk-nav-right {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
  }

  .bk-nav-left .bk-brand-name {
    position: absolute;
    left: 50%;
    top: 48px;
    transform: translateX(-50%);
    display: block;
    max-width: calc(100vw - 126px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    line-height: 1.1;
    text-align: center;
    pointer-events: none;
  }

  .bk-logo-img {
    width: 40px;
    height: 40px;
  }

  .bk-burger,
  .bk-mobile-search-btn,
  .bk-cart-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .bk-search-shell {
    display: none !important;
  }

  .mobile-search-drawer {
    top: var(--nav-h, 92px) !important;
    z-index: 320 !important;
  }
}

@media (max-width: 380px) {
  .bk-nav-left .bk-brand-name {
    top: 46px;
    font-size: 12px;
    max-width: calc(100vw - 104px);
  }
}


/* ── Mobile header final fix: centered brand under logo + reliable tap targets ───────────── */
@media (max-width: 680px) {
  nav#mainNav.bk-nav {
    height: auto !important;
    min-height: 92px !important;
    padding: 10px 12px 10px !important;
    grid-template-columns: 1fr auto 1fr !important;
    grid-template-rows: 42px auto !important;
    row-gap: 4px !important;
    overflow: visible !important;
  }

  .bk-nav-left {
    display: contents !important;
  }

  .bk-nav-left > .bk-burger {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    position: relative !important;
    z-index: 4 !important;
    touch-action: manipulation;
  }

  .bk-nav-center {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    align-self: center !important;
  }

  .bk-nav-right {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
  }

  .bk-nav-left > .bk-brand-name {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    align-self: start !important;
    display: block !important;
    position: static !important;
    transform: none !important;
    margin: 0 !important;
    padding: 0 8px !important;
    max-width: calc(100vw - 24px) !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: center !important;
    line-height: 1.05 !important;
    font-size: 13px !important;
    pointer-events: none !important;
  }

  .bk-logo-img {
    width: 42px !important;
    height: 42px !important;
  }

  .bk-burger,
  .bk-mobile-search-btn,
  .bk-cart-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    position: relative !important;
    z-index: 4 !important;
    touch-action: manipulation;
  }

  .bk-search-shell {
    display: none !important;
  }

  .mobile-search-drawer {
    top: var(--nav-h, 92px) !important;
    z-index: 350 !important;
  }
}

@media (max-width: 380px) {
  .bk-nav-left > .bk-brand-name {
    font-size: 12px !important;
    max-width: calc(100vw - 16px) !important;
  }
}

@media (max-width: 768px){
  .bk-nav-left > .bk-brand-name{display:none !important;}
  .bk-header-inner{grid-template-rows:auto !important;min-height:72px !important;}
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE FINAL FIXES — Gap + Search button
   ══════════════════════════════════════════════════════════════════ */

/* 1. MOBILE NAV: single-row 64px height — brand name is hidden at ≤768px
      so the 2-row layout causes a phantom gap. Force single row + correct --nav-h. */
@media (max-width: 768px) {
  :root { --nav-h: 64px !important; }

  nav#mainNav.bk-nav {
    height: 64px !important;
    min-height: 64px !important;
    grid-template-columns: 1fr auto 1fr !important;
    grid-template-rows: 64px !important;
    row-gap: 0 !important;
    padding: 0 12px !important;
    overflow: visible !important;
    align-items: center !important;
  }

  /* Brand name already hidden at ≤768px — no row 2 needed */
  .bk-nav-left > .bk-brand-name {
    display: none !important;
  }

  .bk-nav-left {
    display: flex !important;
    align-items: center !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .bk-nav-center {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
  }

  .bk-nav-right {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
  }

  /* Slider: sit flush below 64px nav */
  .slider-wrap {
    margin-top: calc(64px + 10px) !important;
  }

  /* Mobile search drawer: open below 64px nav */
  .mobile-search-drawer {
    top: 64px !important;
  }
}

/* 2. SEARCH BUTTON: ensure reliable touch on mobile */
.bk-mobile-search-btn {
  -webkit-tap-highlight-color: rgba(201,122,18,.2) !important;
  touch-action: manipulation !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 10 !important;
  /* Prevent any parent overflow:hidden from clipping tap area */
  -webkit-user-select: none;
  user-select: none;
}
