/*
Theme Name: CurryCollect
Theme URI: https://currycollect.co.uk
Author: CurryCollect
Author URI: https://currycollect.co.uk
Description: CurryCollect — Preston's #1 Click & Collect Food Platform. A fully custom WordPress theme featuring restaurant listings, interactive menu ordering, cart functionality, promo banners, reviews, and secure checkout flow.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: Proprietary
License URI: https://currycollect.co.uk/license
Text Domain: currycollect
Tags: food, restaurant, e-commerce, click-collect, ordering
*/

/* ── CSS VARIABLES ────────────────────────────────── */
:root {
  --teal: #00CCBC;
  --teal-dark: #00a39d;
  --teal-light: #e8faf9;
  --teal-mid: #b2ecea;
  --orange: #FF8000;
  --orange-light: #fff3e6;
  --red: #E8212A;
  --bg: #f5f5f5;
  --white: #ffffff;
  --ink: #2E2E2E;
  --ink-mid: #5a5a5a;
  --ink-light: #9a9a9a;
  --border: #e8e8e8;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 6px 32px rgba(0,0,0,0.12);
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Instrument Sans', sans-serif; background: var(--bg); color: var(--ink); min-height: 100vh; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ───────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; }

/* ── NAV ──────────────────────────────────────────── */
.site-header, .nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border); height: 66px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; color: var(--ink);
}
.logo-mark {
  width: 34px; height: 34px; background: var(--teal); border-radius: 10px;
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
}
.logo em { color: var(--teal); font-style: normal; }
.nav-loc {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 40px;
  padding: 6px 14px; font-size: 13px; color: var(--ink-mid); cursor: pointer; transition: border-color .2s;
}
.nav-loc:hover { border-color: var(--teal); }
.nav-loc svg { width: 14px; height: 14px; color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-mid);
  padding: 6px 12px; border-radius: 8px; transition: all .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-light); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative; background: var(--teal); color: white; border-radius: 12px;
  padding: 8px 18px; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  font-family: 'Syne', sans-serif; transition: background .2s;
}
.cart-btn:hover { background: var(--teal-dark); }
.cart-count {
  background: var(--orange); color: white; border-radius: 20px;
  padding: 1px 7px; font-size: 11px; font-weight: 700; min-width: 20px; text-align: center;
}
.btn-outline {
  background: transparent; border: 1.5px solid var(--teal); color: var(--teal);
  border-radius: 10px; padding: 7px 16px; font-size: 13px; font-weight: 600; transition: all .2s;
}
.btn-outline:hover { background: var(--teal); color: white; }

/* ── HERO ─────────────────────────────────────────── */
.hero { background: var(--white); border-bottom: 1px solid var(--border); }
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 56px 24px 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal-light); color: var(--teal-dark);
  border-radius: 40px; padding: 5px 14px; font-size: 12px; font-weight: 600;
  letter-spacing: .3px; margin-bottom: 18px;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; background: var(--teal);
  border-radius: 50%; animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800;
  line-height: 1.08; color: var(--ink); margin-bottom: 18px;
}
.hero h1 span { color: var(--teal); }
.hero-sub { font-size: 16px; color: var(--ink-mid); line-height: 1.6; max-width: 420px; margin-bottom: 28px; }
.hero-search {
  display: flex; background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 14px; overflow: hidden; margin-bottom: 28px; transition: border-color .2s;
}
.hero-search:focus-within { border-color: var(--teal); }
.hero-search input {
  flex: 1; border: none; background: transparent; padding: 14px 18px;
  font-size: 15px; font-family: inherit; color: var(--ink); outline: none;
}
.hero-search-btn {
  background: var(--teal); color: white; padding: 0 22px;
  font-size: 14px; font-weight: 600; font-family: 'Syne', sans-serif;
  border: none; cursor: pointer; transition: background .2s;
}
.hero-search-btn:hover { background: var(--teal-dark); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.hero-chip {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 40px; padding: 5px 14px; font-size: 13px;
  color: var(--ink-mid); cursor: pointer; transition: all .2s;
}
.hero-chip:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.hero-stats { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 24px; padding-bottom: 32px; }
.h-stat { flex: 1; padding-right: 24px; border-right: 1px solid var(--border); }
.h-stat:last-child { border-right: none; padding-right: 0; padding-left: 24px; }
.h-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--ink); }
.h-stat span { font-size: 12px; color: var(--ink-light); font-weight: 500; }

