/* ═══════════════════════════════════════════════════════════════
   FLAMEZ CHICKEN — Design System & Homepage
   Version: 4.0 — Premium, WooCommerce-Ready
   ═══════════════════════════════════════════════════════════════ */

:root {
  --flamez-red: #d62918;
  --flamez-red-dark: #a81e10;
  --flamez-red-light: #ffeae7;
  --flamez-amber: #f59500;
  --flamez-amber-light: #ffb800;
  --flamez-amber-pale: #fff7e0;

  --bg: #ffffff;
  --surface: #fff8f4;
  --surface-warm: #fff0e6;
  --border: #edded4;
  --text: #1c1408;
  --text-secondary: #3d2e22;
  --muted: #332f2b;
  --white: #ffffff;

  --font-display: "Oswald", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-normal: 1rem;
  --text-base: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-3xl: 2.5rem;
  --text-4xl: 3.5rem;
  --text-5xl: 5rem;
  --text-6xl: 6.5rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(28, 20, 8, 0.05);
  --shadow-md: 0 4px 12px rgba(28, 20, 8, 0.08);
  --shadow-lg: 0 12px 32px rgba(28, 20, 8, 0.12);
  --shadow-xl: 0 24px 60px rgba(28, 20, 8, 0.16);
  --shadow-red: 0 8px 24px rgba(214, 41, 24, 0.22);
  --shadow-amber: 0 8px 24px rgba(245, 149, 0, 0.22);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1280px;
  --container-padding: 1.25rem;

  /* Header layout heights */
  /* --topbar-height: 36px; */
  --nav-height: 92px;
  --header-total: calc(var(--nav-height));
}

@media (min-width: 768px) {
  :root {
    --container-padding: 2rem;
    --text-base: 1.25rem;
    --nav-height: 100px;
    --header-total: calc(var(--nav-height));
  }
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-total);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  position: relative;
  z-index: 1;
}
.section {
  padding-block: var(--space-12);
} /* mobile: 4rem */
@media (min-width: 640px) {
  .section {
    padding-block: var(--space-20);
  }
} /* tablet: 6rem */
@media (min-width: 768px) {
  .section {
    padding-block: var(--space-20);
  }
} /* desktop: 8rem */
.section-bg {
  background: var(--surface);
}
.hidden {
  display: none !important;
}

/* ── Typography ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flamez-red);
  border-bottom: 2px solid var(--flamez-amber);
  padding-bottom: var(--space-1);
  margin-bottom: var(--space-4);
}
.heading-2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, var(--text-3xl));
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.heading-3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, var(--text-xl));
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.highlight {
  color: var(--flamez-red);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-md);
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--flamez-red);
  color: var(--white);
  /* box-shadow: var(--shadow-red); */
}
.btn-primary:hover {
  background: var(--flamez-red-dark);
  /* transform: translateY(-2px); */
  /* box-shadow: 0 12px 32px rgba(214, 41, 24, 0.22); */
}
.btn-secondary {
  background: var(--flamez-amber);
  color: var(--white);
  /* box-shadow: var(--shadow-amber); */
}
.btn-secondary:hover {
  background: #e08800;
  /* transform: translateY(-2px); */
}
.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  /* transform: translateY(-2px); */
}
.btn-outline-dark {
  border: 2px solid var(--flamez-red);
  color: var(--flamez-red);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--flamez-red);
  color: var(--white);
  /* transform: translateY(-2px); */
}

/* ── Reveal Animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════════ */
.nav-top-bar {
  background: var(--text);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.top-bar-locations {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.top-bar-loc {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-bar-loc i {
  font-size: 0.6rem;
}
.top-bar-loc:hover,
.top-bar-loc.active-loc {
  color: var(--flamez-amber-light);
}
.top-bar-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.75rem;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.top-bar-phone {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-bar-phone:hover {
  color: var(--flamez-amber-light);
}
.top-bar-hours {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .top-bar-locations {
    display: none;
  }
  .top-bar-hours {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION — Premium Fixed Header
   ═══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow:
    0 1px 0 var(--border),
    0 2px 16px rgba(28, 20, 8, 0.04);
  transition: box-shadow 0.35s var(--ease-out);
}
#navbar.scrolled {
  box-shadow: 0 4px 32px rgba(28, 20, 8, 0.12);
}
#navbar.scrolled .nav-top-bar {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    height 0.3s,
    opacity 0.3s;
}
.nav-top-bar {
  transition:
    height 0.3s,
    opacity 0.3s;
}

.nav-main {
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  height: var(--nav-height);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  width: 75px;
  height: auto;
  transition: transform 0.3s;
}
.nav-logo:hover img {
  transform: scale(1.04);
}

/* ── Site Nav — unified for desktop + mobile ── */
#siteNav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* Desktop links */
.nav-links-list {
  display: none;
  align-items: center;
  gap: var(--space-1);
}
@media (min-width: 1024px) {
  .nav-links-list {
    display: flex;
  }
}

.nav-links-list .menu-item {
  text-decoration: none;
}

.nav-links-list .nav-link,
.nav-links-list .menu-item a {
  font-family: var(--font-display);
  font-size: var(--text-normal);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s;
  position: relative;
  text-decoration: none;
}
.nav-links-list .nav-link::after,
.nav-links-list .menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--space-3);
  right: var(--space-3);
  height: 2px;
  background: var(--flamez-red);
  transform: scaleX(0);
  transition: transform 0.2s var(--ease-out);
  border-radius: 1px;
}
.nav-links-list .nav-link:hover,
.nav-links-list .menu-item a:hover {
  color: var(--flamez-red);
  background: var(--flamez-red-light);
}
.nav-links-list .nav-link:hover::after,
.nav-links-list .menu-item a:hover::after {
  transform: scaleX(1);
}

/* Nav actions (desktop) */
.nav-actions {
  display: none;
  align-items: center;
  gap: var(--space-3);
}
@media (min-width: 1024px) {
  .nav-actions {
    display: flex;
  }
}

.nav-loc-select {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0 var(--space-3) 0 var(--space-4);
  height: 38px;
  margin-left: auto;
  flex-shrink: 0;
  transition: border-color 0.2s;
  cursor: pointer;
}
.nav-loc-select:hover,
.nav-loc-select:focus-within {
  border-color: var(--flamez-red);
}
.nav-loc-select > i.fa-location-dot {
  color: var(--flamez-red);
  font-size: 0.75rem;
  flex-shrink: 0;
  pointer-events: none;
}
.nav-loc-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: none;
  white-space: nowrap;
}
.nav-loc-chevron {
  color: var(--muted);
  font-size: 0.55rem;
  pointer-events: none;
  flex-shrink: 0;
}
.nav-loc-select select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Cart button */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.2s;
  background: var(--surface);
  border: 1.5px solid var(--border);
}
.cart-btn:hover {
  background: var(--flamez-red-light);
  border-color: var(--flamez-red);
  color: var(--flamez-red);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  background: var(--flamez-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--white);
  line-height: 1;
}
/* hide counter when 0 */
.cart-count:empty,
.cart-count[data-count="0"] {
  display: none;
}

