/* =============================================================================
   Chef Choice — Main Stylesheet  v2.0
   Modern food-ordering UI (Swiggy/Zomato-style)
   ============================================================================= */

/* ── 1. Design Tokens ─────────────────────────────────────────────────────── */
:root {
  --clr-primary:      #FF6B35;
  --clr-primary-dk:   #E85A24;
  --clr-primary-lt:   #FFF0EB;
  --clr-gold:         #FFC107;
  --clr-gold-lt:      #FFF8E1;
  --clr-red:          #E53935;
  --clr-red-lt:       #FFEBEE;
  --clr-green:        #2ECC71;
  --clr-green-dk:     #27AE60;
  --clr-green-lt:     #E8F8F0;
  --clr-whatsapp:     #25D366;

  --clr-bg:           #F5F5F5;
  --clr-surface:      #FFFFFF;
  --clr-surface-2:    #FAFAFA;
  --clr-border:       #E8E8E8;
  --clr-border-lt:    #F0F0F0;

  --clr-text:         #1A1A2E;
  --clr-text-md:      #4A4A68;
  --clr-text-lt:      #8E8E93;
  --clr-text-inv:     #FFFFFF;

  --clr-hero-start:   #FF416C;
  --clr-hero-end:     #FF4B2B;

  --font-h:   'Playfair Display', Georgia, serif;
  --font-b:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;

  --sh-xs:  0 1px 3px rgba(0,0,0,.06);
  --sh-sm:  0 2px 8px rgba(0,0,0,.08);
  --sh-md:  0 4px 20px rgba(0,0,0,.10);
  --sh-lg:  0 8px 40px rgba(0,0,0,.14);
  --sh-card:0 2px 12px rgba(0,0,0,.07);

  --dur: .22s;
  --ease: cubic-bezier(.4,0,.2,1);

  --header-h: 72px;
  --container: 1280px;
  --pad: clamp(1rem, 3vw, 2rem);
}

