/* ============================================================
   Food Theme — v1.0.0
   Primary: #f97316 (orange)  |  Font: Nunito
   ============================================================ */

:root {
  --primary:      #f97316;
  --primary-d:    #ea580c;
  --primary-light:#fff7ed;
  --green:        #16a34a;
  --green-d:      #15803d;
  --green-light:  #dcfce7;
  --dark:         #111827;
  --dark-mid:     #1f2937;
  --dark-soft:    #374151;
  --amber:        #f59e0b;
  --amber-d:      #d97706;
  --text:         #111827;
  --text-mid:     #374151;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --bg:           #fafaf8;
  --white:        #ffffff;
  --danger:       #dc2626;
  --success:      #16a34a;
  /* ── Themeable section vars (overridden by Brand Colors admin) ── */
  --nav-text:          #ffffff;
  --nav-hover:         #f97316;
  --ann-bar-bg:        #f97316;
  --ann-bar-text:      #ffffff;
  --cat-strip-bg:      #1f2937;
  --cat-strip-text:    rgba(255,255,255,.65);
  --cat-strip-hover:   #ffffff;
  --cat-strip-active:  #f97316;
  --footer-bg:         #111827;
  --sec-alt-bg:        #f5f5f0;
  --card-bg:           #ffffff;
  /* ── Aliases ── */
  --navy:         #111827;
  --navy-mid:     #1f2937;
  /* ── Radius / shadow ── */
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow:    0 3px 10px rgba(0,0,0,.09);
  --shadow-md: 0 6px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.17);
  --nav-h:     68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.55; font-size: 15px;
}
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Utility ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