/* Mobile cart (always visible) */
.nav-cart-mobile {
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .nav-cart-mobile {
    display: none;
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 1001;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.hamburger:hover {
  background: var(--surface);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}

/* ── Mobile nav drawer ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 8, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1097;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

#siteNav.open {
  transform: translateX(0) !important;
}

@media (max-width: 1023px) {
  #siteNav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 90vw);
    background: var(--white);
    z-index: 1098;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(28, 20, 8, 0.16);
  }
  .nav-links-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-4) var(--space-6);
    flex: 1;
  }
  .nav-links-list .nav-link,
  .nav-links-list .menu-item:not(.menu-item-has-children) > a {
    font-size: var(--text-lg);
    letter-spacing: 0.05em;
    padding: var(--space-4) var(--space-2);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    display: block;
  }
  .nav-links-list .nav-link::after,
  .nav-links-list .menu-item:not(.menu-item-has-children) > a::after {
    display: none;
  }
  .nav-links-list .nav-link:hover,
  .nav-links-list .menu-item:not(.menu-item-has-children) > a:hover {
    background: var(--flamez-red-light);
    border-radius: var(--radius-sm);
  }
}

/* ── Submenu / Dropdown ── */

/* Arrow button injected by JS next to parent link */
.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 4px 6px;
  cursor: pointer;
  line-height: 1;
  vertical-align: middle;
  flex-shrink: 0;
}
.submenu-arrow {
  color: var(--muted);
  font-size: 0.6rem;
  transition:
    transform 0.25s var(--ease-out),
    color 0.2s;
  pointer-events: none;
}

/* ── Desktop dropdown ── */
@media (min-width: 1024px) {
  .menu-item-has-children {
    position: relative;
  }

  /* Desktop: arrow driven by hover, disable click */
  .menu-item-has-children > .submenu-toggle {
    pointer-events: none;
  }

  .sub-menu {
    display: block;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
      opacity 0.22s var(--ease-out),
      transform 0.22s var(--ease-out),
      visibility 0.22s;
    z-index: 200;
    padding: var(--space-2) 0;
    list-style: none;
  }

  .menu-item-has-children:hover > .sub-menu,
  .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .sub-menu .menu-item a {
    display: block;
    padding: var(--space-3) var(--space-5) !important;
    font-size: var(--text-sm) !important;
    border-radius: 0 !important;
    white-space: nowrap;
  }

  .sub-menu .menu-item a::after {
    display: none !important;
  }

  .sub-menu .menu-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  /* Rotate arrow on hover */
  .menu-item-has-children:hover > .submenu-toggle .submenu-arrow,
  .menu-item-has-children:focus-within > .submenu-toggle .submenu-arrow {
    transform: rotate(180deg);
    color: var(--flamez-red);
  }
}

/* ── Mobile accordion submenu ── */
@media (max-width: 1023px) {
  /* Link + toggle sit on the SAME ROW; sub-menu wraps below */
  .menu-item-has-children {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  /* Link takes all remaining width on its row */
  .menu-item-has-children > a {
    flex: 1;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
    font-size: var(--text-lg) !important;
    padding: var(--space-4) var(--space-2) !important;
    letter-spacing: 0.05em !important;
  }
  .menu-item-has-children > a::after {
    display: none !important;
  }

  /* Toggle arrow button — right side of the same row */
  .menu-item-has-children > .submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    padding: 0;
    color: var(--muted);
    font-size: 0.75rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }
  .menu-item-has-children > .submenu-toggle.open .submenu-arrow {
    transform: rotate(180deg);
    color: var(--flamez-red);
  }

  /* Sub-menu: full width so it drops to its own row */
  .sub-menu {
    list-style: none;
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--surface);
    border-radius: var(--radius-sm);
    margin: 0 0 var(--space-2);
    overflow: hidden;
  }
  .sub-menu.open {
    display: flex;
  }
  .sub-menu .menu-item a {
    display: block !important;
    padding: var(--space-3) var(--space-6) !important;
    font-size: var(--text-normal) !important;
    border-bottom: 1px solid var(--border) !important;
    color: var(--text-secondary) !important;
    border-radius: 0 !important;
  }
  .sub-menu .menu-item a::after {
    display: none !important;
  }
  .sub-menu .menu-item:last-child a {
    border-bottom: none !important;
  }
}

/* Drawer header (mobile only) */
.nav-drawer-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
@media (max-width: 1023px) {
  .nav-drawer-header {
    display: flex;
  }
}
.nav-drawer-logo img {
  width: 52px;
}
.nav-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--muted);
  transition: all 0.2s;
  background: var(--bg);
  border: 1.5px solid var(--border);
}
.nav-close-btn:hover {
  background: var(--flamez-red-light);
  color: var(--flamez-red);
  border-color: var(--flamez-red);
}

