/* ============================================================
   SumthingTasty Design System — Luxury White + Whisper Gold
   v2.0 2026-05-20
   ============================================================ */

/* 1. Custom Properties */
:root {
  --c-bg:        #FFFFFF;
  --c-section:   #FAFAF8;
  --c-charcoal:  #111111;
  --c-charcoal-hover: #2a2a2a;
  --c-gold:      #C9A84C;
  --c-gold-hover:#A8893A;
  --c-gold-rgb:  201, 168, 76;
  --c-text:      var(--c-charcoal);
  --c-muted:     #888888;
  --c-divider:   #ECECEC;
  --c-wa:        #25D366;
  --c-wa-hover:  #1DA851;
  --ff-serif:    'Cormorant Garamond', Georgia, serif;
  --ff-sans:     'DM Sans', system-ui, sans-serif;
  --section-py:  100px;
  --content-max: 1280px;
  --card-r:      2px;
  --btn-r:       0px;
  --gap:         24px;
  --transition:  0.3s ease;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-bg);
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* 3. Typography */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-serif);
  line-height: 1.15;
  color: var(--c-text);
}
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 400; }
h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 600; }

.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--c-muted);
  max-width: 560px;
  margin: 12px auto 48px;
}

/* 4. Layout */
.container-st {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.section-alt  { background: var(--c-section); }

/* 5. Buttons */
.btn-st {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--btn-r);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.15s ease, box-shadow 0.15s ease;
  line-height: 1;
}
.btn-gold { background: var(--c-gold); color: #fff; }
.btn-gold:hover {
  background: var(--c-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--c-gold-rgb),0.3);
  color: #fff;
}
.btn-dark { background: var(--c-charcoal); color: #fff; }
.btn-dark:hover { background: var(--c-charcoal-hover); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--c-charcoal);
  border: 1px solid var(--c-divider);
}
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }
.btn-wa {
  background: var(--c-wa);
  color: #fff;
  border-radius: 30px;
  padding: 10px 18px;
  font-size: 13px;
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition);
}
.btn-wa:hover { background: var(--c-wa-hover); color: #fff; }

/* 6. Announcement Bar */
.announcement-bar {
  background: var(--c-charcoal);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 9px 24px;
  font-family: var(--ff-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.announcement-bar strong { color: var(--c-gold); font-weight: 600; }

/* 7. Header */
.st-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-divider);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.st-header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 72px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.logo-text {
  font-family: var(--ff-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--c-charcoal);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.site-logo {
  height: 72px;
  width: auto;
  display: block;
}
.logo-tagline {
  display: block;
  font-family: var(--ff-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.header-nav ul { display: flex; gap: 36px; }
.header-nav a {
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  position: relative;
  padding-bottom: 3px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--transition);
}
.header-nav a:hover { color: var(--c-charcoal); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }
.header-nav a.active { color: var(--c-gold); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-charcoal);
  font-size: 20px;
  padding: 4px;
  transition: color var(--transition);
  line-height: 1;
}
.cart-toggle:hover { color: var(--c-gold); }
.cart-badge {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--c-gold);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge.hidden { display: none; }

/* 8. SlickNav (mobile) override */
.slicknav_menu { display: none; background: var(--c-charcoal); }
.slicknav_nav { background: var(--c-charcoal); padding: 8px 0; }
.slicknav_nav a, .slicknav_nav .slicknav_item a {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--ff-sans);
  font-size: 14px;
  padding: 12px 20px !important;
  margin: 0 !important;
}
.slicknav_nav a:hover { background: rgba(255,255,255,0.05) !important; color: #fff !important; }
.slicknav_btn {
  background: none !important;
  border: none !important;
  padding: 8px !important;
  margin: 0 !important;
}
.slicknav_icon-bar { background: #C9A84C !important; }

/* 9. Cart Overlay + Drawer */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 400px; max-width: 100vw; height: 100%;
  background: #fff;
  z-index: 2000;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--c-divider);
  flex-shrink: 0;
}
.cart-header h3 { font-size: 18px; font-weight: 700; }
.cart-close {
  background: none; border: none;
  font-size: 24px; cursor: pointer;
  color: var(--c-muted); line-height: 1;
  transition: color var(--transition);
}
.cart-close:hover { color: var(--c-text); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty {
  text-align: center; padding: 48px 0;
  color: var(--c-muted); font-size: 15px;
}
.cart-item {
  display: flex; gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-divider);
}
.cart-item-img {
  width: 64px; height: 64px;
  object-fit: cover;
  border-radius: var(--card-r);
  flex-shrink: 0;
}
.cart-item-body { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price {
  font-family: var(--ff-serif);
  font-size: 15px; font-weight: 700;
  color: var(--c-gold);
}
.cart-qty {
  display: flex; align-items: center;
  gap: 10px; margin-top: 8px;
}
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--c-divider);
  background: #fff; border-radius: var(--card-r);
  font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition);
}
.qty-btn:hover { border-color: var(--c-gold); }
.qty-num { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--c-muted); align-self: flex-start;
  padding: 2px; line-height: 1;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: #DC2626; }