/* ── 2. Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-b);
  font-size: 15px;
  line-height: 1.55;
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
p { margin-bottom: .875em; }
p:last-child { margin-bottom: 0; }

/* ── 3. Accessibility ─────────────────────────────────────────────────────── */
.screen-reader-text {
  clip: rect(1px,1px,1px,1px); position: absolute;
  height: 1px; width: 1px; overflow: hidden; white-space: nowrap;
}
.skip-link { position: absolute; top: -100%; left: 0; z-index: 99999;
  background: var(--clr-primary); color: #fff; padding: 8px 16px; }
.skip-link:focus { top: 0; }
a:focus-visible { outline: 2px solid var(--clr-primary); outline-offset: 3px; border-radius: var(--r-xs); }

/* ── 4. Layout ────────────────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--pad);
}
.section-pad    { padding-block: clamp(2.5rem,5vw,4rem); }
.section-pad-sm { padding-block: clamp(1.5rem,3vw,2.5rem); }

/* ── 5. Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.5rem;
  font-size: .875rem; font-weight: 600; line-height: 1;
  border-radius: var(--r-full); border: 2px solid transparent;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn--primary  { background: var(--clr-primary); color: #fff; border-color: var(--clr-primary); }
.btn--primary:hover { background: var(--clr-primary-dk); border-color: var(--clr-primary-dk); color: #fff; }
.btn--outline  { background: transparent; color: var(--clr-primary); border-color: var(--clr-primary); }
.btn--outline:hover { background: var(--clr-primary); color: #fff; }
.btn--white    { background: #fff; color: var(--clr-primary); border-color: #fff; }
.btn--white:hover { background: var(--clr-primary-lt); }
.btn--whatsapp { background: var(--clr-whatsapp); color: #fff; border-color: var(--clr-whatsapp); }
.btn--whatsapp:hover { background: #1DAA55; }
.btn--ghost    { background: transparent; color: var(--clr-text-lt); border-color: var(--clr-border); }
.btn--ghost:hover { background: var(--clr-bg); color: var(--clr-text); }
.btn--lg  { padding: .85rem 2rem; font-size: 1rem; }
.btn--sm  { padding: .45rem 1rem; font-size: .8125rem; }
.btn--xs  { padding: .3rem .7rem; font-size: .75rem; }
.btn--full { width: 100%; justify-content: center; }

/* Add to cart button (orange pill, icon) */
.cc-add-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .45rem 1rem; border-radius: var(--r-full);
  background: var(--clr-primary); color: #fff;
  font-size: .8125rem; font-weight: 700; border: none;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cc-add-btn:hover { background: var(--clr-primary-dk); }
.cc-add-btn:active { transform: scale(.95); }
.cc-add-btn--options { background: #fff; color: var(--clr-primary); border: 1.5px solid var(--clr-primary); }
.cc-add-btn--options:hover { background: var(--clr-primary); color: #fff; }

/* ── 6. Section Headers ───────────────────────────────────────────────────── */
.sec-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.sec-header__left { display: flex; align-items: center; gap: .75rem; }
.sec-header__bar {
  width: 5px; height: 28px;
  background: var(--clr-gold);
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.sec-header__title {
  font-family: var(--font-b);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700; color: var(--clr-text);
}
.sec-header__show-more {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; border-radius: var(--r-full);
  background: var(--clr-primary); color: #fff;
  font-size: .8125rem; font-weight: 700; border: none;
  transition: background var(--dur) var(--ease);
}
.sec-header__show-more:hover { background: var(--clr-primary-dk); }
.sec-header__arrows { display: flex; gap: .5rem; }
.sec-header__arrow {
  width: 32px; height: 32px; border-radius: var(--r-full);
  border: 1.5px solid var(--clr-border); background: var(--clr-surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-md); cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.sec-header__arrow:hover { background: var(--clr-primary); border-color: var(--clr-primary); color: #fff; }

/* ── 7. Badges ────────────────────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: .18em .55em;
  font-size: .6875rem; font-weight: 700; border-radius: var(--r-sm);
  line-height: 1.4; letter-spacing: .02em;
}
.badge--bestseller { background: var(--clr-primary); color: #fff; }
.badge--new        { background: var(--clr-green); color: #fff; }
.badge--sale       { background: var(--clr-red); color: #fff; }
.badge--hot        { background: var(--clr-gold); color: var(--clr-text); }
.badge--off        { background: var(--clr-red); color: #fff; }

/* Veg / Non-veg dot indicator */
.veg-dot, .nonveg-dot {
  width: 14px; height: 14px; border-radius: var(--r-xs);
  border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.veg-dot    { border-color: var(--clr-green); }
.veg-dot::after    { content:''; width:7px; height:7px; border-radius:50%; background:var(--clr-green); }
.nonveg-dot { border-color: var(--clr-red); }
.nonveg-dot::after { content:''; width:7px; height:7px; border-radius:50%; background:var(--clr-red); }

/* ── 8. HEADER (New Design) ───────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--clr-surface);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  height: var(--header-h);
}

/* Branding */
.site-branding { flex-shrink: 0; }
.site-title-link {
  display: flex; align-items: center; gap: .6rem; text-decoration: none;
}
.site-logo-icon {
  width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--clr-primary); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.site-logo-icon svg { color: #fff; }
.site-logo-text { display: flex; flex-direction: column; }
.site-title {
  font-family: var(--font-b); font-size: 1rem; font-weight: 800;
  color: var(--clr-primary); line-height: 1.1; letter-spacing: -.01em;
}
.site-subtitle {
  font-size: .6875rem; color: var(--clr-text-lt); font-weight: 500; letter-spacing: .01em;
}
.custom-logo { height: 50px; width: auto; }

/* Search Bar */
.header-search-wrap { position: relative; flex: 1; }
.header-search-form { display: flex; align-items: center; position: relative; }
.header-search-icon {
  position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
  color: var(--clr-text-lt); pointer-events: none;
  display: flex; align-items: center;
}
.header-search-input {
  width: 100%; padding: .7rem 1rem .7rem 2.75rem;
  border: 1.5px solid var(--clr-border); border-radius: var(--r-full);
  background: var(--clr-bg); font-size: .9375rem; outline: none;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.header-search-input:focus { border-color: var(--clr-primary); background: var(--clr-surface); }
.header-search-input::placeholder { color: var(--clr-text-lt); }
.header-search-btn {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  padding: .45rem 1rem; background: var(--clr-primary); color: #fff;
  border: none; border-radius: var(--r-full); font-size: .8125rem; font-weight: 600;
  transition: background var(--dur) var(--ease);
}
.header-search-btn:hover { background: var(--clr-primary-dk); }

/* Header Actions */
.site-header__actions { display: flex; align-items: center; gap: .25rem; flex-shrink: 0; }
.hdr-icon-btn {
  position: relative; width: 40px; height: 40px;
  border: none; background: transparent; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-md); transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.hdr-icon-btn:hover { background: var(--clr-primary-lt); color: var(--clr-primary); }
.hdr-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 17px; height: 17px; padding: 0 3px;
  background: var(--clr-primary); color: #fff;
  font-size: .6rem; font-weight: 800; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  line-height: 1; pointer-events: none;
  border: 2px solid var(--clr-surface);
}

/* Nav (inline tabs on desktop) */
.header-nav { display: flex; align-items: center; }
/* wp_nav_menu outputs <ul><li><a>; lay the list out horizontally */
.header-nav ul { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.header-nav li { list-style: none; position: relative; }
.header-nav a {
  display: block; white-space: nowrap;
  padding: .5rem .8rem; border-radius: var(--r-full);
  font-size: .9375rem; font-weight: 500; color: var(--clr-text-md);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.header-nav a:hover, .header-nav a.active,
.header-nav .current-menu-item > a,
.header-nav .current_page_item > a { color: var(--clr-primary); background: var(--clr-primary-lt); }
/* Sub-menus (dropdown) */
.header-nav ul ul {
  position: absolute; top: calc(100% + 6px); left: 0; flex-direction: column; align-items: stretch;
  min-width: 190px; background: var(--clr-surface); border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: .4rem;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: all var(--dur) var(--ease); z-index: 1000;
}
.header-nav li:hover > ul { opacity: 1; visibility: visible; transform: none; }

/* Hamburger */
.hamburger-btn {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; border: none; background: transparent;
  border-radius: var(--r-sm); padding: 10px; cursor: pointer;
}
.hamburger-line { display: block; width: 20px; height: 2px; background: var(--clr-text); border-radius: 2px; transition: transform var(--dur), opacity var(--dur); }
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-btn[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 9. Mobile Drawer (animated) ──────────────────────────────────────────── */
.mobile-nav { position: fixed; inset: 0; z-index: 9999; }
.mobile-nav[hidden] { display: none; }

/* Overlay fades in */
.mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .35s ease;
}
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }

/* Drawer slides in from the left */
.mobile-nav__drawer {
  position: absolute; inset: 0 auto 0 0; width: min(300px,85vw);
  background: var(--clr-surface); padding: 1.5rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: 1.25rem;
  box-shadow: var(--sh-lg);
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.is-open .mobile-nav__drawer { transform: translateX(0); }

.mobile-nav__close {
  align-self: flex-end; width: 34px; height: 34px;
  border: 1.5px solid var(--clr-border); border-radius: var(--r-md);
  background: transparent; display: flex; align-items: center; justify-content: center;
  color: var(--clr-text); cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.mobile-nav__close:hover { background: var(--clr-bg); transform: rotate(90deg); }

.mobile-nav__menu { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav__menu a {
  display: block; padding: .75rem 1rem; border-radius: var(--r-md);
  font-weight: 500; color: var(--clr-text);
  transition: background var(--dur), color var(--dur);
}
.mobile-nav__menu a:hover, .mobile-nav__menu .current-menu-item > a { background: var(--clr-primary-lt); color: var(--clr-primary); }
.mobile-nav__actions { display: flex; flex-direction: column; gap: .75rem; margin-top: auto; }

/* Staggered fade-in for drawer children (title, menu items, actions) */
.mobile-nav__drawer > *,
.mobile-nav__menu > li {
  opacity: 0; transform: translateX(-14px);
  transition: opacity .35s ease, transform .35s ease;
}
.mobile-nav.is-open .mobile-nav__drawer > *,
.mobile-nav.is-open .mobile-nav__menu > li { opacity: 1; transform: none; }
.mobile-nav.is-open .mobile-nav__drawer > *:nth-child(1) { transition-delay: .10s; }
.mobile-nav.is-open .mobile-nav__drawer > *:nth-child(2) { transition-delay: .16s; }
.mobile-nav.is-open .mobile-nav__drawer > *:nth-child(3) { transition-delay: .22s; }
.mobile-nav.is-open .mobile-nav__drawer > *:nth-child(4) { transition-delay: .28s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(1) { transition-delay: .24s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(2) { transition-delay: .30s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(3) { transition-delay: .36s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(4) { transition-delay: .42s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(5) { transition-delay: .48s; }
.mobile-nav.is-open .mobile-nav__menu > li:nth-child(6) { transition-delay: .54s; }

/* ── 10. HERO SECTION ─────────────────────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 1.25rem;
  padding-block: 1.25rem;
}

/* Left: Promo Slider */
.hero-promo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}
/* Slider track fills the promo; slides are stacked + crossfaded */
.hero-promo__slides { position: absolute; inset: 0; }
.hero-promo__slide {
  position: absolute; inset: 0;
  padding: 2rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  color: #fff; min-height: 320px;
  opacity: 0; visibility: hidden;
  transform: scale(1.04);
  transition: opacity .7s ease, transform .9s ease, visibility .7s;
}
.hero-promo__slide.is-active {
  opacity: 1; visibility: visible; z-index: 2;
  transform: scale(1);
}
.hero-promo__slide-inner { position: relative; z-index: 2; max-width: 340px; }

/* Content rise-in (staggered) — keyframe so it also plays on first page load */
.hero-promo__slide .hero-promo__slide-inner > * { opacity: 0; }
.hero-promo__slide.is-active .hero-promo__slide-inner > * { animation: heroRise .6s ease both; }
.hero-promo__slide.is-active .hero-promo__slide-inner > *:nth-child(1) { animation-delay: .15s; }
.hero-promo__slide.is-active .hero-promo__slide-inner > *:nth-child(2) { animation-delay: .28s; }
.hero-promo__slide.is-active .hero-promo__slide-inner > *:nth-child(3) { animation-delay: .41s; }
.hero-promo__slide.is-active .hero-promo__slide-inner > *:nth-child(4) { animation-delay: .54s; }
.hero-promo__slide.is-active .hero-promo__slide-inner > *:nth-child(5) { animation-delay: .67s; }
.hero-promo__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.2); backdrop-filter: blur(4px);
  color: #fff; font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .875rem; border-radius: var(--r-full);
  margin-bottom: 1rem; border: 1px solid rgba(255,255,255,.3);
}
.hero-promo__title {
  font-family: var(--font-b); font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: .5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.hero-promo__title span { color: var(--clr-gold); }
.hero-promo__sub { font-size: 1rem; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; }
.hero-promo__price {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  background: rgba(255,255,255,.15); border-radius: var(--r-md);
  padding: .5rem 1rem; margin-bottom: 1.5rem;
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.2);
}
.hero-promo__price-tag { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-promo__price-label { font-size: .75rem; color: rgba(255,255,255,.7); }
.hero-promo__cta { display: flex; gap: .75rem; flex-wrap: wrap; }

/* Promo image decoration */
.hero-promo__img {
  position: absolute; right: -20px; bottom: 0; top: 0;
  width: 55%; object-fit: contain; pointer-events: none;
  z-index: 1; filter: drop-shadow(-8px 8px 20px rgba(0,0,0,.3));
}

/* Slider dots */
.hero-promo__dots {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .5rem; z-index: 3;
}
.hero-promo__dot {
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: rgba(255,255,255,.5); border: none; transition: all var(--dur);
}
.hero-promo__dot.active { background: #fff; width: 20px; }

/* Slide arrows */
.hero-promo__prev, .hero-promo__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px; border-radius: var(--r-full);
  background: rgba(255,255,255,.25); border: 1.5px solid rgba(255,255,255,.4);
  color: #fff; z-index: 3; display: flex; align-items: center; justify-content: center;
  transition: background var(--dur); cursor: pointer; backdrop-filter: blur(4px);
}
.hero-promo__prev:hover, .hero-promo__next:hover { background: rgba(255,255,255,.45); }
.hero-promo__prev { left: 1rem; }
.hero-promo__next { right: 1rem; }

/* Right: Dish Discoveries */
.dish-discoveries {
  background: var(--clr-surface); border-radius: var(--r-xl);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem;
}
.dish-discoveries__title {
  font-size: 1rem; font-weight: 700; color: var(--clr-text); text-align: center;
}
.dish-discoveries__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
}
.disc-item {
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  text-decoration: none; padding: .5rem; border-radius: var(--r-md);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.disc-item:hover { background: var(--clr-primary-lt); transform: translateY(-2px); }
.disc-item__img {
  width: 56px; height: 56px; border-radius: var(--r-md);
  object-fit: cover; background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
}
.disc-item__img--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary-lt), var(--clr-gold-lt));
  font-size: 1.5rem;
}
.disc-item__label { font-size: .6875rem; font-weight: 600; color: var(--clr-text); text-align: center; }

/* ── 11. OUR MENU (Category Scroll) ──────────────────────────────────────── */
.our-menu-section { background: var(--clr-surface); padding-block: 1.75rem; }

.category-scroll-wrap { position: relative; }
.category-scroll {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: .5rem; scrollbar-width: none; -ms-overflow-style: none;
}
.category-scroll::-webkit-scrollbar { display: none; }

.cat-card {
  flex: none; width: 100px;
  display: flex; flex-direction: column; align-items: center; gap: .625rem;
  text-decoration: none; scroll-snap-align: start;
  transition: transform var(--dur) var(--ease);
}
.cat-card:hover { transform: translateY(-3px); }
.cat-card__img-wrap {
  width: 80px; height: 80px; border-radius: var(--r-lg);
  overflow: hidden; background: var(--clr-bg);
  border: 2px solid var(--clr-border);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.cat-card:hover .cat-card__img-wrap { border-color: var(--clr-primary); box-shadow: 0 0 0 3px var(--clr-primary-lt); }
.cat-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-card:hover .cat-card__img-wrap img { transform: scale(1.1); }
.cat-card__img-wrap--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary-lt), var(--clr-gold-lt));
  font-size: 2rem;
}
.cat-card__name { font-size: .75rem; font-weight: 600; color: var(--clr-text); text-align: center; line-height: 1.3; }

/* ── 12. PRODUCT CARD — Featured (Chef Choice Special) ───────────────────── */
.products-featured-scroll-wrap { position: relative; }
.products-featured-scroll {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: .5rem; scrollbar-width: none; -ms-overflow-style: none;
}
.products-featured-scroll::-webkit-scrollbar { display: none; }

.product-card-featured {
  flex: none; width: 235px; scroll-snap-align: start;
  background: var(--clr-surface); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-card);
  transition: transform var(--dur), box-shadow var(--dur);
  display: flex; flex-direction: column;
}
.product-card-featured:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.pcf__image-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--clr-bg);
}
.pcf__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card-featured:hover .pcf__image-wrap img { transform: scale(1.08); }
.pcf__image-wrap--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #FFF0EB, #FFF8E1);
  color: var(--clr-border); font-size: 3rem;
}

.pcf__image-top { position: absolute; top: .5rem; left: .5rem; right: .5rem; display: flex; justify-content: space-between; align-items: flex-start; }
.pcf__wish {
  width: 28px; height: 28px; border-radius: var(--r-full);
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  border: none; display: flex; align-items: center; justify-content: center;
  color: var(--clr-text-lt); transition: color var(--dur), background var(--dur);
  margin-left: auto;
}
.pcf__wish:hover { color: var(--clr-red); background: #fff; }
.pcf__wish.active { color: var(--clr-red); }

.pcf__rating {
  position: absolute; bottom: .5rem; left: .5rem;
  display: flex; align-items: center; gap: .25rem;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  color: #fff; font-size: .6875rem; font-weight: 700;
  padding: .2rem .5rem; border-radius: var(--r-full);
}
.pcf__rating svg { color: var(--clr-gold); }

.pcf__body { padding: .875rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.pcf__veg-row { display: flex; align-items: center; gap: .4rem; }
.pcf__name { font-size: .875rem; font-weight: 700; color: var(--clr-text); line-height: 1.3; flex: 1; }
.pcf__name a { color: inherit; }
.pcf__footer { display: flex; align-items: center; justify-content: space-between; gap: .5rem; margin-top: auto; }
.pcf__price-label { font-size: .65rem; color: var(--clr-text-lt); font-weight: 500; }
.pcf__price { font-size: 1rem; font-weight: 800; color: var(--clr-primary); }
.pcf__price del { font-size: .75rem; color: var(--clr-text-lt); font-weight: 400; }

/* ── 13. PRODUCT CARD — List (Pizza Mania / Most Popular) ────────────────── */
.products-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px,100%), 1fr));
  gap: 1rem;
}

.product-card-list {
  background: var(--clr-surface); border-radius: var(--r-lg);
  box-shadow: var(--sh-card); overflow: hidden;
  display: flex; align-items: stretch; gap: 0;
  transition: transform var(--dur), box-shadow var(--dur);
}
.product-card-list:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.pcl__image-wrap {
  position: relative; width: 135px; flex-shrink: 0;
  overflow: hidden; background: var(--clr-bg);
}
.pcl__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card-list:hover .pcl__image-wrap img { transform: scale(1.06); }
.pcl__image-wrap--placeholder {
  width: 135px; height: 130px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--clr-primary-lt), var(--clr-gold-lt));
  font-size: 2.5rem;
}
.pcl__badge {
  position: absolute; top: .5rem; left: .5rem;
  font-size: .6rem; font-weight: 800; letter-spacing: .02em;
  background: var(--clr-primary); color: #fff;
  padding: .15rem .45rem; border-radius: var(--r-xs);
}
.pcl__discount {
  position: absolute; bottom: .5rem; left: .5rem;
  font-size: .65rem; font-weight: 700;
  background: var(--clr-red); color: #fff;
  padding: .15rem .4rem; border-radius: var(--r-xs);
}

.pcl__body { flex: 1; padding: .875rem 1rem; display: flex; flex-direction: column; gap: .35rem; }
.pcl__top { display: flex; align-items: flex-start; justify-content: space-between; gap: .5rem; }
.pcl__meta { display: flex; align-items: center; gap: .5rem; }
.pcl__rating { display: flex; align-items: center; gap: .2rem; font-size: .75rem; font-weight: 600; color: var(--clr-text-md); }
.pcl__rating svg { color: var(--clr-gold); }
.pcl__wish-btn {
  width: 26px; height: 26px; border: none; background: transparent;
  color: var(--clr-text-lt); display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full); transition: color var(--dur), background var(--dur);
}
.pcl__wish-btn:hover { color: var(--clr-red); background: var(--clr-red-lt); }
.pcl__wish-btn.active { color: var(--clr-red); }
.pcl__cat { font-size: .6875rem; color: var(--clr-text-lt); font-weight: 500; }
.pcl__name { font-size: .9rem; font-weight: 700; color: var(--clr-text); line-height: 1.35; }
.pcl__name a { color: inherit; }
.pcl__name a:hover { color: var(--clr-primary); }
.pcl__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: .5rem; }
.pcl__price { font-size: 1rem; font-weight: 800; color: var(--clr-primary); }
.pcl__price del { font-size: .8rem; color: var(--clr-text-lt); font-weight: 400; margin-right: .3rem; }