/* Drawer footer (mobile only) */
.nav-drawer-footer {
  display: none;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border-top: 1px solid var(--border);
  background: var(--surface);
}
@media (max-width: 1023px) {
  .nav-drawer-footer {
    display: flex;
  }
}
.nav-drawer-footer .btn {
  width: 100%;
  justify-content: center;
}
.drawer-location-btns {
  display: flex;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.drawer-loc-btn {
  flex: 1;
  padding: var(--space-2) var(--space-3);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
  transition: all 0.2s;
  text-align: center;
}
.drawer-loc-btn.active,
.drawer-loc-btn:hover {
  background: var(--flamez-red-light);
  border-color: var(--flamez-red);
  color: var(--flamez-red);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════ */
.hero-slider-wrap {
  background: var(--bg);
  padding: 1.25rem 1.25rem 0;
}
@media (min-width: 768px) {
  .hero-slider-wrap {
    padding: 1.75rem 1.75rem 0;
  }
}

/* Apply border-radius to Slick's viewport */
.hero-slider .slick-list {
  border-radius: var(--radius-2xl) !important;
  overflow: hidden !important;
}

.hero-slide {
  position: relative;
  /* Mobile: vw-based height so Slick's JS reads a real pixel value (aspect-ratio
     gets ignored because Slick sets height inline on .slick-list via JS) */
  height: 56vw;
  min-height: 180px;
  max-height: 340px;
  background: #0a0a0a;
  display: flex !important;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-slide {
    height: 78vh;
    min-height: 420px;
    max-height: 700px;
    background: transparent;
  }
}

.hero-media,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Desktop: zoom-to-fill (cover) looks great on large screens */
.hero-media img,
.hero-media video {
  object-fit: cover;
}

/* Mobile: show the full banner — no cropping, dark bg handles any bars */
@media (max-width: 767px) {
  .hero-media img,
  .hero-media video {
    object-fit: contain;
  }
}

/* Dots container — BELOW the slider */
.hero-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 0 1rem; /* mobile: tighter */
  gap: var(--space-2);
}
@media (min-width: 768px) {
  .hero-dots-container {
    padding: 1.25rem 0 1.5rem;
  }
}
.hero-dots-container .slick-dots {
  position: static;
  display: flex !important;
  align-items: center;
  gap: 8px;
  width: auto;
}
.hero-dots-container .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.hero-dots-container .slick-dots li .hero-dot-btn {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--border);
  border: 2px solid transparent;
  padding: 0;
  font-size: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  display: block;
}
.hero-dots-container .slick-dots li .hero-dot-btn:hover {
  background: var(--flamez-amber);
  transform: scale(1.2);
}
.hero-dots-container .slick-dots li.slick-active .hero-dot-btn {
  width: 36px;
  border-radius: 5px;
  background: var(--flamez-red);
}
/* Remove slick's default ::before pseudo */
.hero-dots-container .slick-dots li button::before {
  display: none !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-arrow {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-16);
}
.section-header .eyebrow {
  margin-bottom: var(--space-4);
}
.section-header h2 {
  margin-bottom: var(--space-4);
}
.section-header p {
  color: var(--muted);
  font-size: var(--text-lg);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   MENU CATEGORIES — Transparent food image cards
   ═══════════════════════════════════════════════════════════════ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (min-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1280px) {
  .category-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
  text-decoration: none;
}
.category-card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

/* Warm cream area that makes transparent PNGs look appetising */
.cat-img-wrap {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.25rem 0.75rem;
  background: radial-gradient(ellipse at 50% 90%, #fff8f0 0%, #fde8d2 100%);
  min-height: 130px;
  overflow: hidden;
}

.cat-img-wrap img {
  width: 95%;
  max-height: 150px;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
  transition:
    transform 0.45s var(--ease-out),
    filter 0.45s;
}
.category-card:hover .cat-img-wrap img {
  transform: scale(1.1) translateY(-6px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.26));
}

/* Dark label bar — turns red on hover */
.cat-label {
  padding: 0.8rem 0.75rem;
  text-align: center;
  background: var(--flamez-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: background 0.3s;
}
.category-card:hover .cat-label {
}

.cat-name {
  font-family: var(--font-display);
  font-size: var(--text-normal);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flamez-amber-light);
  transform: translateY(4px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED DEALS
   ═══════════════════════════════════════════════════════════════ */
.deals-strip {
  background: var(--flamez-amber-pale);
  border-top: 3px solid var(--flamez-amber);
  border-bottom: 3px solid var(--flamez-amber);
  padding: var(--space-12) 0;
}
.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .deals-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: var(--space-24) 0;
  }
}
@media (min-width: 1024px) {
  .deals-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.deal-card {
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.deal-card:hover {
  transform: translateY(-6px);
  border-color: var(--flamez-amber);
  box-shadow: var(--shadow-amber);
}
.deal-card-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.deal-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.deal-card:hover .deal-card-thumb img {
  transform: scale(1.07);
}
.deal-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--flamez-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.deal-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.deal-card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}
.deal-card-body p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.deal-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--flamez-red);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-sm);
  margin-top: var(--space-4);
  transition:
    background 0.2s,
    transform 0.2s;
  align-self: flex-start;
}
.deal-link:hover {
  background: var(--flamez-red-dark);
  transform: translateY(-1px);
}
.deal-link i {
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
   BEST SELLERS
   ═══════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--flamez-red);
  box-shadow: var(--shadow-red);
}
.product-card-thumb {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.product-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease-out);
}
.product-card:hover .product-card-thumb img {
  transform: scale(1.05);
}
.product-tag {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background: rgba(245, 149, 0, 0.92);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}
.product-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-2);
}
.product-body p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--space-4);
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--flamez-red);
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--flamez-red);
  border-radius: var(--radius-sm);
  align-self: flex-start;
  transition: all 0.2s;
}
.product-link:hover {
  background: var(--flamez-red);
  color: var(--white);
  transform: translateY(-1px);
}
.product-link i {
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURE SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.feature-section {
  padding: var(--space-24) 0;
  border-top: 1px solid var(--border);
}
.feature-section:nth-child(odd) {
  background: var(--surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}
.feature-grid.reverse {
  direction: rtl;
}
.feature-grid.reverse > * {
  direction: ltr;
}

.feature-media {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  /* aspect-ratio: 4/3; */
  box-shadow: 0 20px 60px rgba(214, 41, 24, 0.12);
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.feature-media:hover img {
  transform: scale(1.03);
}
.feature-badge {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  background: var(--flamez-amber);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}
.feature-text .eyebrow {
  margin-bottom: var(--space-4);
}
.feature-text h2 {
  margin-bottom: var(--space-6);
}
.feature-text p {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.feature-text .btn {
  margin-top: var(--space-4);
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
  background: var(--flamez-red);
  padding: var(--space-16) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--flamez-amber-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: var(--space-3);
}

/* ═══════════════════════════════════════════════════════════════
   HALAL SECTION
   ═══════════════════════════════════════════════════════════════ */
.halal-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 768px) {
  .halal-card {
    grid-template-columns: 1fr 420px;
    gap: var(--space-16);
  }
}

.halal-text h2 {
  margin-bottom: var(--space-6);
}
.halal-text p {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.halal-pills {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin: var(--space-6) 0 var(--space-8);
}
.pill {
  background: var(--flamez-red-light);
  color: var(--flamez-red);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Food image with floating stamp */
.halal-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
@media (min-width: 768px) {
  .halal-image {
    aspect-ratio: 3/4;
  }
}
.halal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating halal stamp on the image */
.halal-stamp {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 96px;
  height: 96px;
}
.halal-stamp-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  animation: halalPulse 2.5s ease infinite;
}
@keyframes halalPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.2;
  }
}
.halal-stamp-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--flamez-red), var(--flamez-amber));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  border: 3px solid rgba(255, 255, 255, 0.25);
}
.halal-stamp-inner .label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.halal-stamp-inner .label-sub {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ═══════════════════════════════════════════════════════════════
   WHY FLAMEZ
   ═══════════════════════════════════════════════════════════════ */
.trio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .trio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trio-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  transition: all 0.3s var(--ease-out);
}
.trio-card:hover {
  border-color: var(--flamez-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.trio-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flamez-red), var(--flamez-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto var(--space-5);
  box-shadow: var(--shadow-red);
  transition: transform 0.3s var(--ease-spring);
}
.trio-card:hover .trio-icon {
  transform: scale(1.1) rotate(-5deg);
}
.trio-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}
.trio-card p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   DELIVERY PARTNERS
   ═══════════════════════════════════════════════════════════════ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 820px;
  margin-inline: auto;
}
@media (max-width: 560px) {
  .partners-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

.partner-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  transition: all 0.3s var(--ease-out);
}
.partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--flamez-amber);
  box-shadow: var(--shadow-amber);
}
.partner-card--accent {
  border-color: var(--flamez-amber);
}

/* Logo container — fixed height so all cards align */
.partner-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  width: 100%;
}

.partner-logo-img {
  max-height: 88px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Card title */
.partner-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1.2;
}