/* ── Alerts ── */
.alert { padding: .75rem 1.1rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; font-weight: 600; }
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }
.alert-warning { background: #fef9c3; color: #854d0e; border-left: 4px solid #f59e0b; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  padding: .6rem 1.5rem; border-radius: var(--radius);
  font-size: .9rem; font-weight: 700; cursor: pointer;
  border: 2px solid transparent; transition: all .18s;
  text-decoration: none; font-family: inherit; letter-spacing: .01em;
}
.btn:hover { text-decoration: none; }
.btn-primary   { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover   { background: var(--primary-d); border-color: var(--primary-d); }
.btn-amber     { background: var(--amber); color: #1a1a1a; border-color: var(--amber); font-weight: 800; }
.btn-amber:hover     { background: var(--amber-d); border-color: var(--amber-d); }
.btn-green     { background: var(--green); color: #fff; border-color: var(--green); font-weight: 800; }
.btn-green:hover     { background: var(--green-d); border-color: var(--green-d); }
.btn-dark      { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover      { background: var(--dark-mid); border-color: var(--dark-mid); }
.btn-white     { background: #fff; color: var(--dark); border-color: #fff; font-weight: 800; }
.btn-white:hover     { background: #f8fafc; }
.btn-outline   { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover   { background: var(--text); color: #fff; border-color: var(--text); }
.btn-secondary { background: var(--bg); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: #e5e7eb; }
.btn-danger    { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-sm   { padding: .35rem .85rem; font-size: .8rem; }
.btn-lg   { padding: .8rem 2.25rem; font-size: .98rem; }
.btn-block { width: 100%; }
.btn-pill  { border-radius: 50px; }
.btn-round { border-radius: 50%; padding: 0; width: 42px; height: 42px; }

/* ── Forms ── */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: .4rem; font-size: .875rem; color: var(--text); }
.form-control {
  width: 100%; padding: .65rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; color: var(--text); background: var(--white);
  transition: border-color .18s; font-family: inherit;
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
.form-error { color: var(--danger); font-size: .8rem; margin-top: .3rem; }

/* ================================================================
   ANNOUNCEMENT BAR
   ================================================================ */
.ann-bar {
  background: var(--ann-bar-bg);
  text-align: center; padding: .5rem 1rem;
  font-size: .82rem; font-weight: 700; color: var(--ann-bar-text);
  letter-spacing: .01em;
}
.ann-bar a     { color: var(--ann-bar-text); font-weight: 800; text-decoration: underline; opacity: .85; }
.ann-bar a:hover { opacity: 1; }
.ann-bar strong { color: var(--ann-bar-text); }

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  background: var(--dark);
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h); border-bottom: 1px solid rgba(255,255,255,.07);
}
.navbar-inner {
  display: grid; grid-template-columns: 200px 1fr 280px;
  align-items: center; height: 100%;
  padding: 0 1.5rem; max-width: 1280px; margin: 0 auto; gap: 1.25rem;
}
.navbar-brand {
  font-size: 1.55rem; font-weight: 900; color: var(--nav-text, #fff);
  letter-spacing: -.025em; display: flex; align-items: center;
}
.navbar-brand img { height: 40px; width: auto; }
.navbar-brand:hover { color: var(--nav-hover); }

.navbar-search { width: 100%; }
.navbar-search form {
  display: flex; align-items: center;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: 50px; overflow: hidden; transition: all .18s;
}
.navbar-search form:focus-within { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.38); }
.navbar-search input {
  flex: 1; padding: .65rem 1.25rem; border: none;
  background: transparent; font-size: .88rem; font-family: inherit; color: var(--nav-text, #fff); outline: none;
}
.navbar-search input::placeholder { color: color-mix(in srgb, var(--nav-text, #fff) 50%, transparent); }
.navbar-search button {
  padding: .65rem 1rem; background: transparent; border: none;
  cursor: pointer; color: rgba(255,255,255,.6); display: flex; align-items: center; transition: color .18s;
}
.navbar-search button:hover { color: var(--primary); }
.navbar-search button svg { width: 18px; height: 18px; }

.navbar-actions { display: flex; align-items: center; justify-content: flex-end; gap: .2rem; }
.nav-action {
  display: flex; flex-direction: column; align-items: center;
  padding: .45rem .6rem; border-radius: var(--radius);
  color: color-mix(in srgb, var(--nav-text, #fff) 80%, transparent); gap: .1rem; cursor: pointer;
  border: none; background: transparent; font-family: inherit;
  white-space: nowrap; transition: all .18s; text-decoration: none;
}
.nav-action:hover { color: var(--nav-hover); background: color-mix(in srgb, var(--nav-text, #fff) 9%, transparent); }
.nav-action svg { width: 22px; height: 22px; }
.nav-label { font-size: .67rem; color: color-mix(in srgb, var(--nav-text, #fff) 52%, transparent); line-height: 1; }
.nav-hamburger { display: none; }

.cart-wrap { position: relative; }
.cart-badge {
  position: absolute; top: 3px; right: 3px;
  background: var(--primary); color: #fff;
  border-radius: 50%; min-width: 18px; height: 18px;
  font-size: .65rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--dark); line-height: 1;
}

/* ================================================================
   CATEGORY STRIP  (food emojis, slightly warm bg)
   ================================================================ */
.cat-strip { background: var(--cat-strip-bg); border-bottom: 1px solid rgba(0,0,0,.1); }
.cat-strip-inner {
  display: flex; align-items: stretch; overflow-x: auto;
  scrollbar-width: none; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
}
.cat-strip-inner::-webkit-scrollbar { display: none; }
.cat-strip-link {
  display: flex; flex-direction: column; align-items: center;
  padding: .65rem 1rem; color: var(--cat-strip-text);
  font-size: .72rem; font-weight: 700; white-space: nowrap;
  gap: .3rem; transition: color .18s, background .18s;
  border-bottom: 2.5px solid transparent; flex-shrink: 0; text-decoration: none;
}
.cat-strip-link:hover { color: var(--cat-strip-hover); background: color-mix(in srgb, var(--cat-strip-hover) 8%, transparent); }
.cat-strip-link.active { color: var(--cat-strip-active); border-bottom-color: var(--cat-strip-active); }
.cat-strip-icon {
  width: 36px; height: 36px; border-radius: 50%; overflow: hidden;
  background: rgba(255,255,255,.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.cat-strip-icon img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================================
   SECTION SYSTEM
   ================================================================ */
.sec { padding: 3.5rem 0; }
.sec-white  { background: var(--white); }
.sec-warm   { background: #fffbf5; }
.sec-gray   { background: var(--sec-alt-bg, #f5f5f0); }
.sec-orange { background: var(--primary); }
.sec-dark   { background: var(--dark); }
.sec-green  { background: #f0fdf4; }

.sec-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1.75rem; gap: 1rem;
}
.sec-title {
  font-size: 1.55rem; font-weight: 900; color: var(--text);
  letter-spacing: -.025em; line-height: 1.2;
}
.sec-title-white { color: #fff; }
.sec-subtitle { font-size: .88rem; color: var(--muted); margin-top: .3rem; line-height: 1.5; }
.sec-link {
  font-size: .78rem; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--primary);
  border-bottom: 1.5px solid rgba(249,115,22,.3); padding-bottom: 1px;
  white-space: nowrap; transition: all .18s; flex-shrink: 0; margin-top: .4rem;
}
.sec-link:hover { color: var(--primary-d); border-color: var(--primary-d); }

/* ================================================================
   PRODUCT GRID + CARDS
   ================================================================ */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.product-grid-5 { grid-template-columns: repeat(5, 1fr); }
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--card-bg, var(--white)); border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
  transition: box-shadow .22s, transform .22s;
  border: 1.5px solid transparent;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(249,115,22,.15);
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.15);
}

.pc-img-wrap {
  position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #f5f5f0;
}
.pc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease;
}
.product-card:hover .pc-img-wrap img { transform: scale(1.06); }

.pc-badges {
  position: absolute; top: .6rem; left: .6rem;
  display: flex; flex-direction: column; gap: .25rem; z-index: 1;
}
.pc-badge { display: inline-block; padding: .18rem .52rem; border-radius: 6px; font-size: .68rem; font-weight: 800; letter-spacing: .03em; }
.pc-badge-sale     { background: var(--primary); color: #fff; }
.pc-badge-new      { background: var(--green); color: #fff; }
.pc-badge-featured { background: var(--amber); color: #1a1a1a; }
.pc-badge-oos      { background: rgba(0,0,0,.55); color: #fff; }

.pc-heart {
  position: absolute; top: .6rem; right: .6rem; z-index: 3;
  width: 32px; height: 32px; background: rgba(255,255,255,.92);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer;
  opacity: 0; transform: scale(.8);
  transition: opacity .2s, transform .2s, background .18s;
}
.product-card:hover .pc-heart { opacity: 1; transform: scale(1); }
.pc-heart:hover { background: #fff; }
.pc-heart svg { width: 15px; height: 15px; stroke: #374151; fill: none; stroke-width: 2; transition: stroke .18s; }
.pc-heart:hover svg { stroke: var(--primary); }

.pc-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(17,24,39,.92); transform: translateY(100%);
  transition: transform .22s ease; padding: .65rem .7rem; z-index: 2;
  display: flex; gap: .45rem;
}
.product-card:hover .pc-overlay { transform: translateY(0); }
.pc-overlay form { flex: 1; display: flex; }
.pc-overlay .btn { flex: 1; font-size: .78rem; padding: .5rem .4rem; justify-content: center; }
.pc-buynow-btn { background: var(--primary); color: #fff; border: none; font-weight: 700; }
.pc-buynow-btn:hover { background: var(--primary-d); color: #fff; }

.pc-body { padding: .9rem 1rem 1rem; }
.pc-category { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--primary); margin-bottom: .3rem; }
.pc-title {
  font-size: .9rem; font-weight: 700; color: var(--text);
  line-height: 1.4; margin-bottom: .35rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-title a { color: inherit; }
.pc-title a:hover { color: var(--primary); }
.pc-pricing { display: flex; align-items: baseline; gap: .45rem; flex-wrap: wrap; }
.pc-price { font-size: 1.1rem; font-weight: 900; color: var(--primary); }
.pc-old-price { font-size: .78rem; text-decoration: line-through; color: var(--muted); font-weight: 400; }

/* ── Food add-to-cart quick button ── */
.pc-add-btn {
  position: absolute; bottom: .75rem; right: .75rem; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; line-height: 1;
  box-shadow: 0 3px 12px rgba(249,115,22,.45);
  transition: transform .18s, background .18s;
}
.pc-add-btn:hover { background: var(--primary-d); transform: scale(1.1); }

/* ================================================================
   DELIVERY PERKS STRIP
   ================================================================ */
.perks-strip {
  background: #fff; border-bottom: 1.5px solid var(--border);
  padding: .75rem 0;
}
.perks-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.perk {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: var(--muted); white-space: nowrap;
}
.perk-icon { font-size: 1.3rem; line-height: 1; }
.perk strong { color: var(--text); }

/* ================================================================
   FOOD HERO BANNER  (reuses hbn- classes from home.php inline styles)
   Extra overrides for food palette
   ================================================================ */
.hbn-tag { background: var(--primary) !important; color: #fff !important; }
.hbn-arr:hover { background: var(--primary) !important; }
.hbn-dot.active { background: var(--primary) !important; }

/* ================================================================
   FEATURED CATEGORIES  (circular cards)
   ================================================================ */
.food-cats { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: .5rem; scrollbar-width: none; }
.food-cats::-webkit-scrollbar { display: none; }
.food-cat-card {
  display: flex; flex-direction: column; align-items: center;
  gap: .55rem; flex-shrink: 0; text-decoration: none;
  transition: transform .18s;
}
.food-cat-card:hover { transform: translateY(-3px); }
.food-cat-circle {
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; position: relative; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  transition: box-shadow .18s;
}
.food-cat-card:hover .food-cat-circle { box-shadow: 0 8px 28px rgba(249,115,22,.25); }
.food-cat-circle img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.food-cat-name { font-size: .8rem; font-weight: 800; color: var(--text); white-space: nowrap; }
.food-cat-count { font-size: .7rem; color: var(--muted); }

/* Grid fallback for fewer categories */
.food-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
}

/* ================================================================
   CATEGORY PRODUCT SLIDER
   ================================================================ */
.cat-slider-wrap { position: relative; overflow: hidden; }
.cat-slider-track { display: flex; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.cat-slider-slide { flex-shrink: 0; padding: 0 .5rem; }
.cat-slider-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #fff; border: 1.5px solid var(--border); color: var(--text-mid);
  border-radius: 50%; width: 38px; height: 38px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 5;
  transition: all .15s; box-shadow: var(--shadow);
}
.cat-slider-arr:hover { border-color: var(--primary); color: var(--primary); }
.cat-slider-prev { left: -8px; }
.cat-slider-next { right: -8px; }

/* ================================================================
   PROMO BANNER  (mid-page full-width)
   ================================================================ */
.promo-banner {
  position: relative; overflow: hidden;
  min-height: 220px; display: flex; align-items: center;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 45%, #dc2626 100%);
}
.promo-banner > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.promo-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(234,88,12,.88) 0%, rgba(234,88,12,.4) 60%, transparent 100%);
}
.promo-banner-body {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.5rem;
  width: 100%;
}
.promo-tag {
  display: inline-block; background: #fff; color: var(--primary);
  font-size: .72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: .22rem .65rem; border-radius: 4px; margin-bottom: .6rem;
}
.promo-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; color: #fff;
  line-height: 1.2; margin-bottom: .5rem; letter-spacing: -.02em;
}
.promo-sub {
  font-size: .92rem; color: rgba(255,255,255,.85);
  margin-bottom: 1.25rem; line-height: 1.6; max-width: 420px;
}

/* ================================================================
   NEWSLETTER SECTION
   ================================================================ */
.nl-section {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 60%, #dc2626 100%);
  padding: 3rem 1.5rem; text-align: center;
}
.nl-section h3 { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: .45rem; letter-spacing: -.025em; }
.nl-section p { color: rgba(255,255,255,.82); font-size: .9rem; margin-bottom: 1.5rem; }
.nl-form { display: flex; gap: .5rem; max-width: 460px; margin: 0 auto; }
.nl-form input {
  flex: 1; padding: .7rem 1.25rem; border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50px; font-size: .9rem; font-family: inherit; outline: none;
  background: rgba(255,255,255,.15); color: #fff;
}
.nl-form input::placeholder { color: rgba(255,255,255,.55); }
.nl-form input:focus { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.22); }
.nl-form button {
  padding: .7rem 1.5rem; background: #fff; color: var(--primary-d);
  border: none; border-radius: 50px; font-weight: 900; font-size: .9rem;
  cursor: pointer; font-family: inherit; white-space: nowrap; transition: background .18s;
}
.nl-form button:hover { background: #fff7ed; }

/* ================================================================
   TRUST BADGES
   ================================================================ */
.trust-strip {
  background: #fff; border-top: 1.5px solid var(--border);
  padding: 1.75rem 0;
}
.trust-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .65rem;
  font-size: .88rem; color: var(--muted);
}
.trust-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: .88rem; font-weight: 800; color: var(--text); margin-bottom: .05rem; }
.trust-text span { font-size: .78rem; }

/* ================================================================
   TESTIMONIALS SLIDER
   ================================================================ */
.tsec { background: #fffbf5; padding: 3.5rem 0; }
.tsl-outer { position: relative; overflow: hidden; }
.tsl-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.tsl-slide { flex-shrink: 0; width: calc(100% / 3); padding: 0 .65rem; box-sizing: border-box; }
.tcard {
  background: #fff; border: 1.5px solid #f0ebe0; border-radius: 20px;
  padding: 1.6rem 1.5rem; height: 100%; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 3px 14px rgba(0,0,0,.06);
}
.tcard-stars { display: flex; gap: 2px; }
.tcard-star { color: var(--primary); font-size: 1rem; }
.tcard-text { font-size: .9rem; color: #555; line-height: 1.7; flex: 1; }
.tcard-author { display: flex; align-items: center; gap: .75rem; margin-top: .25rem; }
.tcard-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid var(--border); }
.tcard-avatar-placeholder {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900; flex-shrink: 0;
}
.tcard-name { font-weight: 800; font-size: .9rem; color: var(--text); }
.tcard-role { font-size: .78rem; color: var(--muted); }
.tsl-dots { display: flex; justify-content: center; gap: .45rem; margin-top: 1.75rem; }
.tsl-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #e2e8f0;
  border: none; cursor: pointer; padding: 0; transition: background .2s, width .25s;
}
.tsl-dot.active { background: var(--primary); width: 22px; border-radius: 4px; }
.tsl-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: #fff; border: 1.5px solid var(--border); color: var(--muted);
  border-radius: 50%; width: 38px; height: 38px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 5;
  transition: all .15s; box-shadow: var(--shadow-sm);
}
.tsl-arr:hover { border-color: var(--primary); color: var(--primary); }
.tsl-arr-prev { left: -10px; } .tsl-arr-next { right: -10px; }
@media(max-width:900px){ .tsl-slide { width: 50%; } }
@media(max-width:560px){ .tsl-slide { width: 100%; } .tsl-arr { display: none; } }

/* ================================================================
   FOOTER
   ================================================================ */
footer { background: var(--footer-bg); color: rgba(255,255,255,.6); padding: 3.5rem 0 0; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand h3 { font-size: 1.5rem; font-weight: 900; color: #fff; letter-spacing: -.025em; margin-bottom: .55rem; }
.footer-brand p { font-size: .86rem; line-height: 1.65; margin-bottom: 1rem; }
.footer-social { display: flex; gap: .5rem; margin-top: .75rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; transition: all .18s;
}
.footer-social a:hover { background: var(--primary); color: #fff; }
.footer-col h5 { color: #fff; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { color: rgba(255,255,255,.52); font-size: .86rem; transition: color .18s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-pay { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .85rem; }
.footer-pay-icon { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 4px; padding: .25rem .6rem; font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.6); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.25rem 0; text-align: center; font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: #fff; }

/* ================================================================
   MOBILE DRAWER
   ================================================================ */
.mobile-nav-drawer { display: none; position: fixed; inset: 0; z-index: 300; }
.mobile-nav-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.mobile-nav-panel {
  position: absolute; left: 0; top: 0; bottom: 0; width: 290px;
  background: var(--footer-bg); overflow-y: auto; transform: translateX(-100%);
  transition: transform .28s ease; padding: 1.5rem;
}
.mobile-nav-drawer.open { display: block; }
.mobile-nav-drawer.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-panel a {
  display: block; padding: .8rem .5rem; border-bottom: 1px solid rgba(255,255,255,.07);
  font-weight: 700; color: color-mix(in srgb, var(--nav-text, #fff) 75%, transparent); font-size: .95rem;
}
.mobile-nav-panel a:hover { color: var(--primary); }
.mn-close { background: none; border: none; color: color-mix(in srgb, var(--nav-text, #fff) 60%, transparent); font-size: 1.3rem; cursor: pointer; }

/* ================================================================
   MISC UTILS
   ================================================================ */
.divider { height: 1.5px; background: var(--border); margin: 1.5rem 0; }
.card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); }
.card-header { padding: 1rem 1.25rem; border-bottom: 1.5px solid var(--border); font-weight: 700; font-size: .92rem; }
.card-body { padding: 1.25rem; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .product-grid     { grid-template-columns: repeat(3, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .navbar-inner     { grid-template-columns: auto 1fr auto; }
  .trust-inner      { gap: 1.5rem; }
  .perks-inner      { gap: 1.5rem; }
}
@media (max-width: 720px) {
  .product-grid     { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
  .nav-action .nav-label { display: none; }
  .sec              { padding: 2.25rem 0; }
}
@media (max-width: 560px) {
  .footer-grid      { grid-template-columns: 1fr; }
  .nl-form          { flex-direction: column; }
  .food-cats        { gap: .75rem; }
  .food-cat-circle  { width: 72px; height: 72px; font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .nav-hamburger    { display: flex; }
  .navbar-search    { display: none; }
  .product-grid     { gap: .6rem; }
  .pc-body          { padding: .65rem .7rem .7rem; }
  .trust-inner      { gap: 1rem; }
}