/* ── 14. HOT DEALS Banner Scroll ──────────────────────────────────────────── */
.hot-deals-scroll {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: .5rem; scrollbar-width: none;
}
.hot-deals-scroll::-webkit-scrollbar { display: none; }
.deal-banner {
  flex: none; width: 200px; height: 160px; border-radius: var(--r-lg);
  overflow: hidden; scroll-snap-align: start; position: relative;
  box-shadow: var(--sh-sm); transition: transform var(--dur), box-shadow var(--dur);
}
.deal-banner:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.deal-banner img { width: 100%; height: 100%; object-fit: cover; }
.deal-banner--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: rgba(255,255,255,.15); font-size: 3rem;
}

/* ── 15. Front-page Sections ──────────────────────────────────────────────── */
.fp-section { background: var(--clr-surface); padding-block: 1.75rem; }
.fp-section + .fp-section { border-top: 8px solid var(--clr-bg); }

/* ── 16. WhatsApp FAB ─────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 800;
  width: 56px; height: 56px; border-radius: var(--r-full);
  background: var(--clr-whatsapp); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,.4);
  transition: transform var(--dur), box-shadow var(--dur), background var(--dur);
}
.whatsapp-fab:hover { transform: scale(1.1); background: #1DAA55; box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.whatsapp-fab:active { transform: scale(.95); }

/* ── 17. SINGLE PRODUCT PAGE — Chef Choice unique modern layout ──────────── */
.single-product-modern { padding-block: 1.5rem 3rem; }