/* CTA button — full width, pushed to bottom */
.partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  margin-top: auto;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border: 2px solid var(--flamez-red);
  color: var(--flamez-red);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.partner-link:hover {
  background: var(--flamez-red);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all 0.3s var(--ease-out);
}
.review-card:hover {
  border-color: var(--flamez-amber);
  transform: translateY(-4px);
  box-shadow: var(--shadow-amber);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-4);
}
.review-stars .star {
  width: 16px;
  height: 16px;
  background: var(--flamez-amber);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.review-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}
.review-text {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flamez-red), var(--flamez-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   COMMUNITY / FOOD BANK
   ═══════════════════════════════════════════════════════════════ */
.community-card {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) {
  .community-card {
    grid-template-columns: 1fr 1fr;
  }
}

/* Image panel */
.community-img {
  position: relative;
  min-height: 320px;
}
@media (min-width: 768px) {
  .community-img {
    min-height: 460px;
  }
}
.community-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Floating badge over the image */
.community-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--flamez-amber);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.community-badge i {
  color: #fff;
  font-size: 0.9rem;
}
.community-badge span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

/* Content panel */
.community-body {
  background: linear-gradient(160deg, #fff8f0 0%, #fffbf7 100%);
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}
@media (max-width: 768px) {
  .community-body {
    padding: var(--space-8);
  }
}

.community-body .heading-2 {
  margin-bottom: 0;
}

/* Feature rows */
.community-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  border-top: 1px solid var(--border);
  padding-top: var(--space-6);
}
.community-feat {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.community-feat-icon {
  width: 40px;
  height: 40px;
  background: var(--flamez-amber-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.community-feat-icon i {
  color: var(--flamez-amber);
  font-size: 1rem;
}
.community-feat strong {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  display: block;
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.community-feat p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* Tagline */
.community-tagline {
  font-size: var(--text-base);
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  margin: 0;
}
.community-tagline i {
  color: var(--flamez-amber);
  margin-right: 0.4rem;
  font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION — Tab switcher for Nanaimo & Vernon
   ═══════════════════════════════════════════════════════════════ */
.location-tabs {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
  background: var(--surface);
  padding: var(--space-2);
  border-radius: var(--radius-full);
  width: fit-content;
  border: 1.5px solid var(--border);
}
.loc-tab {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  color: var(--muted);
  background: transparent;
  transition: all 0.25s var(--ease-out);
}
.loc-tab:hover {
  color: var(--flamez-red);
  background: var(--flamez-red-light);
}
.loc-tab.active {
  background: var(--flamez-red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.loc-tab i {
  font-size: 0.85rem;
}

.location-panel {
  animation: fadeIn 0.35s var(--ease-out);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.location-info h2 {
  margin-bottom: var(--space-8);
}
.location-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.location-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--flamez-red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--flamez-red);
  flex-shrink: 0;
}
.location-row h4 {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--flamez-red);
  margin-bottom: var(--space-1);
}
.location-row p,
.location-row a {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.6;
}
.location-row a:hover {
  color: var(--flamez-red);
}
.location-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  height: 420px;
  box-shadow: var(--shadow-lg);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════════════════════
   FRANCHISE CTA
   ═══════════════════════════════════════════════════════════════ */
.franchise-section {
  position: relative;
  padding: var(--space-32) 0;
  text-align: center;
  background: var(--flamez-red);
  overflow: hidden;
}
.franchise-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E")
    repeat;
}
.franchise-body {
  position: relative;
  z-index: 2;
}
.franchise-section .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
}
.franchise-section h2 {
  color: var(--white);
  margin-bottom: var(--space-4);
}
.franchise-section h2 .accent {
  color: var(--flamez-amber-light);
}
.franchise-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  line-height: 1.7;
}
.franchise-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--text);
  padding: var(--space-24) 0;
  text-align: center;
}
.newsletter h2 {
  color: var(--white);
  margin-bottom: var(--space-3);
}
.newsletter p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}
.newsletter-form {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  width: 100%;
  max-width: 360px;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--white);
  outline: 2px solid transparent;
  transition:
    outline 0.2s,
    border-color 0.2s;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form input:focus {
  outline-color: var(--flamez-amber);
  border-color: var(--flamez-amber);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
#footer-main {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-24) 0 var(--space-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: var(--space-4);
}
.footer-brand .logo span {
  color: var(--flamez-amber-light);
}
.footer-brand p {
  font-size: var(--text-normal);
  line-height: 1.75;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-socials {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
}
.social-btn:hover {
  border-color: var(--flamez-amber-light);
  color: var(--flamez-amber-light);
  background: rgba(255, 184, 0, 0.08);
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-6);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col a {
  font-size: var(--text-normal);
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--flamez-amber-light);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
  color: var(--flamez-amber-light);
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING ORDER BUTTON
   ═══════════════════════════════════════════════════════════════ */
.float-btn {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  z-index: 900;
  background: var(--flamez-red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px rgba(214, 41, 24, 0.45);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: all 0.3s var(--ease-spring);
}
.float-btn:hover {
  background: var(--flamez-red-dark);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 12px 36px rgba(214, 41, 24, 0.55);
}

/* ═══════════════════════════════════════════════════════════════
   ORDER MODAL
   ═══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 4, 0, 0.72);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  padding: var(--space-4);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--bg);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 24px 72px rgba(28, 4, 0, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.15s ease,
    transform 0.18s var(--ease-out);
}
.modal-overlay.open .modal {
  opacity: 1;
  transform: none;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--muted);
  background: var(--surface);
  transition:
    background-color 0.1s ease,
    color 0.1s ease;
}
.modal-close:hover {
  background: var(--flamez-red-light);
  color: var(--flamez-red);
}
.modal > p {
  font-size: var(--text-base);
  color: var(--muted);
  margin-bottom: var(--space-6);
}
.modal-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
@media (max-width: 480px) {
  .modal-options {
    grid-template-columns: 1fr;
  }
}
.modal-option {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.1s ease,
    background-color 0.1s ease;
  text-decoration: none;
  color: inherit;
}
.modal-option:hover {
  border-color: var(--flamez-red);
  background: var(--flamez-red-light);
}
.modal-option i {
  font-size: 1.5rem;
  color: var(--flamez-red);
  margin: auto;
  margin-bottom: var(--space-2);
  display: block;
}
.modal-option .label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}
.modal-option .sublabel {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: var(--space-1);
}
.modal-divider {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
  position: relative;
}
.modal-divider::before,
.modal-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: var(--border);
}
.modal-divider::before {
  left: 0;
}
.modal-divider::after {
  right: 0;
}
.modal-apps {
  display: flex;
  gap: var(--space-3);
}
.modal-app {
  flex: 1;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-2);
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.1s ease,
    background-color 0.1s ease;
  text-decoration: none;
  color: inherit;
}
.modal-app:hover {
  border-color: var(--flamez-amber);
  background: var(--flamez-amber-pale);
}
.modal-app .name {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}
.modal-app .platform {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .franchise-actions {
    flex-direction: column;
  }
  .franchise-actions .btn {
    width: 100%;
  }
  .location-actions {
    flex-direction: column;
  }
  .location-actions .btn {
    width: 100%;
  }
  .newsletter-form input {
    max-width: 100%;
  }
  .newsletter-form .btn {
    width: 100%;
  }
  .cat-name {
    font-size: var(--text-xs);
  }
  .category-grid {
    gap: var(--space-4);
  }
  :root {
    --container-padding: var(--space-4);
  }
  .hero-slider-wrap {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }
  .hero-slider .slick-list {
    border-radius: var(--radius-lg);
  }
  .hero-media img,
  .hero-media video {
    object-fit: cover;
  }
  .section-header {
    margin-bottom: var(--space-8);
  }
  .section-header p {
    display: none;
  }
  .feature-text p,
  .halal-text p {
    font-size: var(--text-base);
  }
  .deal-card-body p,
  .product-body p {
    font-size: var(--text-sm);
  }
  .category-card {
    border-radius: var(--radius-lg);
  }
  .community-card {
    border-radius: var(--radius-lg);
  }
  .feature-media,
  .halal-image {
    border-radius: var(--radius-xl);
  }
  .modal {
    border-radius: var(--radius-xl);
  }
}

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE TEMPLATES — page, single, archive, search, 404
   ═══════════════════════════════════════════════════════════════ */

/* ── Page Hero Banner ── */
.page-hero {
  background: var(--text);
  padding-block: var(--space-20);
  text-align: center;
}
.page-hero .eyebrow {
  color: var(--flamez-amber-light);
  border-bottom-color: var(--flamez-amber);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: var(--space-5);
}
.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.breadcrumb-nav a {
  color: var(--flamez-amber-light);
  transition: color 0.2s;
}
.breadcrumb-nav a:hover {
  color: var(--white);
}
.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.25);
}