/* ── HERO VISUAL ──────────────────────────────────── */
.hero-visual { position: relative; padding-bottom: 0; }
.hero-food-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.food-tile {
  border-radius: var(--radius); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; cursor: pointer;
}
.food-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.food-tile.large { grid-column: span 2; }
.tile-img {
  height: 160px; display: flex; align-items: center;
  justify-content: center; font-size: 64px; position: relative;
}
.food-tile.large .tile-img { height: 200px; font-size: 80px; }
.tile-tag {
  position: absolute; top: 10px; left: 10px; background: var(--orange);
  color: white; font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 40px; font-family: 'Syne', sans-serif;
}
.tile-tag.new { background: var(--teal); }
.tile-body { padding: 12px 14px; }
.tile-body h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.tile-body .tile-meta { display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.tile-body .price { color: var(--teal); font-weight: 700; font-size: 15px; }
.tile-body .rest-name { color: var(--ink-light); font-size: 12px; }
.add-btn {
  width: 26px; height: 26px; background: var(--teal); color: white;
  border-radius: 8px; font-size: 18px; line-height: 1;
  display: grid; place-items: center; border: none; cursor: pointer; transition: background .2s, transform .1s;
}
.add-btn:hover { background: var(--teal-dark); }
.add-btn:active { transform: scale(.92); }

/* ── CATEGORY STRIP ───────────────────────────────── */
.cat-strip { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 66px; z-index: 80; }
.cat-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none;
  padding-top: 10px; padding-bottom: 10px;
}
.cat-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  display: flex; align-items: center; gap: 6px; background: var(--bg);
  border: 1.5px solid transparent; border-radius: 40px; padding: 6px 16px;
  font-size: 13px; font-weight: 500; color: var(--ink-mid); cursor: pointer;
  white-space: nowrap; transition: all .2s; flex-shrink: 0;
}
.cat-pill.active, .cat-pill:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.cat-pill.active { font-weight: 600; }
.cat-pill span { font-size: 17px; line-height: 1; }

/* ── SECTION LABEL ────────────────────────────────── */
.slabel {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px; display: block;
}
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }

/* ── PROMO BANNERS ────────────────────────────────── */
.promo-bar { max-width: 1200px; margin: 24px auto 0; padding: 0 24px; }
.promo-scroll { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.promo-scroll::-webkit-scrollbar { display: none; }
.promo-card {
  flex-shrink: 0; width: 320px; border-radius: var(--radius);
  overflow: hidden; display: flex; align-items: stretch;
  cursor: pointer; transition: transform .2s;
}
.promo-card:hover { transform: scale(1.02); }
.promo-card.p1 { background: linear-gradient(135deg, #004d4b 0%, #00a39d 100%); }
.promo-card.p2 { background: linear-gradient(135deg, #7b2d00 0%, #ff8000 100%); }
.promo-card.p3 { background: linear-gradient(135deg, #1a0533 0%, #7b2fa8 100%); }
.promo-card.p4 { background: linear-gradient(135deg, #0d3b1f, #1a7a3c); }
.promo-body { padding: 22px 20px; flex: 1; }
.promo-body .tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,.7); text-transform: uppercase; margin-bottom: 6px;
}
.promo-body h3 { font-family: 'Syne', sans-serif; font-size: 19px; font-weight: 700; color: white; margin-bottom: 4px; line-height: 1.2; }
.promo-body p { font-size: 12px; color: rgba(255,255,255,.75); line-height: 1.4; }
.promo-emoji { font-size: 62px; padding: 12px 18px 0; align-self: flex-end; line-height: 1; }

/* ── SECTION WRAP ─────────────────────────────────── */
.section { max-width: 1200px; margin: 0 auto; padding: 36px 24px; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.section-head h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--ink); }
.section-head a { font-size: 13px; color: var(--teal); font-weight: 600; }

/* ── RESTAURANT CARDS ─────────────────────────────── */
.rest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.rest-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: transform .2s, box-shadow .2s; box-shadow: var(--shadow);
}
.rest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.rest-img { height: 156px; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; }
.rest-img .status { position: absolute; bottom: 10px; left: 10px; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 40px; }
.status.open { background: #e8faf5; color: #059669; }
.status.busy { background: #fff3cd; color: #b45309; }
.rest-card-body { padding: 14px 16px; }
.rest-card-body h3 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 3px; }
.rest-card-body .cuisine { font-size: 13px; color: var(--ink-light); margin-bottom: 10px; }
.rest-card-meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-mid); }
.meta-chip { display: flex; align-items: center; gap: 4px; }
.meta-chip svg { width: 13px; height: 13px; }
.rating { color: var(--orange); font-weight: 600; }
.rest-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.rest-tag { font-size: 11px; background: var(--bg); border: 1px solid var(--border); border-radius: 40px; padding: 2px 9px; color: var(--ink-mid); }

/* ── MENU SECTION ─────────────────────────────────── */
.menu-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.menu-filters { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; margin-bottom: 20px; }
.menu-filters::-webkit-scrollbar { display: none; }
.mf-btn {
  background: var(--bg); border: 1.5px solid transparent; border-radius: 40px;
  padding: 6px 16px; font-size: 13px; font-weight: 500; color: var(--ink-mid);
  cursor: pointer; white-space: nowrap; transition: all .2s; flex-shrink: 0;
}
.mf-btn.active, .mf-btn:hover { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }
.menu-grid { display: flex; flex-direction: column; gap: 10px; }
.menu-item {
  background: var(--white); border-radius: var(--radius); padding: 16px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: var(--shadow); cursor: pointer; transition: box-shadow .2s;
}
.menu-item:hover { box-shadow: var(--shadow-lg); }
.item-img {
  width: 90px; height: 90px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 42px;
}
.item-info { flex: 1; min-width: 0; }
.item-info h4 { font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.item-info p {
  font-size: 12px; color: var(--ink-light); margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.item-footer { display: flex; align-items: center; justify-content: space-between; }
.item-price { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--ink); }
.item-add {
  width: 32px; height: 32px; background: var(--teal); color: white; border-radius: 9px;
  font-size: 20px; display: grid; place-items: center; border: none; cursor: pointer;
  transition: background .2s, transform .1s; font-family: inherit; line-height: 1;
}
.item-add:hover { background: var(--teal-dark); }
.item-add:active { transform: scale(.9); }
.item-qty { display: flex; align-items: center; gap: 8px; }
.item-qty button {
  width: 28px; height: 28px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; font-size: 16px; cursor: pointer; display: grid;
  place-items: center; transition: all .2s; color: var(--ink);
}
.item-qty button:hover { border-color: var(--teal); color: var(--teal); }
.item-qty span { font-size: 14px; font-weight: 600; min-width: 16px; text-align: center; }
.item-badge {
  font-size: 10px; font-weight: 700; background: var(--teal-light); color: var(--teal-dark);
  border-radius: 4px; padding: 2px 6px; margin-left: 8px; vertical-align: middle;
}
.item-badge.spicy { background: #fef2f2; color: #b91c1c; }
.section-divider {
  font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--ink-light); letter-spacing: .5px; text-transform: uppercase;
  padding: 16px 0 10px; border-bottom: 1px solid var(--border); margin-bottom: 10px;
}

/* ── CART PANEL ───────────────────────────────────── */
.cart-panel {
  background: var(--white); border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow); position: sticky; top: 130px;
}
.cart-panel h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.cart-rest { font-size: 12px; color: var(--ink-light); margin-bottom: 18px; display: flex; align-items: center; gap: 5px; }
.cart-items-list { display: flex; flex-direction: column; gap: 12px; min-height: 80px; }
.cart-empty-msg { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px 0; gap: 8px; color: var(--ink-light); }
.cart-empty-msg span { font-size: 36px; }
.cart-empty-msg p { font-size: 13px; }
.cart-item-row { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.ci-emoji { font-size: 24px; flex-shrink: 0; }
.ci-name { flex: 1; font-weight: 500; font-size: 13px; line-height: 1.3; }
.ci-price { font-weight: 600; font-size: 13px; color: var(--ink); white-space: nowrap; }
.ci-controls { display: flex; align-items: center; gap: 6px; }
.ci-btn {
  width: 22px; height: 22px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 6px; font-size: 13px; cursor: pointer; display: grid;
  place-items: center; transition: all .2s; color: var(--ink);
}
.ci-btn:hover { border-color: var(--teal); color: var(--teal); }
.ci-qty { font-size: 13px; font-weight: 600; min-width: 14px; text-align: center; }
.cart-divider { height: 1px; background: var(--border); margin: 16px 0; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-mid); margin-bottom: 7px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 16px; font-weight: 700; font-family: 'Syne', sans-serif; color: var(--ink); margin-top: 4px; }
.checkout-btn {
  width: 100%; margin-top: 16px; background: var(--teal); color: white; border: none;
  border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 700;
  font-family: 'Syne', sans-serif; cursor: pointer; transition: background .2s; letter-spacing: .2px;
}
.checkout-btn:hover { background: var(--teal-dark); }
.checkout-btn:disabled { background: var(--border); color: var(--ink-light); cursor: not-allowed; }
.promo-input { display: flex; gap: 8px; margin-top: 12px; }
.promo-input input {
  flex: 1; border: 1px solid var(--border); border-radius: 9px; padding: 8px 12px;
  font-size: 13px; font-family: inherit; color: var(--ink); outline: none; transition: border-color .2s;
}
.promo-input input:focus { border-color: var(--teal); }
.promo-input button {
  background: var(--bg); border: 1px solid var(--border); border-radius: 9px;
  padding: 8px 14px; font-size: 13px; font-weight: 600; cursor: pointer; color: var(--ink-mid); transition: all .2s;
}
.promo-input button:hover { border-color: var(--teal); color: var(--teal); }

/* ── HOW IT WORKS ─────────────────────────────────── */
.hiw-section { background: var(--white); padding: 56px 24px; }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.hiw-card { text-align: center; padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.hiw-num { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: 1px; margin-bottom: 14px; }
.hiw-icon { font-size: 44px; margin-bottom: 14px; }
.hiw-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hiw-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.hiw-cta-box {
  background: var(--teal-light); border: 1.5px solid var(--teal-mid);
  border-radius: 14px; padding: 18px 24px;
  display: flex; align-items: center; gap: 16px;
  margin-top: 28px; max-width: 640px; margin-left: auto; margin-right: auto;
}
.hiw-cta-box span { font-size: 28px; }
.hiw-cta-box p { font-size: 14px; color: var(--teal-dark); line-height: 1.5; }

/* ── REVIEWS ──────────────────────────────────────── */
.reviews-strip { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 8px; }
.reviews-strip::-webkit-scrollbar { display: none; }
.review-card { flex-shrink: 0; width: 300px; background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.review-stars { color: var(--orange); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.review-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.rev-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--teal);
  color: white; font-size: 14px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0;
}
.rev-name { font-size: 13px; font-weight: 600; }
.rev-loc { font-size: 12px; color: var(--ink-light); }

/* ── ABOUT SECTION ────────────────────────────────── */
.about-section {
  background: var(--ink); color: white; padding: 72px 24px;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-visual-block {
  width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, #1a1a1a, #333);
  border-radius: 24px; display: flex; align-items: center; justify-content: center;
  font-size: 120px; position: relative;
}
.about-float {
  position: absolute; bottom: 24px; right: 24px;
  background: var(--teal); color: white; border-radius: 12px; padding: 12px 18px;
  font-family: 'Syne', sans-serif;
}
.about-float strong { display: block; font-size: 22px; font-weight: 800; }
.about-float span { font-size: 12px; opacity: .85; }
.about-section .section-label { color: var(--teal); }
.about-section h2 { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; margin: 12px 0 20px; line-height: 1.1; }
.about-section p { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 14px; font-size: 15px; }
.about-section em { color: var(--teal); font-style: normal; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.af { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.85); }
.af-icon { font-size: 18px; }

/* ── NEWSLETTER ───────────────────────────────────── */
.newsletter { background: var(--teal); padding: 56px 24px; }
.nl-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.nl-text h2 { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; color: white; margin-bottom: 8px; }
.nl-text p { font-size: 14px; color: rgba(255,255,255,.8); max-width: 480px; line-height: 1.5; }
.nl-form { display: flex; gap: 10px; flex-shrink: 0; }
.nl-form input {
  border: none; border-radius: 12px; padding: 13px 18px;
  font-size: 14px; font-family: inherit; outline: none; width: 280px;
}
.nl-form button {
  background: var(--ink); color: white; border: none; border-radius: 12px;
  padding: 13px 22px; font-size: 14px; font-weight: 700;
  font-family: 'Syne', sans-serif; cursor: pointer; white-space: nowrap; transition: background .2s;
}
.nl-form button:hover { background: #111; }

/* ── FOOTER ───────────────────────────────────────── */
.footer { background: var(--ink); color: white; padding: 56px 24px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.6; margin-top: 12px; max-width: 260px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 16px; color: white; letter-spacing: .5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-legal a:hover { color: var(--teal); }

/* ── CHECKOUT MODAL ───────────────────────────────── */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 200;
  display: none; align-items: flex-end; justify-content: center; padding: 0;
}
.overlay.show { display: flex; animation: fadeIn .2s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-sheet {
  background: var(--white); width: 100%; max-width: 540px;
  border-radius: 24px 24px 0 0; padding: 28px 28px 40px;
  max-height: 92vh; overflow-y: auto; animation: slideUp .3s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.modal-handle { width: 40px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 22px; }
.modal-sheet h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.modal-rest { font-size: 13px; color: var(--ink-light); margin-bottom: 24px; display: flex; align-items: center; gap: 6px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  color: var(--ink); outline: none; transition: border-color .2s; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-section-title {
  font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700;
  margin: 20px 0 14px; padding-top: 16px; border-top: 1px solid var(--border);
}
.pay-methods { display: flex; gap: 8px; margin-bottom: 16px; }
.pay-method {
  flex: 1; border: 1.5px solid var(--border); border-radius: 10px; padding: 10px;
  text-align: center; cursor: pointer; transition: all .2s;
  font-size: 12px; font-weight: 600; color: var(--ink-mid);
}
.pay-method.active { border-color: var(--teal); background: var(--teal-light); color: var(--teal); }
.pay-method .pay-icon { font-size: 20px; display: block; margin-bottom: 4px; }
.stripe-note {
  font-size: 11px; color: var(--ink-light); text-align: center; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.modal-order-summary { background: var(--bg); border-radius: 12px; padding: 16px; margin-bottom: 4px; }
.mos-item { display: flex; justify-content: space-between; font-size: 13px; color: var(--ink-mid); padding: 5px 0; }
.mos-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; font-family: 'Syne', sans-serif; color: var(--ink); padding-top: 10px; border-top: 1px solid var(--border); margin-top: 6px; }
.place-order-btn {
  width: 100%; margin-top: 20px; background: var(--teal); color: white; border: none;
  border-radius: 14px; padding: 16px; font-size: 16px; font-weight: 700;
  font-family: 'Syne', sans-serif; cursor: pointer; transition: background .2s; letter-spacing: .2px;
}
.place-order-btn:hover { background: var(--teal-dark); }

/* ── SUCCESS OVERLAY ──────────────────────────────── */
.success-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 300;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.success-overlay.show { display: flex; animation: fadeIn .3s; }
.success-card {
  background: var(--white); border-radius: 24px; padding: 40px 32px;
  text-align: center; max-width: 420px; width: 100%;
}
.success-icon { font-size: 64px; margin-bottom: 20px; }
.success-card h2 { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.success-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 24px; }
.order-code {
  font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--teal); background: var(--teal-light); border-radius: 12px;
  padding: 14px 24px; margin-bottom: 24px; letter-spacing: 3px;
}
.success-close {
  background: var(--teal); color: white; border: none; border-radius: 12px;
  padding: 14px 32px; font-size: 15px; font-weight: 700;
  font-family: 'Syne', sans-serif; cursor: pointer; transition: background .2s;
}
.success-close:hover { background: var(--teal-dark); }

/* ── TOAST ────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: white; border-radius: 40px; padding: 12px 22px;
  font-size: 14px; font-weight: 500; z-index: 400; opacity: 0;
  transition: opacity .3s, transform .3s; pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── MOBILE RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 24px; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 36px; }
  .menu-wrap { grid-template-columns: 1fr; }
  .cart-panel { display: none; }
  .hiw-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual-block { display: none; }
  .nl-inner { flex-direction: column; }
  .nl-form { width: 100%; }
  .nl-form input { flex: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero h1 { font-size: 30px; }
}

/* ── WORDPRESS MENU RESET ─────────────────────────── */
.wp-block-navigation { display: none; }

/* ── SORT & FILTER BAR ─────────────────────────────── */
.sort-filter-bar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 20px; }
.sfb-inner { display: flex; flex-direction: column; gap: 12px; }
.sfb-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.sfb-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--ink-light); white-space: nowrap; min-width: 48px; }
.sfb-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.sfb-pill {
  background: var(--bg); border: 1.5px solid transparent; border-radius: 40px;
  padding: 5px 13px; font-size: 12px; font-weight: 500; color: var(--ink-mid);
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.sfb-pill:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.sfb-pill.active { border-color: var(--teal); background: var(--teal); color: white; font-weight: 600; }

/* ── MENU ITEM RESTAURANT TAG ────────────────────────── */
.item-rest-tag {
  font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px;
  margin-bottom: 6px; display: inline-block;
}
.rest-divider { display: flex; justify-content: space-between; align-items: center; }
.rest-divider small { font-size: 11px; color: var(--ink-light); font-weight: 400; }

/* ── RESTAURANT CARD EXTRAS ────────────────────────── */
.rest-address { font-size: 11px; color: var(--ink-light); margin: 4px 0 2px; }
.rest-hours   { font-size: 11px; color: var(--ink-light); margin-bottom: 8px; }
.rest-view-btn {
  display: block; width: 100%; margin-top: 12px;
  background: var(--teal-light); color: var(--teal); border: 1.5px solid var(--teal-mid);
  border-radius: 10px; padding: 9px; font-size: 13px; font-weight: 700;
  font-family: 'Syne', sans-serif; cursor: pointer; transition: all .2s; text-align: center;
}
.rest-view-btn:hover { background: var(--teal); color: white; }

/* ── CART ITEM RESTAURANT LABEL ─────────────────────── */
.ci-name-wrap { flex: 1; display: flex; flex-direction: column; }
.ci-rest { font-size: 10px; color: var(--ink-light); }

/* ── MENU EMPTY STATE ────────────────────────────────── */
.menu-empty { text-align: center; padding: 48px 24px; color: var(--ink-light); }
.menu-empty span { font-size: 48px; display: block; margin-bottom: 12px; }
.menu-empty p { font-size: 14px; }

/* ── ITEM BADGE VARIANTS ─────────────────────────────── */
.item-badge.veg   { background: #ecfdf5; color: #059669; }
.item-badge.halal { background: #fef9ec; color: #b45309; }
.item-badge.spicy { background: #fef2f2; color: #b91c1c; }

/* ── CONTACT SECTION ─────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.contact-info-card h4 { font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.contact-info-card p { font-size: 13px; color: var(--ink-mid); line-height: 1.7; }

/* ── REVIEWS ─────────────────────────────────────────── */
.reviews-strip { display: flex; gap: 16px; overflow-x: auto; scrollbar-width: none; padding-bottom: 8px; }
.reviews-strip::-webkit-scrollbar { display: none; }
.review-card { flex-shrink: 0; width: 300px; background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.review-stars { color: var(--orange); font-size: 14px; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { font-size: 13px; color: var(--ink-mid); line-height: 1.6; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.rev-avatar { width: 36px; height: 36px; border-radius: 50%; color: white; font-size: 14px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }
.rev-name { font-size: 13px; font-weight: 600; }
.rev-loc  { font-size: 12px; color: var(--ink-light); }

/* ── RESTAURANT CARD EXTRAS ────────────────────────── */
.rest-card-body .meta-chip { font-size: 12px; background: var(--bg); border-radius: 20px; padding: 3px 10px; color: var(--ink-mid); }
.rest-card-body .rating    { color: var(--orange); font-weight: 600; }
.rest-card-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }

/* ── ABOUT SECTION ───────────────────────────────────── */
.about-section { background: linear-gradient(135deg, #1a0a00 0%, #3d1a00 100%); padding: 80px 24px; }
.about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.about-visual-block { aspect-ratio: 1; max-width: 300px; background: rgba(255,255,255,.08); border-radius: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 80px; position: relative; }
.about-float { position: absolute; bottom: -16px; right: -16px; background: var(--teal); color: white; border-radius: 14px; padding: 12px 18px; text-align: center; }
.about-float strong { display: block; font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; }
.about-float span { font-size: 11px; opacity: .8; }
.about-section .section-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; display: block; }
.about-section h2 { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: white; margin-bottom: 18px; line-height: 1.15; }
.about-section p { color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 14px; font-size: 15px; }
.about-section em { color: var(--teal); font-style: normal; }
.about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.af { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.85); }
.af-icon { font-size: 18px; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.hiw-section { background: var(--white); padding: 56px 24px; }
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.hiw-card { text-align: center; padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.hiw-num { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: 1px; margin-bottom: 14px; }
.hiw-icon { font-size: 44px; margin-bottom: 14px; }
.hiw-card h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.hiw-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.hiw-cta-box { background: var(--teal-light); border: 1.5px solid var(--teal-mid); border-radius: 14px; padding: 18px 24px; display: flex; align-items: center; gap: 16px; margin-top: 28px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hiw-cta-box span { font-size: 28px; }
.hiw-cta-box p { font-size: 14px; color: var(--teal-dark); line-height: 1.5; }

/* ── MOBILE RESPONSIVE EXTRAS ─────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .sfb-group { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .contact-info { flex-direction: row; flex-wrap: wrap; }
  .contact-info-card { flex: 1; min-width: 200px; }
}