/* Breadcrumbs */
.sp-breadcrumbs { font-size: .8125rem; color: var(--clr-text-lt); margin-bottom: 1.25rem; }
.sp-breadcrumbs a { color: var(--clr-text-lt); }
.sp-breadcrumbs a:hover { color: var(--clr-primary); }

/* Hero grid */
.sp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (max-width: 880px) { .sp-hero { grid-template-columns: 1fr; } }

/* ── Gallery column ── */
.sp-gallery-col { position: sticky; top: calc(var(--header-h) + 1rem); }
.sp-gallery-inner {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--clr-surface);
  box-shadow: var(--sh-md);
}
.sp-gallery-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 5;
  background: var(--clr-red); color: #fff;
  font-weight: 800; font-size: .8125rem;
  padding: .35rem .8rem; border-radius: var(--r-full);
  box-shadow: 0 4px 12px rgba(229,57,53,.4);
}
/* WC gallery inside our wrapper */
.sp-gallery-inner .woocommerce-product-gallery { margin: 0 !important; width: 100% !important; }
.sp-gallery-inner .woocommerce-product-gallery__wrapper { margin: 0; }
.sp-gallery-inner .woocommerce-product-gallery__image img { border-radius: 0; aspect-ratio: 1/1; object-fit: cover; }
.sp-gallery-inner .flex-control-thumbs {
  display: flex; gap: .5rem; padding: .75rem; margin: 0; list-style: none;
  background: var(--clr-surface);
}
.sp-gallery-inner .flex-control-thumbs li { width: 64px !important; }
.sp-gallery-inner .flex-control-thumbs img { border-radius: var(--r-sm); border: 2px solid transparent; cursor: pointer; }
.sp-gallery-inner .flex-control-thumbs img.flex-active { border-color: var(--clr-primary); }
.sp-gallery-inner .woocommerce-product-gallery__trigger { z-index: 6; }