.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--c-divider);
  flex-shrink: 0;
}
.cart-msg {
  font-size: 13px; padding: 10px 14px;
  border-radius: var(--card-r); margin-bottom: 16px;
}
.cart-msg.warn    { background: #FEF3C7; color: #92400E; }
.cart-msg.nudge   { background: #DBEAFE; color: #1E40AF; }
.cart-msg.success { background: #D1FAE5; color: #065F46; }
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
}
.cart-total-label { font-size: 13px; color: var(--c-muted); }
.cart-total-amount {
  font-family: var(--ff-serif);
  font-size: 24px; font-weight: 700;
}
.cart-checkout { width: 100%; padding: 16px; font-size: 14px; }

/* 10. Product Card */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.product-card {
  background: #fff;
  border: 1px solid var(--c-divider);
  border-radius: var(--card-r);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1;
  background: var(--c-section);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--c-gold);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: var(--card-r);
}
.product-body { padding: 18px 16px; display: flex; flex-direction: column; }
.product-name { font-size: 15px; font-weight: 600; margin-bottom: 6px; line-height: 1.35; }
.product-size {
  font-family: var(--ff-sans);
  font-size: 11px;
  color: var(--c-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-desc {
  font-family: var(--ff-sans);
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.product-price {
  font-family: var(--ff-serif);
  font-size: 20px; font-weight: 700;
  color: var(--c-gold); margin-bottom: 14px;
}
.product-add {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%;
  background: none;
  border: 1px solid var(--c-divider);
  padding: 9px 14px;
  border-radius: var(--card-r);
  font-family: var(--ff-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-charcoal);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}
.product-add:hover {
  border-color: var(--c-charcoal);
  background: var(--c-charcoal);
  color: #fff;
}
.product-add .plus { font-size: 18px; font-weight: 300; }

/* 11. Filter Tabs */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  font-family: var(--ff-sans);
  font-size: 13px; font-weight: 600;
  padding: 8px 22px;
  border-radius: 30px;
  border: 1px solid var(--c-divider);
  background: #fff;
  color: var(--c-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--c-charcoal);
  color: #fff;
  border-color: var(--c-charcoal);
}

/* 12. Shop Controls */
.shop-controls {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px; margin-bottom: 40px;
}
.product-count { font-size: 14px; color: var(--c-muted); }
.sort-select {
  font-family: var(--ff-sans); font-size: 14px;
  padding: 8px 14px;
  border: 1px solid var(--c-divider);
  border-radius: var(--card-r);
  color: var(--c-text); background: #fff;
  cursor: pointer; outline: none;
}
.sort-select:focus { border-color: var(--c-gold); }

/* 13. Hero */
.hero {
  background: var(--c-bg);
  padding: var(--section-py) 0;
  overflow: hidden;
}
.hero-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-rule { width: 36px; height: 1px; background: var(--c-gold); flex-shrink: 0; }
.hero-eyebrow-label {
  font-family: var(--ff-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--c-gold);
}
.hero h1 { color: var(--c-charcoal); margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--c-gold); }
.hero-sub {
  font-size: 15px; color: var(--c-muted);
  max-width: 480px; margin-bottom: 40px; line-height: 1.8;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-img-col { position: relative; height: 440px; }
.hero-img-1, .hero-img-2 {
  position: absolute; object-fit: cover;
  border-radius: var(--card-r);
}
.hero-img-1 {
  width: 72%; height: 82%; top: 0; right: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-img-2 {
  width: 54%; height: 62%; bottom: 0; left: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10);
  border: 5px solid var(--c-bg);
  outline: 1px solid rgba(var(--c-gold-rgb), 0.25);
}

/* 14. Trust Strip */
.trust-strip {
  background: var(--c-section);
  padding: 28px 0;
  border-top: 1px solid var(--c-divider);
  border-bottom: 1px solid var(--c-divider);
}
.trust-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans); font-size: 13px; font-weight: 600;
}
.trust-icon { font-size: 20px; }

/* 14b. Gold Diamond Divider */
.gold-rule-wrap {
  padding: 0 24px;
}
.gold-rule-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.gold-rule-inner::before,
.gold-rule-inner::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-divider);
}
.gold-diamond {
  width: 6px; height: 6px;
  background: var(--c-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* 14c. Values Strip */
.values-strip {
  padding: 72px 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.value-gold-line {
  width: 28px; height: 1px;
  background: var(--c-gold);
  margin: 0 auto 20px;
}
.value-item h4 {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--c-charcoal);
  margin-bottom: 10px;
}
.value-item p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.7;
}

/* 15. How It Works */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.step-card {
  background: #fff;
  border: 1px solid var(--c-divider);
  border-radius: var(--card-r);
  padding: 40px 28px;
  text-align: center;
  position: relative;
}
.step-number {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--c-charcoal); color: #fff;
  font-family: var(--ff-serif); font-size: 22px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-arrow {
  position: absolute; top: 50%; right: -20px;
  transform: translateY(-50%);
  color: var(--c-gold); font-size: 24px; z-index: 1;
}
.step-title { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.step-text { font-size: 14px; color: var(--c-muted); line-height: 1.7; }

/* 16. About Section */
.about-section { background: var(--c-charcoal); }
.about-section .section-label { color: rgba(var(--c-gold-rgb),0.9); }
.about-section h2 { color: #fff; margin-bottom: 20px; }
.about-section h2 em { font-style: italic; color: var(--c-gold); }
.about-body { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.8; }
.about-badges { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.about-badge {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-sans); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.about-badge-icon { font-size: 18px; color: var(--c-gold); width: 22px; text-align: center; }
.about-img-col { position: relative; }
.about-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-video {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: var(--card-r);
  border: 1px solid rgba(var(--c-gold-rgb), 0.35);
  box-shadow: 0 12px 36px rgba(0,0,0,0.30);
}

/* 17. Catering Cards */
.catering-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.catering-card {
  border-radius: var(--card-r);
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.catering-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.70) 100%);
  transition: background var(--transition);
}
.catering-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.22); }
.catering-card:hover::before { background: linear-gradient(160deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.60) 100%); }
.catering-icon { font-size: 30px; margin-bottom: 14px; color: var(--c-gold); position: relative; z-index: 1; }
.catering-label { font-family: var(--ff-sans); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; color: #fff; position: relative; z-index: 1; }

/* 18. Delivery Cards */
.delivery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
.delivery-card {
  padding: 40px 28px; text-align: center;
  border: 1px solid var(--c-divider);
  border-radius: var(--card-r); background: #fff;
}
.delivery-icon { font-size: 34px; margin-bottom: 20px; color: var(--c-gold); }
.delivery-title { font-family: var(--ff-serif); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.delivery-text { color: var(--c-muted); font-size: 14px; line-height: 1.7; }

/* 19. Footer */
.st-footer { background: var(--c-charcoal); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { font-family: var(--ff-serif); font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--card-r);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition);
}
.footer-social a:hover { border-color: var(--c-gold); color: var(--c-gold); }
.footer-col-title {
  font-family: var(--ff-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-gold); margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; }
.footer-contact-icon { font-size: 14px; flex-shrink: 0; margin-top: 3px; color: var(--c-gold); width: 16px; text-align: center; }
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.35);
}