/* ── Page Content ── */
.page-content-wrap {
  max-width: 860px;
  margin-inline: auto;
}
.post-content {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-secondary);
}
.post-content h2,
.post-content h3,
.post-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.post-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}
.post-content h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.post-content h4 {
  font-size: 1.25rem;
}
.post-content p {
  margin-bottom: var(--space-5);
}
.post-content a {
  color: var(--flamez-red);
  text-decoration: underline;
}
.post-content ul,
.post-content ol {
  list-style: disc;
  margin-left: var(--space-6);
  margin-bottom: var(--space-5);
}
.post-content ol {
  list-style: decimal;
}
.post-content img {
  border-radius: var(--radius-md);
  margin-block: var(--space-6);
}
.post-content blockquote {
  border-left: 4px solid var(--flamez-amber);
  padding-left: var(--space-6);
  margin-block: var(--space-6);
  color: var(--muted);
  font-style: italic;
}

/* ── Blog Grid & Post Cards ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-8);
}
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition:
    box-shadow 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.post-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.post-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: radial-gradient(ellipse at 50% 90%, #fff8f0 0%, #fde8d2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-card-img-placeholder i {
  font-size: 3rem;
  color: var(--flamez-amber);
  opacity: 0.45;
}
.post-card-body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-meta {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.post-card-meta .cat-tag {
  color: var(--flamez-red);
  font-weight: 600;
  transition: color 0.2s;
}
.post-card-meta .cat-tag:hover {
  color: var(--flamez-red-dark);
}
.post-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-3);
  color: var(--text);
}
.post-card-title a {
  transition: color 0.2s;
}
.post-card-title a:hover {
  color: var(--flamez-red);
}
.post-card-excerpt {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-5);
}
.post-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--flamez-red);
  transition: gap 0.2s;
}
.post-card-link:hover {
  gap: var(--space-3);
}

/* ── Single Post ── */
.single-post-wrap {
  max-width: 800px;
  margin-inline: auto;
}
.single-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}
.single-post-meta .cat-tag {
  color: var(--flamez-red);
  font-weight: 600;
  transition: color 0.2s;
}
.single-post-meta .cat-tag:hover {
  color: var(--flamez-red-dark);
}
.single-post-featured {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-10);
}
.single-post-featured img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}
.post-nav-item {
  padding: var(--space-6);
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition:
    background 0.2s,
    border-color 0.2s;
  display: block;
}
.post-nav-item:hover {
  background: var(--surface-warm);
  border-color: var(--flamez-red);
}
.post-nav-item.next {
  text-align: right;
}
.post-nav-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--flamez-red);
  font-weight: 600;
  margin-bottom: var(--space-2);
}
.post-nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1.2;
}

/* ── Search Form ── */
.search-form-wrap {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}
.search-form-inner {
  display: flex;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s;
}
.search-form-inner:focus-within {
  border-color: var(--flamez-red);
}
.search-input {
  flex: 1;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: transparent;
  border: none;
  outline: none;
}
.search-submit {
  padding: var(--space-4) var(--space-6);
  background: var(--flamez-red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.search-submit:hover {
  background: var(--flamez-red-dark);
}

/* ── Pagination ── */
.posts-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-16);
  flex-wrap: wrap;
}
.posts-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding-inline: var(--space-3);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 2px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}
.posts-pagination a.page-numbers:hover {
  border-color: var(--flamez-red);
  color: var(--flamez-red);
  background: var(--flamez-red-light);
}
.posts-pagination .current {
  background: var(--flamez-red);
  border-color: var(--flamez-red);
  color: var(--white);
}

/* ── No Results ── */
.no-results {
  text-align: center;
  padding-block: var(--space-20);
  max-width: 480px;
  margin-inline: auto;
}
.no-results .eyebrow {
  display: inline-block;
  margin-bottom: var(--space-4);
}
.no-results .heading-2 {
  margin-bottom: var(--space-4);
}
.no-results p {
  color: var(--muted);
  margin-bottom: var(--space-8);
  font-size: var(--text-base);
}

/* ── 404 Page ── */
.error-404-wrap {
  text-align: center;
  padding-block: var(--space-20);
}
.error-code {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  color: var(--flamez-red);
  opacity: 0.12;
  margin-bottom: calc(var(--space-4) * -4);
}
.error-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: var(--space-4);
}
.error-desc {
  color: var(--muted);
  font-size: var(--text-base);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-8);
}
.error-404-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-nav {
    grid-template-columns: 1fr;
  }
  .single-post-featured img {
    height: 240px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
/* ── Shared inner-page hero (canonical) ── */
.page-hero,
.about-hero {
  position: relative;
  background-color: var(--text);
  background-size: cover;
  background-position: center;
  padding-block: var(--space-32);
  text-align: center;
  overflow: hidden;
}

.woocommerce-page .page-hero,
.woocommerce-page .about-hero {
  padding-block: var(--space-20);
}

.page-hero::before,
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(28, 20, 8, 0.92) 0%,
    rgba(120, 20, 10, 0.7) 100%
  );
  z-index: 1;
}
.page-hero::after,
.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E")
    repeat;
  z-index: 1;
}
.page-hero-inner,
.about-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero-eyebrow,
.about-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--flamez-amber-light);
  border-bottom: 2px solid var(--flamez-amber);
  padding-bottom: var(--space-1);
  margin-bottom: var(--space-5);
}
.page-hero-title,
.about-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--space-6);
}
.page-hero-accent,
.about-hero-accent {
  color: var(--flamez-red);
}