/* ── Summary column ── */
.sp-summary-col { min-width: 0; }
.sp-summary-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--sh-card);
  display: flex; flex-direction: column; gap: 1rem;
}

.sp-eyebrow-row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.sp-cat-link {
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--clr-primary); background: var(--clr-primary-lt);
  padding: .3rem .75rem; border-radius: var(--r-full);
}
.sp-cat-link:hover { background: var(--clr-primary); color: #fff; }
.sp-badges { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; }
.sp-vegtag { display: inline-flex; align-items: center; gap: .3rem; font-size: .7rem; font-weight: 700; padding: .2rem .5rem; border-radius: var(--r-sm); }
.sp-vegtag--veg { background: var(--clr-green-lt); color: var(--clr-green-dk); }
.sp-vegtag--nonveg { background: var(--clr-red-lt); color: var(--clr-red); }

.sp-title {
  font-family: var(--font-b); font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  font-weight: 800; color: var(--clr-text); line-height: 1.15; margin: 0;
}

.sp-meta-row { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; }
.sp-rating { display: flex; align-items: center; gap: .4rem; }
.sp-rating__stars { display: flex; gap: 1px; }
.sp-rating__star { color: var(--clr-gold); }
.sp-rating__star.empty { color: #E0E0E0; }
.sp-rating__count { font-size: .8125rem; color: var(--clr-text-lt); font-weight: 500; }
.sp-dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--clr-border); }
.sp-prep-inline { font-size: .8125rem; color: var(--clr-text-md); font-weight: 600; }

.sp-shortdesc { font-size: .9375rem; color: var(--clr-text-md); line-height: 1.6; }
.sp-shortdesc p { margin: 0; }

