/* =========================================================
   Cafe Chat & Chill — Main Stylesheet
   Primary accent: #f7931e (warm orange)
   ========================================================= */

/* ----- Reset & Base ------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:     #f7931e;
  --orange-dk:  #e07d0a;
  --orange-lt:  #fff4e6;
  --brown:      #0f0900;
  --dark:       #1a1a1a;
  --mid:        #666666;
  --light:      #f5f5f5;
  --border:     #e8ddd4;
  --white:      #ffffff;
  --surface:    #ffffff;
  --heading:    #1a1a1a;
  --text:       #333333;
  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 20px rgba(0,0,0,.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,.14);
  --trans:      all .25s ease;
  --font:       'Inter', 'Segoe UI', system-ui, sans-serif;
  --header-h:   88px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ----- Utility ----------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: .9375rem;
  transition: var(--trans); cursor: pointer; border: 2px solid transparent;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(247,147,30,.35); }
.btn--outline { background: transparent; color: var(--orange); border-color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: var(--white); }
.btn--white  { background: var(--surface); color: var(--orange); }
.btn--white:hover { background: var(--orange-lt); }
.btn--sm { padding: 8px 20px; font-size: .875rem; }
.btn--lg { padding: 16px 40px; font-size: 1.0625rem; }

/* Section heading */
.section-label { text-transform: uppercase; letter-spacing: .12em; font-size: .8125rem; font-weight: 700; color: var(--orange); margin-bottom: 8px; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.2; color: var(--heading); }
.section-sub { font-size: 1.0625rem; color: var(--mid); margin-top: 12px; max-width: 560px; }
.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }
.section-head--center .section-sub { margin-left: auto; margin-right: auto; }

section { padding: 80px 0; }

/* ----- Top Strip --------------------------------------- */
.top-strip {
  background: #000000;
  color: rgba(255,255,255,.88);
  text-align: center;
  padding: 8px 24px;
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.4;
}
.top-strip a { color: var(--orange); font-weight: 700; transition: opacity .2s; }
.top-strip a:hover { opacity: .85; text-decoration: underline; }

/* ----- Header ------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: #000000;
  border-bottom: 2px solid var(--orange);
  box-shadow: 0 2px 24px rgba(247,147,30,.12);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  height: var(--header-h);
  max-width: 1280px; margin: 0 auto; padding: 0 28px;
}

/* Logo */
.site-logo {
  flex-shrink: 0; line-height: 0;
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  background: #0d0d0d;
}
.site-logo img {
  height: 84px; width: 84px;
  object-fit: contain;
  display: block;
  transition: transform .25s ease;
}
.site-logo:hover img { transform: scale(1.04); }

/* Desktop nav */
.main-nav { flex: 1; display: flex; align-items: center; justify-content: center; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.88);
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-link:hover { color: var(--orange); background: rgba(247,147,30,.12); }
.nav-link.active {
  color: var(--orange);
  background: rgba(247,147,30,.12);
  border-bottom: 2px solid var(--orange);
}
.nav-link svg { width: 13px; height: 13px; transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: 0 12px 40px rgba(0,0,0,.13);
  min-width: 230px; padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s; z-index: 200;
  border-top: 3px solid var(--orange);
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 500; color: var(--text);
  transition: background .15s, color .15s;
}
.dropdown a::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0; opacity: .5;
  transition: opacity .15s;
}
.dropdown a:hover { background: var(--orange-lt); color: var(--orange); }
.dropdown a:hover::before { opacity: 1; }