/* ═══════════════════════════════════════════════════════════════
   FULL-BLEED SPLIT SECTIONS (Intro + Menu Features)
   ═══════════════════════════════════════════════════════════════ */
.about-split {
  overflow: hidden;
}
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}
@media (min-width: 900px) {
  .about-split-grid {
    grid-template-columns: 52% 1fr;
    min-height: 620px;
  }
  .about-split-grid--reverse {
    grid-template-columns: 1fr 52%;
  }
}

/* The image pane — truly fills the full column height */
.about-split-media {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  margin: 0;
}
.about-split-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.about-split-media:hover img {
  transform: scale(1.04);
}

/* Location badge on image */
.about-split-badge {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-5);
  background: rgba(20, 14, 5, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--flamez-amber-light);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  z-index: 2;
  border: 1px solid rgba(255, 184, 0, 0.3);
}

/* The text pane */
.about-split-body {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: var(--space-16) var(--space-8);
}
.about-split-body--surface {
  background: var(--surface);
}
@media (min-width: 900px) {
  .about-split-body {
    padding: var(--space-20) var(--space-16);
  }
}
@media (min-width: 1280px) {
  .about-split-body {
    padding: var(--space-24) var(--space-20);
  }
}
.about-split-inner {
  /* max-width: 520px; */
}
.about-split-inner .heading-2 {
  margin-block: var(--space-5) var(--space-6);
  font-size: clamp(1.75rem, 3.5vw, var(--text-3xl));
}
.about-split-inner p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: var(--space-5);
}
.about-split-inner p:last-of-type {
  margin-bottom: 0;
}

/* ── Feature list inside menu split ── */
.about-menu-intro-text {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}
.about-feat-list {
  display: flex;
  flex-direction: column;
  margin-top: var(--space-2);
}
.about-feat-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding-block: var(--space-5);
  border-bottom: 1px solid var(--border);
}
.about-feat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-feat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--flamez-red), var(--flamez-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(214, 41, 24, 0.22);
  margin-top: 0.1em;
}
.about-feat-text {
  flex: 1;
}
.about-feat-title {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-normal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: var(--space-1);
}
.about-feat-item p {
  font-size: var(--text-normal) !important;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-4) !important;
}

.about-feat-item p:last-child {
  margin-bottom: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   VISION & VALUES
   ═══════════════════════════════════════════════════════════════ */
.about-vision {
  background: var(--flamez-amber-pale);
  padding-block: var(--space-24);
  border-top: 1px solid rgba(245, 149, 0, 0.18);
  border-bottom: 1px solid rgba(245, 149, 0, 0.18);
  text-align: center;
}
.about-vision-header {
  margin-bottom: var(--space-10);
}
.about-vision-flame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flamez-red), var(--flamez-amber));
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--space-5);
  box-shadow: 0 12px 32px rgba(214, 41, 24, 0.28);
}
.about-vision-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--flamez-red);
  border-bottom: 2px solid var(--flamez-amber);
  padding-bottom: var(--space-1);
  margin-bottom: var(--space-5);
}
.about-vision-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, var(--text-4xl));
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--flamez-red);
}
/* Single centered column for vision text */
.about-vision-text {
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}
.about-vision-text p {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.95;
  margin-bottom: var(--space-6);
}
.about-vision-text p:last-child {
  margin-bottom: 0;
}
/* Pull-quote block */
.about-vision-quote {
  max-width: 720px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.65);
  border: 1.5px solid rgba(245, 149, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-10);
  font-size: var(--text-lg);
  color: var(--text);
  line-height: 1.75;
  font-style: normal;
  text-align: center;
}
.about-vision-quote i {
  /* display: block; */
  font-size: 1.75rem;
  color: var(--flamez-amber);
  margin-bottom: var(--space-3);
}

/* ═══════════════════════════════════════════════════════════════
   TEAM PHOTO
   ═══════════════════════════════════════════════════════════════ */
.about-team-photo {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* min-height: 380px; */
  /* max-height: 600px; */
}
.about-team-photo img {
  width: 100%;
  height: 100%;
  /* min-height: 380px; */
  /* max-height: 600px; */
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: var(--radius-lg);
}
.about-team-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-16) var(--space-8) var(--space-10);
  background: linear-gradient(
    to top,
    rgba(20, 10, 4, 0.7) 0%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-team-caption {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3.5vw, var(--text-2xl));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   EXTRAS SECTION
   ═══════════════════════════════════════════════════════════════ */
.about-extras-section {
  background: var(--surface);
  overflow: hidden;
}

/* With image: full-bleed left image + right cards */
.about-extras-with-image {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .about-extras-with-image {
    grid-template-columns: 50% 1fr;
    align-items: stretch;
  }
}
.about-extras-media {
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 0;
  margin-left: 100px;
}
.about-extras-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

/* Right panel — vertically centred, constrained max-width */
.about-extras-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-12) var(--space-8);
  background: var(--white);
}
@media (min-width: 900px) {
  .about-extras-cards {
    padding: var(--space-12);
  }
}
/* Cap card width so they never stretch across wide panels */
.about-extras-cards .about-extra-card {
  max-width: 560px;
}