/* 20. Inner Page Hero Band */
.page-hero {
  background: var(--c-section);
  padding: 52px 0;
  border-bottom: 1px solid var(--c-divider);
}
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 8px; }
.breadcrumb { font-size: 13px; color: var(--c-muted); }
.breadcrumb a { color: var(--c-gold); }
.breadcrumb a:hover { color: var(--c-gold-hover); }

/* 21. Catering Page Hero */
.catering-hero {
  background: var(--c-charcoal);
  padding: var(--section-py) 0;
  text-align: center;
  color: #fff;
}
.catering-hero h1 { color: #fff; margin-bottom: 16px; }
.catering-hero .hero-sub { color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* 22. Contact Page */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--c-divider);
  border-radius: var(--card-r);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-family: var(--ff-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 6px;
}
.form-control-st {
  display: block; width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-divider);
  border-radius: var(--card-r);
  font-family: var(--ff-sans); font-size: 15px;
  color: var(--c-text); background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-control-st:focus { border-color: var(--c-gold); }
textarea.form-control-st { resize: vertical; min-height: 130px; }
.contact-info-item {
  display: flex; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-divider);
}
.contact-icon { font-size: 18px; flex-shrink: 0; color: var(--c-gold); width: 22px; text-align: center; margin-top: 2px; }
.contact-detail-title {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--c-muted); margin-bottom: 3px;
}
.contact-detail-text { font-size: 15px; }
.contact-detail-text a { color: var(--c-gold); }
.contact-detail-text a:hover { color: var(--c-gold-hover); }

/* 23. Text info sections (catering page quality/convenience) */
.text-card {
  background: #fff;
  border: 1px solid var(--c-divider);
  border-radius: var(--card-r);
  padding: 40px;
}
.text-card h3 { margin-bottom: 16px; }
.text-card p { color: var(--c-muted); font-size: 15px; line-height: 1.8; }