/* Price box */
.sp-price-box {
  background: linear-gradient(135deg, var(--clr-primary-lt), #FFF8F0);
  border-radius: var(--r-lg); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  border: 1px dashed #FFD0BB;
}
.sp-price { font-size: 1.875rem; font-weight: 900; color: var(--clr-primary); line-height: 1; }
.sp-price del { font-size: 1.125rem; color: var(--clr-text-lt); font-weight: 400; margin-right: .4rem; }
.sp-price ins { text-decoration: none; }
.sp-price-save { font-size: .8125rem; font-weight: 700; color: var(--clr-green-dk); background: var(--clr-green-lt); padding: .3rem .7rem; border-radius: var(--r-full); }

/* ACF chips */
.sp-acf-strip { display: flex; flex-wrap: wrap; gap: .5rem; }
.sp-acf-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .8rem; border-radius: var(--r-full);
  font-size: .8125rem; font-weight: 600;
  background: var(--clr-bg); color: var(--clr-text-md);
  border: 1.5px solid var(--clr-border);
}
.sp-acf-chip--spice   { background: #FEF3C7; border-color: #FCD34D; color: #92400E; }
.sp-acf-chip--spice.hot, .sp-acf-chip--spice.extra_hot { background: #FEE2E2; border-color: #FECACA; color: #991B1B; }
.sp-acf-chip--dietary { background: var(--clr-green-lt); border-color: #86EFAC; color: #166534; }
.sp-acf-chip--cal     { background: #F5F3FF; border-color: #DDD6FE; color: #5B21B6; }

/* Allergens */
.sp-allergens {
  background: #FFFBEB; border: 1.5px solid #FCD34D;
  border-radius: var(--r-md); padding: .7rem 1rem;
  font-size: .85rem; color: #92400E;
}
.sp-allergens strong { color: var(--clr-text); }

/* Cart zone — style the WC add-to-cart form */
.sp-cart-zone { margin-top: .25rem; }
.sp-cart-zone form.cart {
  display: flex; align-items: stretch; gap: .75rem; flex-wrap: wrap; margin: 0 0 .25rem;
}
.sp-cart-zone .quantity {
  display: flex !important; align-items: center;
  border: 2px solid var(--clr-border); border-radius: var(--r-full);
  overflow: hidden; background: var(--clr-surface); height: 50px;
}
.sp-cart-zone .quantity .qty {
  width: 64px; height: 46px; border: none; text-align: center;
  font-size: 1rem; font-weight: 700; color: var(--clr-text); background: transparent; outline: none;
  -moz-appearance: textfield;
}
.sp-cart-zone .quantity .qty::-webkit-inner-spin-button,
.sp-cart-zone .quantity .qty::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.sp-cart-zone .single_add_to_cart_button {
  flex: 1; min-width: 200px;
  display: inline-flex !important; align-items: center; justify-content: center; gap: .5rem;
  padding: 0 2rem !important; height: 50px;
  background: var(--clr-primary) !important; color: #fff !important;
  border: none !important; border-radius: var(--r-full) !important;
  font-size: 1rem !important; font-weight: 800 !important; cursor: pointer;
  box-shadow: 0 6px 18px rgba(255,107,53,.32) !important;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease !important;
}
.sp-cart-zone .single_add_to_cart_button:hover { background: var(--clr-primary-dk) !important; box-shadow: 0 8px 24px rgba(255,107,53,.42) !important; }
.sp-cart-zone .single_add_to_cart_button:active { transform: scale(.98); }

/* Variations table */
.sp-cart-zone table.variations { width: 100%; border-collapse: collapse; margin-bottom: .75rem; }
.sp-cart-zone table.variations td { padding: .35rem 0; vertical-align: middle; }
.sp-cart-zone table.variations td.label { font-weight: 700; font-size: .875rem; width: 90px; color: var(--clr-text); }
.sp-cart-zone table.variations select {
  width: 100%; padding: .6rem 2.5rem .6rem .875rem;
  border: 1.5px solid var(--clr-border); border-radius: var(--r-md);
  font-size: .9375rem; background: var(--clr-surface); outline: none;
}
.sp-cart-zone table.variations select:focus { border-color: var(--clr-primary); }
.sp-cart-zone .woocommerce-variation-price .price { font-size: 1.5rem; font-weight: 900; color: var(--clr-primary); }
.sp-cart-zone .reset_variations { font-size: .8rem; color: var(--clr-text-lt); margin-left: .5rem; }

/* WhatsApp button */
.sp-wa-btn {
  width: 100%; padding: .8rem; border-radius: var(--r-full);
  background: transparent; border: 2px solid var(--clr-whatsapp);
  color: var(--clr-whatsapp); font-size: .9375rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: all var(--dur); cursor: pointer;
}
.sp-wa-btn:hover { background: var(--clr-whatsapp); color: #fff; }

/* Trust badges */
.sp-trust {
  display: flex; gap: 1rem; flex-wrap: wrap;
  padding: 1rem 0 .25rem; border-top: 1px solid var(--clr-border-lt); margin-top: .25rem;
}
.sp-trust__item { display: flex; align-items: center; gap: .45rem; font-size: .8125rem; font-weight: 600; color: var(--clr-text-md); }
.sp-trust__icon { font-size: 1.1rem; }

/* Product meta (SKU/cat/tags) */
.sp-product-meta { font-size: .8125rem; color: var(--clr-text-lt); }
.sp-product-meta .sku_wrapper, .sp-product-meta .posted_in, .sp-product-meta .tagged_as { display: block; margin-top: .25rem; }
.sp-product-meta a { color: var(--clr-text-md); }
.sp-product-meta a:hover { color: var(--clr-primary); }

/* ── Tabs ── */
.sp-tabs {
  background: var(--clr-surface); border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-xl); overflow: hidden; margin-bottom: 2.5rem;
}
.sp-tabs__nav { display: flex; gap: 0; overflow-x: auto; border-bottom: 1px solid var(--clr-border); background: var(--clr-surface-2); }
.sp-tab-btn {
  padding: 1rem 1.5rem; border: none; background: transparent;
  font-size: .9375rem; font-weight: 700; color: var(--clr-text-lt);
  border-bottom: 3px solid transparent; white-space: nowrap;
  transition: color var(--dur), border-color var(--dur), background var(--dur); cursor: pointer;
}
.sp-tab-btn.active { color: var(--clr-primary); border-bottom-color: var(--clr-primary); background: var(--clr-surface); }
.sp-tab-btn:hover { color: var(--clr-primary); }
.sp-tab-panel { padding: 1.75rem; display: none; }
.sp-tab-panel.active { display: block; }
.sp-tab-panel p { line-height: 1.75; color: var(--clr-text-md); }
.sp-muted { color: var(--clr-text-lt); }

.sp-info-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.sp-info-table th { text-align: left; font-weight: 600; color: var(--clr-text-lt); padding: .7rem 1rem .7rem 0; border-bottom: 1px solid var(--clr-border-lt); width: 38%; vertical-align: top; }
.sp-info-table td { padding: .7rem 0; border-bottom: 1px solid var(--clr-border-lt); font-weight: 600; color: var(--clr-text); }
.sp-info-table .sp-allergen-cell { color: var(--clr-red); }
.sp-info-table tr:last-child th, .sp-info-table tr:last-child td { border-bottom: none; }

/* ── Related & Recently Viewed sections ── */
.sp-related-section, .sp-recent-section { margin-bottom: 2.5rem; }

/* ── 18. General Content ──────────────────────────────────────────────────── */
.content-wrap { padding-block: clamp(2rem,5vw,3.5rem); }
.content-wrap--narrow { max-width: 800px; margin-inline: auto; }
.page-header { margin-bottom: 2rem; }
.page-title { font-size: clamp(1.5rem,4vw,2.25rem); font-weight: 800; }
.entry-title { font-size: clamp(1.5rem,4vw,2.25rem); font-weight: 800; margin-bottom: 1.5rem; }
.entry-content { line-height: 1.75; color: var(--clr-text-md); }
.entry-content h2 { font-size: 1.5rem; margin: 1.75em 0 .75em; color: var(--clr-text); }
.entry-content h3 { font-size: 1.25rem; margin: 1.5em 0 .625em; color: var(--clr-text); }
.entry-content p  { margin-bottom: 1.25em; }
.entry-content ul, .entry-content ol { padding-left: 1.5em; margin-bottom: 1.25em; }
.entry-content ul li { list-style: disc; margin-bottom: .375em; }
.entry-content ol li { list-style: decimal; margin-bottom: .375em; }
.entry-content a { color: var(--clr-primary); text-decoration: underline; }
.entry-featured-image { margin-bottom: 2rem; border-radius: var(--r-xl); overflow: hidden; }
.entry-thumbnail { width: 100%; height: auto; }

/* 404 */
.error-404 { padding-block: 6rem; text-align: center; }
.error-404__number { font-size: clamp(5rem,15vw,9rem); font-weight: 900; color: var(--clr-border); line-height: 1; }
.error-404__title { font-size: 1.75rem; font-weight: 800; margin-bottom: .75rem; }
.error-404__text { color: var(--clr-text-lt); margin-bottom: 2rem; }
.error-404__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Posts grid */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px,100%),1fr)); gap: 1.25rem; }
.post-card { background: var(--clr-surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-card); display: flex; flex-direction: column; }
.post-card__image-link { display: block; aspect-ratio: 16/9; overflow: hidden; }
.post-card__image { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card__image-link:hover .post-card__image { transform: scale(1.05); }
.post-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.post-card__title { font-size: 1rem; font-weight: 700; }
.post-card__title a { color: var(--clr-text); }
.post-card__title a:hover { color: var(--clr-primary); }
.post-card__meta { font-size: .8rem; color: var(--clr-text-lt); }
.post-card__excerpt { font-size: .875rem; color: var(--clr-text-md); flex: 1; }

/* No results */
.no-results, .cart-empty-state { text-align: center; padding: 4rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }

/* ── 18b. PAGE HERO (Contact / About) ─────────────────────────────────────── */
.page-hero {
  position: relative; text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, var(--clr-primary-lt), #FFF8F0);
  border-bottom: 1px solid var(--clr-border-lt);
}
.page-hero__eyebrow { display: inline-block; font-size: .8125rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--clr-primary); margin-bottom: .5rem; }
.page-hero__title { font-size: clamp(1.875rem, 5vw, 3rem); font-weight: 900; margin: 0 0 .5rem; }
.page-hero__sub { font-size: 1.05rem; color: var(--clr-text-lt); max-width: 600px; margin: 0 auto; }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info__item { display: flex; gap: .9rem; background: var(--clr-surface); border: 1px solid var(--clr-border-lt); border-radius: var(--r-lg); padding: 1.1rem 1.25rem; box-shadow: var(--sh-card); }
.contact-info__ico { font-size: 1.5rem; flex-shrink: 0; }
.contact-info__item h3 { font-size: .95rem; font-weight: 800; margin: 0 0 .25rem; }
.contact-info__item p { font-size: .9rem; color: var(--clr-text-md); margin: 0; line-height: 1.5; }
.contact-info__item a { color: var(--clr-text-md); }
.contact-info__item a:hover { color: var(--clr-primary); }
.contact-hours { display: flex; flex-direction: column; gap: .3rem; }
.contact-hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; color: var(--clr-text-md); }
.contact-hours strong { color: var(--clr-text); }
.contact-info__cta { display: flex; flex-direction: column; gap: .75rem; margin-top: .25rem; }
.contact-social { display: flex; gap: .6rem; }
.contact-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-full); background: var(--clr-bg); color: var(--clr-text-md); transition: background .2s, color .2s; }
.contact-social a:hover { background: var(--clr-primary); color: #fff; }
.contact-social a svg { fill: currentColor; }

.contact-form-wrap { background: var(--clr-surface); border: 1px solid var(--clr-border-lt); border-radius: var(--r-xl); padding: clamp(1.5rem, 4vw, 2.25rem); box-shadow: var(--sh-card); }
.contact-form-wrap__title { font-size: 1.4rem; font-weight: 800; margin: 0 0 1.25rem; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 480px) { .contact-form__row { grid-template-columns: 1fr; } }
.contact-field { margin-bottom: 1rem; }
.contact-field label { display: block; font-size: .8125rem; font-weight: 600; margin-bottom: .35rem; }
.contact-field input, .contact-field textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md); font-size: .9375rem; background: var(--clr-bg);
  outline: none; transition: border-color .2s, background .2s; font-family: inherit;
}
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--clr-primary); background: var(--clr-surface); box-shadow: 0 0 0 3px rgba(255,107,53,.12); }
.contact-field textarea { resize: vertical; }
.cc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-alert { padding: .9rem 1.1rem; border-radius: var(--r-md); font-size: .9rem; margin-bottom: 1.25rem; }
.contact-alert--ok { background: var(--clr-green-lt); color: var(--clr-green-dk); border: 1px solid #A7F3D0; }
.contact-alert--err { background: var(--clr-red-lt); color: var(--clr-red); border: 1px solid #FECACA; }
.contact-extra { margin-top: 2.5rem; max-width: 760px; }
.contact-map { margin-top: clamp(1.5rem, 4vw, 2.5rem); line-height: 0; }
.contact-map iframe { display: block; width: 100%; filter: grayscale(.1); }

/* ── About ────────────────────────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 3.5rem); align-items: center; }
@media (max-width: 768px) { .about-story { grid-template-columns: 1fr; } }
.about-story__media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.about-story__text h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; margin: .25rem 0 1rem; }
.about-story__text .btn { margin-top: 1rem; }

.about-stats { background: var(--clr-bg-dark); padding: clamp(2rem, 5vw, 3rem) 0; }
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
@media (max-width: 600px) { .about-stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; } }
.about-stat { display: flex; flex-direction: column; gap: .25rem; }
.about-stat__num { font-family: var(--font-h); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--clr-gold); line-height: 1; }
.about-stat__label { font-size: .85rem; color: rgba(255,255,255,.7); font-weight: 500; }

.about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.about-feature { background: var(--clr-surface); border: 1px solid var(--clr-border-lt); border-radius: var(--r-xl); padding: 1.75rem 1.5rem; text-align: center; box-shadow: var(--sh-card); transition: transform .2s, box-shadow .2s; }
.about-feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.about-feature__ico { width: 60px; height: 60px; margin: 0 auto 1rem; border-radius: var(--r-full); background: var(--clr-primary-lt); display: flex; align-items: center; justify-content: center; }
.about-feature__ico .dashicons { font-size: 1.75rem; width: 1.75rem; height: 1.75rem; color: var(--clr-primary); }
.about-feature__ico--emoji { font-size: 1.75rem; }
.about-feature h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 .4rem; }
.about-feature p { font-size: .9rem; color: var(--clr-text-lt); margin: 0; line-height: 1.55; }

.about-cta { background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-primary-dk) 100%); color: #fff; text-align: center; padding: clamp(2.5rem, 6vw, 4rem) 0; }
.about-cta h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; margin: 0 0 .6rem; }
.about-cta p { color: rgba(255,255,255,.88); font-size: 1.05rem; margin: 0 0 1.75rem; }
.about-cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* ── 18c. OFFERS PAGE ─────────────────────────────────────────────────────── */
.offers-hero-section { padding-block: clamp(1.75rem, 4vw, 2.75rem); }

/* Hero combo slider */
.offers-hero {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: clamp(320px, 42vw, 460px);
  box-shadow: var(--sh-lg);
  background: var(--clr-bg-dark);
}
.offers-hero__track { position: absolute; inset: 0; }
.offers-hero__slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  padding: clamp(1.5rem, 5vw, 3.5rem);
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden; transform: scale(1.05);
  transition: opacity .7s ease, transform .9s ease, visibility .7s;
}
.offers-hero__slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 2; }
.offers-hero__content { max-width: 520px; color: #fff; }
.offers-hero__content > * { opacity: 0; }
.offers-hero__slide.is-active .offers-hero__content > * { animation: heroRise .6s ease both; }
.offers-hero__slide.is-active .offers-hero__content > *:nth-child(1){ animation-delay:.12s }
.offers-hero__slide.is-active .offers-hero__content > *:nth-child(2){ animation-delay:.24s }
.offers-hero__slide.is-active .offers-hero__content > *:nth-child(3){ animation-delay:.36s }
.offers-hero__slide.is-active .offers-hero__content > *:nth-child(4){ animation-delay:.48s }
.offers-hero__slide.is-active .offers-hero__content > *:nth-child(5){ animation-delay:.60s }
.offers-hero__badge {
  display: inline-block; background: var(--clr-gold); color: var(--clr-text);
  font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: var(--r-full); margin-bottom: 1rem;
}
.offers-hero__title { font-family: var(--font-b); font-size: clamp(1.75rem, 4.5vw, 3rem); font-weight: 900; color: #fff; line-height: 1.08; margin: 0 0 .5rem; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.offers-hero__sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.9); margin: 0 0 1.25rem; }
.offers-hero__price { display: flex; align-items: baseline; gap: .75rem; margin-bottom: 1.5rem; }
.offers-hero__price-now { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; color: var(--clr-gold); }
.offers-hero__price-old { font-size: 1.2rem; color: rgba(255,255,255,.6); text-decoration: line-through; }

.offers-hero__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: var(--r-full);
  background: rgba(255,255,255,.2); border: 1.5px solid rgba(255,255,255,.4); color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  backdrop-filter: blur(4px); transition: background .2s;
}
.offers-hero__nav:hover { background: rgba(255,255,255,.4); }
.offers-hero__prev { left: 1rem; }
.offers-hero__next { right: 1rem; }
.offers-hero__dots { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: .5rem; }
.offers-hero__dot { width: 9px; height: 9px; border-radius: var(--r-full); background: rgba(255,255,255,.5); border: none; cursor: pointer; transition: all .25s; padding: 0; }
.offers-hero__dot.active { background: #fff; width: 24px; }

/* Other offers grid */
.offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); gap: 1.25rem; }
.offer-card {
  display: flex; flex-direction: column;
  background: var(--clr-surface); border: 1px solid var(--clr-border-lt);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-card);
  transition: transform .22s ease, box-shadow .22s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.offer-card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--clr-bg); }