/* Without image: 3-column card grid */
.about-extras-noimage {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  padding-block: var(--space-16);
}
@media (min-width: 768px) {
  .about-extras-noimage {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

/* Card shared styles */
.about-extra-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-5) var(--space-6);
  transition:
    border-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
}
.about-extra-card:hover {
  border-color: var(--flamez-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-extra-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--flamez-red), var(--flamez-amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(214, 41, 24, 0.25);
  margin-top: 0.1em;
}
.about-extra-title {
  font-family: var(--font-display);
  font-size: var(--text-normal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: var(--space-1);
  line-height: 1.2;
}
.about-extra-card p {
  font-size: var(--text-normal);
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 var(--space-2);
}
.about-extra-card p:last-child {
  margin-bottom: 0;
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .page-hero,
  .about-hero {
    padding-block: var(--space-20);
  }
  .about-split-grid,
  .about-split-grid--reverse {
    grid-template-columns: 1fr;
  }
  .about-split-media {
    min-height: 300px;
  }
  .about-split-body {
    padding: var(--space-10) var(--space-6);
  }
  .about-split-inner {
    max-width: 100%;
  }
  .about-vision-quote {
    padding: var(--space-6);
  }
  .about-extra-card {
    padding: var(--space-5);
  }
  .about-split-media img {
    object-fit: contain;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CANADIAN FOOD PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════ */

/* .cf-page-hero — retired; templates now use .page-hero */

/* ═══════════════════════════════════════════════════════════════
   CATERING PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════ */

/* ── fmenu-hero — alias of .page-hero (no extra styles needed) ── */

/* ── Contact hero subtitle ── */
.page-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-top: var(--space-3);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Hero CTA group (catering) ── */
.catering-hero-ctas {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

/* ── Intro Section ── */
.catering-intro-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--flamez-red);
  margin-bottom: var(--space-6);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.catering-intro p {
  font-size: var(--text-lg);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}
.catering-intro p:last-of-type {
  margin-bottom: var(--space-8);
}

/* ── Feature Band (full-width red) ── */
.catering-feat {
  background: var(--flamez-red);
  overflow: hidden;
}
.catering-feat-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .catering-feat-grid {
    grid-template-columns: 48% 1fr;
    min-height: 520px;
  }
}
.catering-feat-media {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.catering-feat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.catering-feat-body {
  padding: var(--space-12) var(--space-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.catering-feat-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-8);
}
.catering-feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.catering-feat-tag {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  line-height: 1.4;
}
.catering-feat-footer {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

/* ── Menu Highlights ── */
.catering-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .catering-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .catering-highlights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.catering-highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--flamez-red);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.catering-highlight-card-title {
  font-family: var(--font-display);
  font-size: var(--text-normal);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--flamez-red);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.catering-highlight-card p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}
.catering-highlight-card p:last-child {
  margin-bottom: 0;
}
.catering-highlight-card-note {
  font-weight: 500;
  color: var(--text-secondary) !important;
  border-top: 1px solid var(--border);
  padding-top: var(--space-3);
  margin-top: var(--space-2);
}

/* ── Catering Options ── */
.catering-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 560px) {
  .catering-options-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.catering-option {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-top: 4px solid transparent;
  transition:
    box-shadow 0.3s var(--ease-out),
    transform 0.25s var(--ease-out);
}
.catering-option:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.catering-option--amber {
  border-top-color: var(--flamez-amber);
}
.catering-option--red {
  border-top-color: var(--flamez-red);
}
.catering-option--dark {
  border-top-color: var(--text);
}

.catering-option-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.4rem;
}
.catering-option--amber .catering-option-icon {
  background: var(--flamez-amber-pale);
  color: var(--flamez-amber);
}
.catering-option--red .catering-option-icon {
  background: var(--flamez-red-light);
  color: var(--flamez-red);
}
.catering-option--dark .catering-option-icon {
  background: var(--surface);
  color: var(--text);
}

.catering-option-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
  line-height: 1.2;
}
.catering-option-title--amber {
  color: var(--flamez-amber);
}
.catering-option-title--red {
  color: var(--flamez-red);
}
.catering-option-title--dark {
  color: var(--text);
}

.catering-option-desc {
  font-size: var(--text-normal);
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.catering-options-note {
  text-align: center;
  margin-top: var(--space-10);
  font-size: var(--text-normal);
  color: var(--muted);
  line-height: 1.7;
}
.catering-options-note a {
  color: var(--flamez-red);
  font-weight: 600;
  text-decoration: underline;
}
.catering-options-note p {
  margin: 0;
}

/* ── Catering Menu Gallery ── */
.catering-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 640px) {
  .catering-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catering-menu-img {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  line-height: 0;
  text-decoration: none;
}
.catering-menu-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.catering-menu-img:hover img {
  transform: scale(1.04);
}
.catering-menu-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  color: transparent;
  font-size: 2rem;
  border-radius: var(--radius-lg);
  transition:
    background 0.35s var(--ease-out),
    color 0.35s var(--ease-out);
  pointer-events: none;
}
.catering-menu-img:hover .catering-menu-zoom {
  background: rgba(0, 0, 0, 0.42);
  color: var(--white);
}
.catering-menu-cta {
  text-align: center;
  margin-top: var(--space-10);
}

/* ── Catering CTA Banner ── */
.catering-cta-band {
  background: var(--flamez-amber);
  padding: var(--space-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.catering-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(0,0,0,0.06)'/%3E%3C/svg%3E")
    repeat;
}
.catering-cta-inner {
  position: relative;
  z-index: 2;
}
.catering-cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.catering-cta-band p {
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  font-size: var(--text-lg);
  line-height: 1.7;
}
.catering-cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Mobile overrides ── */
@media (max-width: 640px) {
  .catering-feat-body {
    padding: var(--space-10) var(--space-6);
  }
  .catering-feat-media {
    min-height: 260px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT US PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero subtitle ── */
.contact-hero-subtitle {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

/* ── Quick contact cards ── */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 560px) {
  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition:
    box-shadow 0.3s var(--ease-out),
    transform 0.25s var(--ease-out);
}
.contact-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  font-size: 1.3rem;
}
.contact-card-icon--amber {
  background: var(--flamez-amber-pale);
  color: var(--flamez-amber);
}
.contact-card-icon--red {
  background: var(--flamez-red-light);
  color: var(--flamez-red);
}
.contact-card-icon--dark {
  background: var(--surface);
  color: var(--text);
}

.contact-card-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: var(--space-2);
}

.contact-card-value {
  font-size: var(--text-normal);
  color: var(--text);
  line-height: 1.6;
  font-weight: 500;
}
.contact-card-value a {
  color: var(--flamez-red);
  transition: color 0.2s;
}
.contact-card-value a:hover {
  color: var(--flamez-red-dark);
}

/* ── Form + side info two-column layout ── */
.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}
@media (min-width: 900px) {
  .contact-main-grid {
    grid-template-columns: 3fr 2fr;
    gap: var(--space-16);
  }
}

.contact-form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

/* ── Side info panel ── */
.contact-side-info {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--border);
}

.contact-side-section {
  margin-bottom: var(--space-7);
  padding-bottom: var(--space-7);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.contact-side-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-side-title {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--flamez-red);
  margin-bottom: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.contact-side-text {
  font-size: var(--text-normal);
  color: var(--muted);
  line-height: 1.75;
}
.contact-side-text a {
  color: var(--flamez-red);
  transition: color 0.2s;
}
.contact-side-text a:hover {
  color: var(--flamez-red-dark);
}

/* ── Social buttons ── */
.contact-social-links {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.contact-social-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1rem;
  transition:
    background 0.2s var(--ease-out),
    color 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out);
}
.contact-social-btn:hover {
  background: var(--flamez-red);
  color: var(--white);
  border-color: var(--flamez-red);
}

/* ── Mobile ── */
@media (max-width: 559px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  .contact-side-info {
    padding: var(--space-6);
  }
}

/* ═══════════════════════════════════════════════════════════════
   FRANCHISE PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero — uses shared .page-hero styles above ── */

/* ── Intro Split ── */
.fran-intro-split {
  background: var(--bg);
}
.fran-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 900px) {
  .fran-intro-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}
.fran-intro-body .heading-2 {
  margin-bottom: var(--space-6);
}
.fran-intro-body .fran-wysiwyg p {
  color: var(--muted);
  font-size: var(--text-normal);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.fran-intro-body .fran-wysiwyg p:last-child {
  margin-bottom: 0;
}
.fran-intro-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.fran-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 3px solid var(--flamez-amber);
  aspect-ratio: 4 / 3;
}
.fran-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}
.fran-gallery-item:hover img {
  transform: scale(1.05);
}