/* 24. Scroll fade-in */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* 25. Catering Photo Carousel */
.catering-carousel {
  background: var(--c-charcoal);
  padding: 28px 0;
  overflow: hidden;
}
.catering-carousel-label {
  font-family: var(--ff-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-bottom: 16px;
}
.catering-carousel-track-wrap {
  overflow: hidden;
  width: 100%;
}
.catering-carousel-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: carousel-rtl 32s linear infinite;
}
.catering-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes carousel-rtl {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.catering-carousel-img {
  width: 300px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--card-r);
  flex-shrink: 0;
  display: block;
}

/* 26. About page stat numbers */
.stat-num { font-size: clamp(36px, 10vw, 52px); }

/* 26b. Khozi FM portrait pair */
.khozi-pair { display: flex; gap: 16px; max-width: 580px; margin: 0 auto 48px; }
.khozi-pair > div { flex: 1; }
@media (max-width: 480px) {
  .khozi-pair { flex-direction: column; max-width: 320px; }
  .khozi-pair > div { aspect-ratio: 4/3 !important; }
}

/* 27. Responsive */

/* — Tablet / mobile nav (≤991px) — */
@media (max-width: 991px) {
  :root { --section-py: 72px; }
  .announcement-bar { display: none; }
  .header-nav { display: none; }
  .slicknav_menu { display: block !important; }

  /* Hamburger inline with the 72px header bar */
  .btn-wa { display: none; }
  .header-inner { padding-right: 68px; }
  .slicknav-wrap {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 72px;
    pointer-events: none;
    z-index: 200;
  }
  .slicknav_menu {
    background: transparent !important;
    pointer-events: none;
    position: relative;
    height: 72px;
  }
  .slicknav_btn {
    pointer-events: auto !important;
    position: absolute !important;
    top: 50%; right: 12px !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 8px 10px !important;
    background: none !important;
    border: none !important;
  }
  .slicknav_nav {
    pointer-events: auto;
    position: absolute !important;
    top: 72px !important;
    left: 0 !important; right: 0 !important;
    width: 100% !important;
    background: var(--c-charcoal) !important;
    z-index: 9999;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .catering-grid { grid-template-columns: repeat(2, 1fr); }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-img-col { height: 260px; margin-top: 40px; }
  .about-img-col { margin-top: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* — Mobile portrait (≤767px) — */
@media (max-width: 767px) {
  :root { --section-py: 56px; }
  .hero { padding: 60px 0; }
  .hero-img-col { display: none; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn-st { text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .about-video-grid { grid-template-columns: 1fr; gap: 16px; }
  .about-img-col { margin-top: 20px; }
  .about-badges { grid-template-columns: repeat(2, 1fr); }
  .catering-grid { grid-template-columns: 1fr 1fr; }
  .delivery-grid { grid-template-columns: 1fr; }
  .text-card { padding: 24px; }
  .values-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .trust-items { gap: 20px; flex-direction: column; align-items: center; }
  .filter-tabs { justify-content: flex-start; }
  .contact-form-wrap { padding: 24px; }
  .page-hero { padding: 36px 0; }
  .catering-hero { padding: 56px 0; }
  .catering-hero .hero-sub { max-width: 100%; }
  .values-strip { padding: 48px 0; }
  .shop-controls { flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-subtitle { font-size: 14px; }
}

/* — Small phones (≤480px) — */
@media (max-width: 480px) {
  :root { --section-py: 48px; }
  .container-st { padding: 0 16px; }
  .header-inner { padding: 0 16px; padding-right: 60px; }
  .product-grid { grid-template-columns: 1fr; }
  .catering-grid { grid-template-columns: 1fr; }
  .about-badges { grid-template-columns: 1fr; }
  .filter-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .filter-tab { flex-shrink: 0; }
  .text-card { padding: 18px; }
  .step-card { padding: 28px 18px; }
  .catering-card { min-height: 180px; padding: 28px 16px; }
  .footer-bottom { padding: 16px; }
  .trust-items { gap: 14px; }
  h2 { font-size: clamp(24px, 7vw, 44px); }
}

/* ── Cart drawer small-screen tweaks ── */
@media (max-width: 480px) {
  .cart-drawer {
    width: 100vw;
    padding: 0;
  }
  .cart-header {
    padding: 16px;
  }
  .cart-items {
    padding: 12px 16px;
  }
  .cart-footer {
    padding: 14px 16px;
  }
  .cart-item-img {
    width: 52px;
    height: 52px;
  }
}

/* ── SlickNav touch targets (min 44px tap height) ── */
@media (max-width: 991px) {
  .slicknav_nav a {
    min-height: 44px;
    line-height: 44px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* ── Filter tabs scroll-snap ── */
@media (max-width: 480px) {
  .filter-tabs {
    scroll-snap-type: x mandatory;
    scroll-padding-left: 16px;
  }
  .filter-tab {
    scroll-snap-align: start;
  }
}