.offer-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.offer-card:hover .offer-card__media img { transform: scale(1.06); }
.offer-card__media--ph { display: flex; align-items: center; justify-content: center; font-size: 3rem; background: linear-gradient(135deg, var(--clr-primary-lt), var(--clr-gold-lt)); }
.offer-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--clr-red); color: #fff; font-size: .75rem; font-weight: 800;
  padding: .3rem .7rem; border-radius: var(--r-full); box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.offer-card__body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.offer-card__title { font-size: 1.1rem; font-weight: 800; margin: 0; }
.offer-card__desc { font-size: .9rem; color: var(--clr-text-lt); margin: 0; line-height: 1.55; flex: 1; }
.offer-card__footer { display: flex; align-items: center; justify-content: space-between; gap: .75rem; margin-top: .5rem; flex-wrap: wrap; }
.offer-card__code {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .8rem; font-weight: 800; letter-spacing: .03em;
  color: var(--clr-primary); background: var(--clr-primary-lt);
  border: 1px dashed var(--clr-primary); padding: .3rem .6rem; border-radius: var(--r-sm);
}

.offers-empty { text-align: center; padding: 3rem 1.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.offers-empty__ico { font-size: 3rem; }
.offers-empty p { color: var(--clr-text-lt); margin: 0; }

@media (max-width: 600px) { .offers-hero__nav { display: none; } }

/* ── 19. FOOTER ───────────────────────────────────────────────────────────── */
.site-footer { background: #1A1A2E; color: rgba(255,255,255,.75); }
.footer-widgets { padding: clamp(2.5rem,5vw,4rem) 0; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-widgets__grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1.5fr; gap: clamp(1.5rem,4vw,3rem); }
@media (max-width: 900px) { .footer-widgets__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-widgets__grid { grid-template-columns: 1fr; } }
.footer-col__title { font-size: .8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1.25rem; }
.footer-site-name { font-family: var(--font-b); font-size: 1.375rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
.footer-tagline { font-size: .8125rem; color: rgba(255,255,255,.5); margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .625rem; margin-top: .25rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: var(--r-sm); color: rgba(255,255,255,.6); transition: background var(--dur), color var(--dur); }
.footer-social a:hover { background: var(--clr-primary); color: #fff; }
.footer-social a svg { fill: currentColor; }
.footer-nav { display: flex; flex-direction: column; gap: .375rem; }
.footer-nav a { color: rgba(255,255,255,.6); font-size: .875rem; padding: .2rem 0; transition: color var(--dur); }
.footer-nav a:hover { color: #fff; }
.opening-hours { display: flex; flex-direction: column; gap: .5rem; }
.opening-hours__row { display: flex; justify-content: space-between; gap: 1rem; font-size: .8125rem; color: rgba(255,255,255,.6); padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.opening-hours__row.is-closed .opening-hours__time { color: var(--clr-red); font-style: italic; }
.opening-hours__day { font-weight: 600; color: rgba(255,255,255,.85); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-contact li svg { fill: var(--clr-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: #fff; }
.footer-bottom { padding: 1.125rem 0; background: rgba(0,0,0,.3); }
.footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.footer-copyright, .footer-powered { font-size: .75rem; color: rgba(255,255,255,.4); margin: 0; }
.footer-copyright a, .footer-powered a { color: rgba(255,255,255,.6); }
.footer-copyright a:hover, .footer-powered a:hover { color: #fff; }

/* ── 20. RESPONSIVE ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger-btn { display: flex; }
  .hero-split { grid-template-columns: 1fr; }
  .dish-discoveries { display: none; }
}
@media (max-width: 768px) {
  :root { --header-h: 108px; } /* approx two-row header height for sticky offsets */

  /* Two-row mobile header: [logo | actions] then full-width search below */
  .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "search search";
    align-items: center;
    column-gap: .75rem;
    row-gap: .6rem;
    height: auto;
    padding-block: .6rem;
  }
  .site-branding       { grid-area: brand; min-width: 0; }
  .site-header__actions{ grid-area: actions; justify-self: end; }
  .header-search-wrap  { grid-area: search; width: 100%; }

  /* Trim the logo so it never overpowers the row */
  .site-title    { font-size: .95rem; line-height: 1.15; }
  .site-subtitle { display: none; }          /* hide tagline on mobile */
  .site-logo-icon{ width: 40px; height: 40px; }
  .custom-logo   { height: 40px; }

  /* Compact action icons */
  .site-header__actions { gap: .1rem; }
  .hdr-icon-btn { width: 38px; height: 38px; }

  .whatsapp-fab { width: 50px; height: 50px; bottom: 1.25rem; right: 1.25rem; }
  .products-list-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  /* Keep the title on one line, ellipsis if needed */
  .site-title { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 46vw; }
  .header-search-input { font-size: .875rem; padding-block: .6rem; }

  .hero-promo { min-height: 260px; }
  .hero-promo__slide { padding: 1.5rem; }
  .hero-promo__title { font-size: 1.625rem; }
  .dish-discoveries__grid { grid-template-columns: repeat(3,1fr); }
}

/* ── 21. Animations ───────────────────────────────────────────────────────── */
@keyframes fadeSlideIn { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroRise { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
.reveal { animation: fadeSlideIn .5s ease both; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration:.01ms!important; transition-duration:.01ms!important; } }

/* ── 13b. HOME OFFERS BANNER (below Our Menu) ────────────────────────────── */
.home-offers-section { padding-block: .25rem 1.5rem; }
.home-offers-banner {
  position: relative; display: flex; align-items: center; gap: 1.25rem;
  background: linear-gradient(100deg, var(--clr-primary) 0%, var(--clr-red) 60%, var(--clr-primary-dk) 130%);
  border-radius: var(--r-xl); padding: 1.5rem 1.75rem;
  color: #fff; text-decoration: none; overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--dur), box-shadow var(--dur);
}
.home-offers-banner:hover { transform: translateY(-2px); box-shadow: var(--sh-lg); color: #fff; }
.home-offers-banner::after {
  content: ""; position: absolute; top: -60%; right: -5%;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.08); pointer-events: none;
}
.home-offers-banner__deco {
  font-size: 2.75rem; line-height: 1; flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}
.home-offers-banner__text { flex: 1; min-width: 0; }
.home-offers-banner__badge {
  display: inline-block; background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: var(--r-full); margin-bottom: .4rem;
}
.home-offers-banner__title { font-size: clamp(1.05rem, 2.4vw, 1.5rem); font-weight: 800; line-height: 1.2; color: #fff; }
.home-offers-banner__sub { font-size: .8rem; opacity: .9; margin-top: .25rem; }
.home-offers-banner__cta { display: flex; flex-direction: column; align-items: flex-end; gap: .5rem; flex-shrink: 0; position: relative; z-index: 1; }
.home-offers-banner__price { font-size: 1.15rem; font-weight: 800; }
.home-offers-banner__price del { font-size: .8rem; font-weight: 500; opacity: .75; margin-left: .35rem; }
@media (max-width: 640px) {
  .home-offers-banner { flex-direction: column; align-items: flex-start; padding: 1.25rem; }
  .home-offers-banner__deco { position: absolute; top: 1rem; right: 1rem; font-size: 2rem; }
  .home-offers-banner__cta { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
}