/* ── Stats Section ── */
.fran-stats-section {
  padding-block: var(--space-16);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.fran-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 640px) {
  .fran-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.fran-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  border-right: 1px solid var(--border);
}
.fran-stat-item:last-child {
  border-right: none;
}
@media (max-width: 639px) {
  .fran-stat-item:nth-child(2n) {
    border-right: none;
  }
  .fran-stat-item:nth-child(1),
  .fran-stat-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
}
.fran-stat-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--flamez-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flamez-red);
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
  transition:
    background 0.25s,
    color 0.25s;
}
.fran-stat-item:hover .fran-stat-icon-wrap {
  background: var(--flamez-red);
  color: var(--white);
}
.fran-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, var(--text-2xl));
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--flamez-red);
  line-height: 1.1;
}
.fran-stat-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: var(--space-1);
}

/* ── Testimonial Slider ── */
.fran-testi-section {
  position: relative;
  background-color: var(--text);
  background-size: cover;
  background-position: center;
  padding-block: var(--space-32);
  text-align: center;
  overflow: hidden;
}
.fran-testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 8, 0.8);
  z-index: 1;
}
.fran-testi-container {
  position: relative;
  z-index: 2;
}
.fran-testi-slider {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
}
.fran-testi-slide {
  display: none;
  flex-direction: column;
  align-items: center;
}
.fran-testi-slide.active {
  display: flex;
  animation: franFadeIn 0.5s var(--ease-out);
}
@keyframes franFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fran-testi-quote-icon {
  font-size: 3.5rem;
  color: var(--flamez-amber);
  line-height: 1;
  margin-bottom: var(--space-6);
  opacity: 0.85;
}
.fran-testi-text,
.fran-testi-text p {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--white);
}
.fran-testi-text {
  margin-bottom: var(--space-6);
}
.fran-testi-text p:not(:last-child) {
  margin-bottom: var(--space-3);
}
.fran-testi-stars {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  font-size: 1.15rem;
  color: var(--flamez-amber);
  margin-bottom: var(--space-4);
}
.fran-testi-author {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
}
.fran-testi-dots {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-10);
}
.fran-testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition:
    background 0.25s,
    transform 0.25s;
}
.fran-testi-dot.active {
  background: var(--flamez-amber);
  transform: scale(1.3);
}
.fran-testi-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ── What We Offer ── */
.fran-offer-section {
  background: var(--surface);
}
.fran-offer-body {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
}
.fran-offer-body .heading-2 {
  margin-bottom: var(--space-6);
}
.fran-offer-body .fran-wysiwyg p {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}
.fran-offer-body .fran-wysiwyg p:last-child {
  margin-bottom: 0;
}

/* ── CTA Split ── */
.fran-cta-split {
  overflow: hidden;
}
.fran-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
@media (min-width: 768px) {
  .fran-cta-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
  }
}
.fran-cta-media {
  overflow: hidden;
  min-height: 320px;
}
.fran-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fran-cta-body {
  background: var(--flamez-red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-16) var(--space-10);
  position: relative;
  overflow: hidden;
}
.fran-cta-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}
.fran-cta-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-3);
  position: relative;
}
.fran-cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: var(--space-5);
  position: relative;
}
.fran-cta-accent {
  color: var(--flamez-amber-light);
}
.fran-cta-body p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 420px;
  position: relative;
}
.fran-form-trigger {
  align-self: flex-start;
  position: relative;
}
@media (max-width: 767px) {
  .fran-cta-body {
    padding: var(--space-12) var(--space-6);
  }
  .fran-form-trigger {
    align-self: stretch;
    justify-content: center;
  }
}

/* ── Franchise Modal ── */
.fran-modal {
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}
.fran-modal-body {
  overflow-y: auto;
  flex: 1;
  padding-top: var(--space-2);
}
.fran-modal-body iframe,
.fran-modal-body form {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   LOCATIONS PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════ */

/* ── Locations Grid ── */
.loc-grid-section {
  background: var(--bg);
}
.loc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .loc-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ── Base card ── */
.loc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
}

/* ── Active card ── */
.loc-card--active {
  text-decoration: none;
  cursor: pointer;
  background: var(--text);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.loc-card--active:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.loc-card--active img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease-out);
}
.loc-card--active:hover img {
  transform: scale(1.05);
}
.loc-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(28, 20, 8, 0.92) 0%,
    rgba(28, 20, 8, 0.4) 70%,
    transparent 100%
  );
  padding: var(--space-8) var(--space-5) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  z-index: 2;
}
.loc-card-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.1;
}
.loc-card-address {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Coming Soon card ── */
.loc-card--soon {
  background: #edf0f4;
  align-items: center;
  justify-content: center;
  border: 2px dashed #c8d0db;
}
.loc-card-soon-label {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9aa5b4;
}

/* ── Responsive grid ── */
@media (max-width: 479px) {
  .loc-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
  .loc-card {
    aspect-ratio: 3 / 4;
  }
  .loc-card-name {
    font-size: var(--text-base);
  }
}

/* ── Rewards Split ── */
.loc-rewards-split {
  overflow: hidden;
}
.loc-rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
@media (min-width: 768px) {
  .loc-rewards-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
  }
}
.loc-rewards-media {
  overflow: hidden;
  min-height: 320px;
}
.loc-rewards-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loc-rewards-body {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-16) var(--space-10);
}
@media (max-width: 767px) {
  .loc-rewards-body {
    padding: var(--space-12) var(--space-6);
  }
  .hero-slide {
    height: 48vh;
    max-height: fit-content;
  }
  .hero-slider .slick-list {
    border-radius: var(--radius-xl) !important;
    overflow: hidden !important;
  }
  .catering-intro p {
    font-size: var(--text-base);
  }
}
.loc-rewards-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--flamez-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--flamez-red);
  font-size: 1.75rem;
  margin-bottom: var(--space-5);
  box-shadow: var(--shadow-sm);
}
.loc-rewards-eyebrow {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--flamez-red);
  margin-bottom: var(--space-3);
  display: block;
}
.loc-rewards-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--space-5);
  max-width: 380px;
}
.loc-rewards-text,
.loc-rewards-text p {
  font-size: var(--text-normal);
  color: var(--muted);
  line-height: 1.75;
  max-width: 380px;
}
.loc-rewards-text {
  margin-bottom: var(--space-8);
}
.loc-rewards-text p:not(:last-child) {
  margin-bottom: var(--space-3);
}
.loc-rewards-text a {
  color: var(--flamez-red);
  text-decoration: underline;
  transition: color 0.2s;
}
.loc-rewards-text a:hover {
  color: var(--flamez-red-dark);
}
.loc-rewards-btn {
  background: var(--text);
  color: var(--white);
  padding: var(--space-4) var(--space-10);
  border-radius: var(--radius-md);
  transition: background 0.25s var(--ease-out);
}
.loc-rewards-btn:hover {
  background: var(--flamez-red);
}

div p:last-child {
  margin-bottom: 0 !important;
}