/* Header right actions */
.header-actions {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; margin-left: auto;
}
.header-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; color: rgba(255,255,255,.88); font-size: .875rem;
  padding: 8px 12px; border-radius: var(--radius-sm);
  transition: background .2s;
}
.header-phone:hover { background: rgba(247,147,30,.12); color: var(--orange); }
.header-phone svg { color: var(--orange); flex-shrink: 0; }
.header-actions .btn--primary { letter-spacing: .01em; font-size: .875rem; padding: 9px 20px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  padding: 10px; border-radius: var(--radius-sm); background: rgba(255,255,255,.1);
  width: 42px; height: 42px; transition: background .2s;
}
.hamburger:hover { background: rgba(255,255,255,.2); }
.hamburger span { display: block; width: 22px; height: 2px; background: #ffffff; border-radius: 2px; transition: var(--trans); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----- Hero -------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 600px; display: flex; align-items: center;
  background: linear-gradient(135deg, #000000 0%, #1a0800 50%, #0d0d0d 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .3;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 100px 0 80px;
  max-width: 640px;
}
.hero-label { color: var(--orange); font-weight: 700; font-size: .875rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 16px; }
.hero-title { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-title span { color: var(--orange); }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,.82); margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ----- Category Tiles (home) --------------------------- */
.cat-tiles { background: var(--light); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.cat-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  transition: var(--trans); box-shadow: var(--shadow);
}
.cat-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile-label {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 16px;
  color: var(--white); font-weight: 700; font-size: 1rem; line-height: 1.3;
}

/* ----- Why Choose Us ----------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.why-card {
  background: var(--surface); border: 1px solid rgba(247,147,30,.2);
  border-radius: var(--radius); padding: 36px 28px;
  text-align: center; transition: var(--trans); box-shadow: var(--shadow);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--orange); }
.why-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--orange-lt); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 28px; height: 28px; color: var(--orange); }
.why-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.why-card p { font-size: .9375rem; color: var(--mid); line-height: 1.65; }

/* ----- Event Types ------------------------------------- */
.events { background: var(--brown); color: var(--white); }
.events .section-title { color: var(--white); }
.events .section-sub { color: rgba(255,255,255,.7); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.event-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 3/4; cursor: pointer;
  transition: var(--trans);
}
.event-card:hover { transform: translateY(-4px); }
.event-card img { width: 100%; height: 100%; object-fit: cover; }
.event-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
}
.event-card-overlay h3 { font-size: 1.1875rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.event-card-overlay p { font-size: .875rem; color: rgba(255,255,255,.75); margin-bottom: 16px; }

/* ----- Testimonials ------------------------------------ */
.testimonials { background: var(--light); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--surface); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); border: 1px solid rgba(247,147,30,.2);
  transition: var(--trans);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-stars { color: var(--orange); font-size: 1.1rem; margin-bottom: 14px; }
.testi-text { font-size: .9375rem; color: var(--mid); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-lt); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--orange); font-size: 1rem;
}
.testi-name { font-weight: 700; color: var(--heading); font-size: .9375rem; }
.testi-event { font-size: .8125rem; color: var(--mid); }

/* ----- CTA Banner -------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dk) 100%);
  color: var(--white); text-align: center; padding: 72px 24px;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 14px; }
.cta-banner p { font-size: 1.0625rem; opacity: .9; margin-bottom: 32px; }
.cta-banner .btn--white { font-size: 1rem; padding: 14px 36px; }

/* ----- About page -------------------------------------- */
.about-hero { background: var(--light); padding: 100px 0; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-hero img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--heading); margin-bottom: 20px; }
.about-hero p { font-size: 1.0625rem; color: var(--mid); line-height: 1.75; margin-bottom: 16px; }

.values { background: var(--surface); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.value-item { padding: 28px; background: var(--light); border-radius: var(--radius); border-left: 4px solid var(--orange); }
.value-item h3 { font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.value-item p { font-size: .9375rem; color: var(--mid); }

/* ----- Contact page ------------------------------------ */
.contact-section { padding: 80px 0; background: var(--light); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info h2 { font-size: 2rem; font-weight: 800; color: var(--heading); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  background: var(--orange-lt); display: flex; align-items: center; justify-content: center;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--orange); }
.contact-detail strong { display: block; font-weight: 700; color: var(--heading); margin-bottom: 2px; }
.contact-detail p, .contact-detail a { font-size: .9375rem; color: var(--mid); }
.contact-detail a:hover { color: var(--orange); }

.contact-form { background: var(--surface); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.375rem; font-weight: 700; color: var(--heading); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .875rem; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 11px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: .9375rem; color: var(--text);
  transition: var(--trans); background: var(--surface);
}
.form-control:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(247,147,30,.15); }
.form-control.error { border-color: #e53e3e; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .8125rem; color: var(--mid); margin-top: 4px; }
.form-error { font-size: .8125rem; color: #e53e3e; margin-top: 4px; display: none; }
.alert {
  padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px;
  font-size: .9375rem; font-weight: 500;
}
.alert--success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

.map-wrapper { margin-top: 56px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrapper iframe { display: block; }

/* ----- Menu Page --------------------------------------- */
.menu-hero {
  background: linear-gradient(135deg, #000000, #1a0800);
  color: var(--white); text-align: center; padding: 64px 24px;
}
.menu-hero h1 { font-size: clamp(1.875rem, 4vw, 3rem); font-weight: 900; margin-bottom: 12px; }
.menu-hero p { font-size: 1.0625rem; opacity: .8; }

/* Category bar */
.cat-bar-wrap {
  position: sticky; top: var(--header-h); z-index: 800;
  background: var(--surface); border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.cat-bar {
  display: flex; gap: 8px; padding: 14px 24px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  max-width: 1200px; margin: 0 auto;
}
.cat-bar::-webkit-scrollbar { display: none; }
.cat-btn {
  white-space: nowrap; padding: 9px 20px; border-radius: 50px;
  font-size: .875rem; font-weight: 600; color: var(--mid);
  background: var(--light); border: 1.5px solid var(--border);
  transition: var(--trans); flex-shrink: 0;
}
.cat-btn:hover { border-color: var(--orange); color: var(--orange); }
.cat-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

/* Dietary filters */
.filter-wrap { background: var(--light); padding: 14px 0; }
.filter-row { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.filter-label { font-size: .8125rem; font-weight: 600; color: var(--mid); margin-right: 4px; }
.diet-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 50px; font-size: .8125rem; font-weight: 600;
  color: var(--mid); background: var(--surface); border: 1.5px solid var(--border);
  transition: var(--trans); cursor: pointer;
}
.diet-btn:hover { border-color: var(--orange); color: var(--orange); }
.diet-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.diet-btn svg { width: 14px; height: 14px; }
.diet-clear {
  font-size: .8125rem; color: var(--mid); text-decoration: underline;
  cursor: pointer; background: none; border: none; padding: 4px;
  transition: var(--trans);
}
.diet-clear:hover { color: var(--orange); }

/* Menu sections */
.menu-body { padding: 48px 0 120px; background: var(--light); }
.menu-section { margin-bottom: 60px; }
.menu-section-title {
  font-size: 1.375rem; font-weight: 800; color: var(--heading);
  padding-bottom: 14px; margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.menu-section-title span { color: var(--orange); }

/* Menu item cards */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.menu-card {
  background: var(--surface); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid rgba(247,147,30,.2);
  overflow: hidden; transition: var(--trans); display: flex; flex-direction: column;
}
.menu-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.menu-card[data-hidden="true"] { display: none; }

.menu-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.menu-card:hover .menu-card-img img { transform: scale(1.04); }
.diet-badges {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-wrap: wrap; gap: 4px;
}
.diet-badge {
  padding: 2px 8px; border-radius: 50px; font-size: .6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; backdrop-filter: blur(6px);
}
.diet-badge--vegan    { background: rgba(22,163,74,.85); color: #fff; }
.diet-badge--veg      { background: rgba(34,197,94,.85); color: #fff; }
.diet-badge--gf       { background: rgba(234,179,8,.9); color: #1a1a1a; }
.diet-badge--df       { background: rgba(14,165,233,.85); color: #fff; }

.menu-card-body { padding: 18px 18px 0; flex: 1; }
.menu-card-name { font-size: 1.0625rem; font-weight: 700; color: var(--heading); margin-bottom: 6px; line-height: 1.3; }
.menu-card-desc { font-size: .875rem; color: var(--mid); line-height: 1.6; }
.menu-card-footer { padding: 16px 18px 18px; display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-size: 1.25rem; font-weight: 800; color: var(--orange); }
.menu-card-price small { font-size: .75rem; color: var(--mid); font-weight: 500; margin-left: 3px; }

/* Quantity stepper + add */
.qty-add { display: flex; align-items: center; gap: 10px; }
.qty-stepper { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; }
.qty-stepper button {
  width: 32px; height: 32px; font-size: 1.125rem; font-weight: 700;
  color: var(--orange); transition: var(--trans);
}
.qty-stepper button:hover { background: var(--orange-lt); }
.qty-stepper input {
  width: 36px; text-align: center; border: none; border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border); font-size: .9375rem; font-weight: 700;
  color: var(--text); padding: 0; line-height: 32px; -moz-appearance: textfield;
}
.qty-stepper input::-webkit-inner-spin-button, .qty-stepper input::-webkit-outer-spin-button { -webkit-appearance: none; }
.btn-add {
  padding: 7px 16px; background: var(--orange); color: var(--white);
  border-radius: 50px; font-size: .875rem; font-weight: 700;
  transition: var(--trans);
}
.btn-add:hover { background: var(--orange-dk); transform: scale(1.04); }

/* Empty state */
.menu-empty { text-align: center; padding: 60px 24px; display: none; }
.menu-empty svg { width: 56px; height: 56px; color: var(--border); margin: 0 auto 16px; }
.menu-empty p { color: var(--mid); font-size: 1rem; }

/* ----- Floating cart bar ------------------------------- */
.cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 850;
  background: var(--orange); color: var(--white);
  padding: 0 24px;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.15);
}
.cart-bar.visible { transform: translateY(0); }
.cart-bar-inner {
  max-width: 1200px; margin: 0 auto;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.cart-bar-left { display: flex; align-items: center; gap: 12px; }
.cart-bar-icon { font-size: 1.375rem; }
.cart-bar-text { font-weight: 700; font-size: 1rem; }
.cart-bar-text span { font-weight: 400; opacity: .85; font-size: .875rem; }
.cart-bar-total { font-size: 1.25rem; font-weight: 900; }
.btn-view-order {
  background: var(--white); color: var(--orange);
  padding: 10px 24px; border-radius: 50px; font-size: .9375rem; font-weight: 700;
  transition: var(--trans);
}
.btn-view-order:hover { background: #e8e8e8; }

/* ----- Checkout Drawer --------------------------------- */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 950; opacity: 0; visibility: hidden; transition: var(--trans);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw); background: var(--surface);
  z-index: 960; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 48px rgba(0,0,0,.16);
}
.drawer.open { transform: translateX(0); }

.drawer-header {
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.drawer-header h2 { font-size: 1.25rem; font-weight: 800; color: var(--heading); }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: var(--mid); transition: var(--trans);
}
.drawer-close:hover { background: var(--border); color: var(--text); }

.drawer-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer-footer { padding: 16px 24px; border-top: 1px solid var(--border); flex-shrink: 0; background: var(--surface); }

/* Steps */
.drawer-step { display: none; }
.drawer-step.active { display: block; }

/* Cart items */
.cart-empty-msg { text-align: center; padding: 48px 0; color: var(--mid); }
.cart-empty-msg svg { width: 48px; height: 48px; margin: 0 auto 14px; color: var(--border); }
.cart-items { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  display: flex; gap: 14px; padding: 14px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--light);
}
.cart-item-img { width: 64px; height: 64px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .9375rem; color: var(--heading); margin-bottom: 4px; }
.cart-item-price { font-size: .9375rem; color: var(--orange); font-weight: 700; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-qty-btn {
  width: 28px; height: 28px; border: 1.5px solid var(--border); border-radius: 50%;
  font-size: 1rem; font-weight: 700; color: var(--orange);
  display: flex; align-items: center; justify-content: center; transition: var(--trans);
}
.cart-qty-btn:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.cart-item-qty { font-size: .9375rem; font-weight: 700; min-width: 24px; text-align: center; }
.cart-item-remove { margin-left: auto; color: var(--mid); font-size: .8125rem; cursor: pointer; }
.cart-item-remove:hover { color: #e53e3e; }

/* Cart summary */
.cart-summary { margin-top: 20px; border-top: 1px solid var(--border); padding-top: 16px; }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .9375rem; color: var(--mid); }
.cart-row.total { font-weight: 800; font-size: 1.125rem; color: var(--text); margin-top: 8px; padding-top: 8px; border-top: 2px solid var(--border); }
.cart-row.total .cart-row-val { color: var(--orange); }

/* Pickup/Delivery toggle */
.toggle-group { display: flex; gap: 0; border: 1.5px solid var(--border); border-radius: 50px; overflow: hidden; margin-bottom: 20px; }
.toggle-btn {
  flex: 1; padding: 10px 16px; font-size: .9375rem; font-weight: 600;
  color: var(--mid); background: var(--surface); transition: var(--trans); text-align: center;
}
.toggle-btn.active { background: var(--orange); color: var(--white); }
.toggle-btn:not(.active):hover { background: var(--orange-lt); color: var(--orange); }

.delivery-fields { display: none; }
.delivery-fields.visible { display: block; }
.pickup-address { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 16px; font-size: .875rem; color: var(--mid); margin-bottom: 20px; }
.pickup-address strong { color: var(--text); display: block; margin-bottom: 2px; }

/* Checkout summary (step 2) */
.checkout-summary { background: var(--light); border-radius: var(--radius-sm); padding: 16px; margin-bottom: 20px; }
.checkout-summary-title { font-size: .875rem; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.checkout-line { display: flex; justify-content: space-between; font-size: .875rem; color: var(--mid); margin-bottom: 6px; }
.checkout-line.total { font-weight: 800; color: var(--text); font-size: 1rem; border-top: 1px solid var(--border); padding-top: 8px; margin-top: 4px; }
.checkout-line.total .chk-val { color: var(--orange); }

/* Confirmation */
.confirm-wrap { text-align: center; padding: 32px 0; }
.confirm-icon {
  width: 72px; height: 72px; background: #f0fdf4; border-radius: 50%;
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
}
.confirm-icon svg { width: 36px; height: 36px; color: #16a34a; }
.confirm-wrap h3 { font-size: 1.375rem; font-weight: 800; color: var(--heading); margin-bottom: 10px; }
.confirm-wrap p { font-size: .9375rem; color: var(--mid); line-height: 1.7; margin-bottom: 20px; }
.confirm-ref { font-size: .8125rem; color: var(--mid); }
.confirm-ref strong { color: var(--text); }

/* ----- Christmas / Birthday landing -------------------- */
.landing-hero {
  min-height: 500px; display: flex; align-items: center;
  background: linear-gradient(135deg, #000000 0%, #1a0800 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.landing-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; }
.landing-hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 640px; }
.landing-hero-content h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.landing-hero-content h1 span { color: var(--orange); }
.landing-hero-content p { font-size: 1.125rem; opacity: .85; margin-bottom: 32px; max-width: 500px; }

/* ----- Footer ------------------------------------------ */
.site-footer { background: #000000; color: rgba(255,255,255,.85); padding: 64px 0 0; border-top: 2px solid var(--orange); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-bg {
  display: inline-flex; background: var(--dark); border-radius: 50%;
  padding: 4px; margin-bottom: 18px; box-shadow: 0 2px 12px rgba(0,0,0,.4);
  overflow: hidden;
}
.footer-brand .logo-bg img { height: 76px; width: 76px; object-fit: contain; display: block; }
.footer-brand p { font-size: .9rem; line-height: 1.75; opacity: .8; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
.footer-social:hover { background: var(--orange); }
.footer-social svg { width: 16px; height: 16px; color: var(--white); }
.footer-col h4 { font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: .9rem; opacity: .75; transition: var(--trans); }
.footer-col ul a:hover { opacity: 1; color: var(--orange); }
.footer-col address { font-style: normal; font-size: .9rem; line-height: 1.8; opacity: .8; }
.footer-col address a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: .8125rem; opacity: .65;
}
.footer-tagline { color: var(--orange); font-weight: 600; font-style: italic; opacity: 1 !important; }

/* ----- Page header (inner pages) ----------------------- */
.page-hero {
  background: linear-gradient(135deg, #141414 0%, #1c1c1c 100%);
  padding: 52px 0 48px;
  border-bottom: 2px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,147,30,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 900; color: var(--heading); margin-bottom: 10px; }
.page-hero p { font-size: 1rem; color: var(--mid); }

/* Breadcrumb */
.breadcrumb {
  display: flex; gap: 4px; align-items: center;
  font-size: .8125rem; font-weight: 500; color: var(--mid);
  margin-bottom: 14px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--orange); font-weight: 600; transition: opacity .2s; }
.breadcrumb a:hover { opacity: .8; text-decoration: underline; }
.breadcrumb [aria-hidden="true"] { opacity: .4; margin: 0 2px; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 600; }

/* ----- Stripe payment loading overlay ------------------ */
.pay-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.88);
  z-index: 9999; display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: 16px;
}
.pay-overlay.visible { display: flex; }
.spinner {
  width: 48px; height: 48px; border: 4px solid var(--border);
  border-top-color: var(--orange); border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile nav is hidden on all screens by default; the media query below enables it */
.mobile-nav { display: none; }

/* ----- Responsive -------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 70px; }
  section { padding: 56px 0; }

  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .header-inner { gap: 12px; padding: 0 16px; }
  .site-logo img { height: 68px; }

  /* Mobile nav — show as off-canvas drawer */
  .mobile-nav {
    display: block;
    position: fixed; top: 0; left: 0; bottom: 0;
    width: min(320px, 88vw);
    background: #000000; z-index: 980; overflow-y: auto;
    transform: translateX(-100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    padding: 24px 24px 40px;
    box-shadow: 4px 0 40px rgba(0,0,0,.5), 4px 0 0 var(--orange);
  }
  .mobile-nav.open { transform: translateX(0); }
  .mobile-nav a {
    display: block; padding: 13px 0; font-size: 1rem; font-weight: 600;
    color: var(--text); border-bottom: 1px solid var(--border); transition: color .15s;
  }
  .mobile-nav a:hover { color: var(--orange); }
  .mobile-nav-sub { padding-left: 12px; background: var(--light); border-radius: 8px; }
  .mobile-nav-sub a {
    font-size: .9rem; font-weight: 500; color: var(--mid);
    border-bottom-color: transparent; padding: 10px 8px;
  }
  .mobile-nav-sub a:hover { color: var(--orange); }

  .hero-title { font-size: 2.25rem; }
  .hero-ctas { gap: 10px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  .drawer { width: 100vw; }
  .cat-bar { padding: 12px 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-content { padding: 72px 0 56px; }
  .btn--lg { padding: 14px 28px; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .cat-tiles .cat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 360px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ==========================================================
   SINGLE-PAGE ORDERING EXPERIENCE
   ========================================================== */

/* Reset body for single-page */
.sp-body { background: var(--light); }

/* ----- Compact Header ------------------------------------ */
.sp-header {
  background: #000000;
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
  border-bottom: 2px solid var(--orange);
}
.sp-header-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 0 28px; height: 72px;
}
.sp-logo {
  flex-shrink: 0; line-height: 0;
  display: inline-flex;
  border-radius: 50%;
  overflow: hidden;
  background: #0d0d0d;
}
.sp-logo img { height: 68px; width: 68px; object-fit: contain; display: block; }

.sp-header-info {
  flex: 1; display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  font-size: .8125rem;
}
.sp-header-tag  { color: rgba(255,255,255,.7); letter-spacing: .02em; }
.sp-header-phone {
  display: flex; align-items: center; gap: 5px;
  color: var(--orange); font-weight: 700; font-size: .875rem;
  transition: opacity .2s;
}
.sp-header-phone:hover { opacity: .8; }
.sp-header-email { color: rgba(255,255,255,.6); font-size: .8125rem; transition: color .2s; }
.sp-header-email:hover { color: var(--orange); }

.sp-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  padding: 8px; border-radius: 6px; background: rgba(255,255,255,.1);
  width: 40px; height: 40px; transition: background .2s; flex-shrink: 0;
}
.sp-hamburger:hover { background: rgba(255,255,255,.2); }
.sp-hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: var(--trans); }
.sp-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.sp-hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.sp-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav drawer */
.sp-mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; bottom: 0; width: min(300px, 88vw);
  background: #000000; z-index: 980; overflow-y: auto;
  transform: translateX(-100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 20px; box-shadow: 4px 0 32px rgba(0,0,0,.5), 4px 0 0 var(--orange);
}
.sp-mobile-nav.open { transform: translateX(0); }
.sp-mobile-nav-top {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px;
}
.sp-mnav-link {
  display: block; padding: 12px 0; font-size: .9375rem; font-weight: 600;
  color: var(--text); border-bottom: 1px solid var(--border); transition: color .15s;
}
.sp-mnav-link:hover { color: var(--orange); }
.sp-mnav-contact { margin-top: 24px; font-size: .875rem; color: var(--mid); line-height: 1.8; }
.sp-mnav-contact a { color: var(--orange); font-weight: 600; }

/* ----- Hero --------------------------------------------- */
.sp-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a0800 100%);
  padding: 80px 28px 72px;
}
.sp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .2;
}
.sp-hero-content { position: relative; z-index: 2; max-width: 640px; }
.sp-hero-eyebrow {
  font-size: .8125rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .14em; color: var(--orange); margin-bottom: 16px;
}
.sp-hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 18px;
}
.sp-hero-accent { color: var(--orange); }
.sp-hero-sub {
  font-size: 1.0625rem; color: rgba(255,255,255,.78); line-height: 1.7;
  max-width: 520px;
}

/* ----- Sticky Controls ---------------------------------- */
.sp-controls {
  position: sticky; top: 72px; z-index: 800;
  background: var(--surface); border-bottom: 1px solid var(--border);
  box-shadow: 0 3px 12px rgba(0,0,0,.07);
}

/* Category tab row */
.sp-cats {
  display: flex; gap: 0; overflow-x: auto; scrollbar-width: none;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.sp-cats::-webkit-scrollbar { display: none; }
.sp-cat-btn {
  padding: 14px 18px;
  font-size: .875rem; font-weight: 600; color: var(--mid);
  background: none; border: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap; cursor: pointer;
  transition: color .2s, border-color .2s;
  margin-bottom: -1px; flex-shrink: 0;
}
.sp-cat-btn:hover { color: var(--orange); }
.sp-cat-btn.active { color: var(--orange); border-bottom-color: var(--orange); font-weight: 700; }

/* Dietary filter row */
.sp-filters {
  display: flex; align-items: center; gap: 8px; padding: 10px 20px; flex-wrap: wrap;
}
.sp-filter-lbl { font-size: .8125rem; font-weight: 600; color: var(--mid); margin-right: 4px; }
.sp-diet {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 14px; border-radius: 50px; font-size: .8125rem; font-weight: 600;
  color: var(--mid); background: var(--light); border: 1.5px solid var(--border);
  cursor: pointer; transition: var(--trans);
}
.sp-diet:hover { border-color: var(--orange); color: var(--orange); }
.sp-diet.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.sp-diet-clear {
  font-size: .8125rem; color: var(--mid); background: none; border: none;
  text-decoration: underline; cursor: pointer; padding: 5px; transition: color .2s;
}
.sp-diet-clear:hover { color: var(--orange); }

/* ----- Menu Body ---------------------------------------- */
.sp-menu { padding: 0 0 100px; }

/* Each category section */
.sp-section { padding: 40px 28px 0; max-width: 1280px; margin: 0 auto; }
.sp-section + .sp-section { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 40px; }

.sp-section-head { margin-bottom: 24px; }
.sp-section-title {
  font-size: 1.375rem; font-weight: 800; color: var(--heading);
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.sp-section-desc { font-size: .9rem; color: var(--mid); }

.sp-section-empty {
  padding: 32px; text-align: center; color: var(--mid); font-size: .9375rem;
  background: var(--light); border-radius: var(--radius); margin-top: 12px;
}

/* ----- Product grid ------------------------------------- */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ----- Product card ------------------------------------- */
.sp-card {
  background: var(--surface);
  border: 1px solid rgba(247,147,30,.2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.sp-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.sp-card[data-hidden="true"] { display: none; }

/* Image */
.sp-card-img {
  position: relative; aspect-ratio: 3/2; overflow: hidden; flex-shrink: 0;
  background: var(--light);
}
.sp-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.sp-card:hover .sp-card-img img { transform: scale(1.05); }
.sp-badge-popular {
  position: absolute; top: 10px; right: 10px;
  background: var(--orange); color: #fff;
  padding: 3px 10px; border-radius: 50px;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}

/* Body */
.sp-card-body { padding: 16px 16px 0; flex: 1; }
.sp-card-name {
  font-size: .9375rem; font-weight: 700; color: var(--heading);
  margin-bottom: 6px; line-height: 1.35;
}
.sp-card-desc {
  font-size: .8125rem; color: var(--mid); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.sp-card-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 10px; }

/* Dietary tag pills */
.stag {
  padding: 2px 8px; border-radius: 4px;
  font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em;
}
.stag--vegan { background: #dcfce7; color: #15803d; }
.stag--veg   { background: #d1fae5; color: #047857; }
.stag--gf    { background: #fef3c7; color: #b45309; }
.stag--df    { background: #dbeafe; color: #1d4ed8; }

/* Footer */
.sp-card-foot {
  padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 12px; margin-top: auto;
  border-top: 1px solid var(--border);
}
.sp-card-price {
  font-size: 1.25rem; font-weight: 800; color: var(--orange);
  display: flex; align-items: baseline; gap: 6px;
}
.sp-card-unit { font-size: .75rem; color: var(--mid); font-weight: 400; }
.sp-card-action { display: flex; align-items: center; gap: 10px; }

/* Re-skin the shared qty-stepper for this layout */
.sp-card .qty-stepper {
  display: flex; align-items: center; border: 1.5px solid var(--border);
  border-radius: 6px; overflow: hidden; height: 38px; flex-shrink: 0;
}
.sp-card .qty-stepper button {
  width: 34px; height: 100%; font-size: 1.125rem; font-weight: 700;
  color: var(--heading); background: none; cursor: pointer; transition: background .15s;
}
.sp-card .qty-stepper button:hover { background: var(--orange-lt); color: var(--orange); }
.sp-card .qty-stepper input {
  width: 36px; text-align: center; border: none;
  border-left: 1.5px solid var(--border); border-right: 1.5px solid var(--border);
  font-size: .9375rem; font-weight: 700; height: 100%;
  -moz-appearance: textfield; background: none;
}
.sp-card .qty-stepper input::-webkit-inner-spin-button,
.sp-card .qty-stepper input::-webkit-outer-spin-button { -webkit-appearance: none; }

/* "Add to Order" button */
.sp-card .btn-add {
  flex: 1; height: 38px; padding: 0 14px;
  background: var(--dark); color: #fff; border: none;
  border-radius: 6px; font-size: .875rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.sp-card .btn-add:hover { background: var(--orange); }

/* ----- Single-page footer ------------------------------- */
.sp-footer {
  background: #000000; color: rgba(255,255,255,.8);
  padding: 48px 28px 32px;
  border-top: 2px solid var(--orange);
}
.sp-footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 48px; align-items: flex-start;
}
.sp-footer-brand { flex-shrink: 0; min-width: 160px; }
.sp-footer-logo-wrap {
  background: var(--dark); border-radius: 50%;
  display: inline-flex; padding: 5px; margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.sp-footer-logo-wrap img { width: 56px; height: 56px; object-fit: contain; }
.sp-footer-tagline { font-size: .9375rem; font-style: italic; color: var(--orange); font-weight: 600; margin-bottom: 4px; }
.sp-footer-copy { font-size: .8125rem; opacity: .5; }

.sp-footer-cols { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.sp-footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.sp-footer-col a {
  display: block; font-size: .875rem; opacity: .7; margin-bottom: 8px; transition: opacity .2s, color .2s;
}
.sp-footer-col a:hover { opacity: 1; color: var(--orange); }
.sp-footer-col p { font-size: .875rem; opacity: .7; margin-bottom: 8px; line-height: 1.6; }
.sp-footer-col p a { display: inline; margin: 0; }

/* ----- Single-page responsive --------------------------- */
@media (max-width: 1100px) {
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sp-header-info .sp-header-tag,
  .sp-header-info .sp-header-email { display: none; }
  .sp-hamburger { display: flex; }
  .sp-mobile-nav { display: block; }
  .sp-header-inner { padding: 0 16px; }
  .sp-controls { top: 72px; }
  .sp-hero { padding: 56px 20px 48px; }
  .sp-section { padding: 28px 16px 0; }
  .sp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .sp-footer-inner { flex-direction: column; gap: 28px; }
  .sp-footer-cols { grid-template-columns: 1fr; gap: 20px; }
  .sp-cats { padding: 0 12px; }
  .sp-cat-btn { padding: 12px 12px; font-size: .8125rem; }
  .sp-filters { padding: 8px 12px; gap: 6px; }
}

@media (max-width: 480px) {
  .sp-grid { grid-template-columns: 1fr; }
  .sp-hero-title { font-size: 2rem; }
  .sp-card-action { flex-direction: column; align-items: stretch; }
  .sp-card .qty-stepper { justify-content: center; }
  .sp-card .btn-add { text-align: center; }
}
