/* ============================================
   SISCREATES — STYLE.CSS
   Mobile-First | Sage Green + Pink + White
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Great+Vibes&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ─────────────────────────────── */
:root {
  /* Sage green palette */
  --sage:         #7a9e7e;
  --sage-mid:     #9db89f;
  --sage-light:   #c4d9c5;
  --sage-pale:    #e8f0e8;
  --sage-blush:   #f3f8f3;

  /* Pink palette */
  --pink:         #d4789a;
  --pink-mid:     #e09ab5;
  --pink-light:   #f2c4d5;
  --pink-pale:    #fce8f1;
  --pink-blush:   #fff5f9;

  /* Neutral */
  --white:        #ffffff;
  --cream:        #fdfaf6;
  --dark:         #1e2b1f;
  --dark-mid:     #3a4e3b;
  --gray:         #8a9a8b;
  --gray-light:   #d0d8d0;

  /* Accent */
  --gold:         #c9a96e;

  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'DM Sans', sans-serif;

  /* Layout */
  --nav-h:        60px;
  --bottom-bar-h: 64px;
  --radius:       16px;
  --radius-sm:    10px;
  --radius-xs:    6px;

  /* Shadows */
  --shadow:       0 4px 24px rgba(122,158,126,0.15);
  --shadow-pink:  0 4px 24px rgba(212,120,154,0.18);
  --shadow-lg:    0 8px 40px rgba(122,158,126,0.22);

  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-h);
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ── Maintenance Banner ─────────────────────────── */
.maintenance-banner {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: white;
}
.maintenance-banner.show { display: flex; }
.maintenance-banner h2 {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--sage-light);
  margin-bottom: 1rem;
}
.maintenance-banner p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 400px;
  line-height: 1.7;
}

/* ── Top Nav (desktop) ──────────────────────────── */
.top-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  z-index: 900;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  box-shadow: 0 2px 16px rgba(122,158,126,0.1);
}
.top-nav .brand {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--sage);
  letter-spacing: 0.02em;
}
.top-nav .nav-links { display: flex; gap: 0.2rem; align-items: center; }
.top-nav .nav-links a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-mid);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-xs);
  transition: var(--transition);
}
.top-nav .nav-links a:hover { background: var(--sage-pale); color: var(--sage); }
.top-nav .nav-links a.active { background: var(--sage-pale); color: var(--sage); font-weight: 700; }
.top-nav .nav-order-btn {
  background: var(--sage);
  color: white;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: var(--transition);
  margin-left: 0.5rem;
}
.top-nav .nav-order-btn:hover { background: var(--dark-mid); }

/* ── Mobile Top Bar ─────────────────────────────── */
.mobile-topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 52px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-topbar .brand {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--sage);
}

/* ── Bottom Nav Bar ─────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-bar-h);
  background: var(--pink-mid);
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: stretch;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(224,154,181,0.25);
}
.bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
  position: relative;
}
.bottom-nav a svg { width: 20px; height: 20px; }
.bottom-nav a.active { color: #fff; }
.bottom-nav a.active::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: #fff;
  border-radius: 0 0 4px 4px;
}
.bottom-nav a:hover { color: #fff; }

/* ── Floating WhatsApp ──────────────────────────── */
.fab-whatsapp {
  position: fixed;
  bottom: calc(var(--bottom-bar-h) + 16px);
  right: 16px;
  width: 52px; height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 800;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.fab-whatsapp:hover { transform: scale(1.1); }
.fab-whatsapp svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-green {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ── Floating Chatbot ───────────────────────────── */
.fab-chat {
  position: fixed;
  bottom: calc(var(--bottom-bar-h) + 80px);
  right: 16px;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--sage), var(--sage-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 800;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.fab-chat:hover { transform: scale(1.1); }
.fab-chat svg { width: 26px; height: 26px; fill: white; }

.chatbot-panel {
  position: fixed;
  bottom: calc(var(--bottom-bar-h) + 144px);
  right: 16px;
  width: min(340px, calc(100vw - 32px));
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 800;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sage-light);
  max-height: 440px;
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  background: linear-gradient(135deg, var(--sage), var(--dark-mid));
  color: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-header .chat-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.chatbot-header .chat-info { flex: 1; }
.chatbot-header .chat-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}
.chatbot-header .chat-status {
  font-size: 0.68rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 4px;
}
.chatbot-header .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7fff7f;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.chatbot-header .close-chat {
  background: none; border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem; cursor: pointer;
  line-height: 1; padding: 2px;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--sage-blush);
}
.msg {
  max-width: 85%;
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}
.msg.bot {
  background: white;
  border: 1px solid var(--sage-light);
  color: var(--dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg.user {
  background: var(--sage);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chatbot-quick {
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  background: white;
  border-top: 1px solid var(--sage-pale);
}
.quick-btn {
  background: var(--sage-pale);
  border: 1px solid var(--sage-light);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--sage);
  cursor: pointer;
  transition: var(--transition);
}
.quick-btn:hover { background: var(--sage); color: white; border-color: var(--sage); }
.chatbot-input-row {
  display: flex;
  border-top: 1px solid var(--sage-light);
  background: white;
}
.chatbot-input-row input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--dark);
  background: transparent;
}
.chatbot-input-row button {
  background: var(--sage);
  border: none;
  color: white;
  padding: 0 14px;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
}
.chatbot-input-row button:hover { background: var(--dark-mid); }

/* ── Toast Notification ─────────────────────────── */
.toast {
  position: fixed;
  bottom: calc(var(--bottom-bar-h) + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s ease;
  white-space: nowrap;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Section Titles ─────────────────────────────── */
.section-label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--pink);
  display: block;
  margin-bottom: 0.2rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  font-style: italic;
}
.section-divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--pink), rgba(212,120,154,0.3));
  border-radius: 2px;
  margin: 0.8rem 0 1.5rem;
}
.section-head { margin-bottom: 2rem; }
.section-head.center { text-align: center; }
.section-head.center .section-divider { margin: 0.8rem auto 1.5rem; }

/* ── Pink section break borders ─────────────────── */
section + section,
section + div.site-banner + section {
  border-top: 1.5px solid rgba(212,120,154,0.35);
}

/* ── Pink stripe at very top of page ────────────── */
body::before {
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background: var(--pink, #d4789a);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* ── Border below mobile topbar ─────────────────── */
.mobile-topbar {
  border-top: 3px solid var(--pink, #d4789a);
  border-bottom: 1.5px solid rgba(212,120,154,0.4);
}

/* ── Border below desktop top nav ───────────────── */
.top-nav {
  border-top: 3px solid var(--pink, #d4789a);
  border-bottom: 1.5px solid rgba(212,120,154,0.4);
}

/* ── Containers & Sections ──────────────────────── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
.section { padding: 3.5rem 0; }
.pt-nav { padding-top: calc(52px + 1rem); } /* mobile topbar offset */

/* ── Cards ──────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1.5px solid var(--pink-light);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1.5px solid var(--pink-light);
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage);
  color: white;
  box-shadow: 0 4px 16px rgba(122,158,126,0.35);
}
.btn-primary:hover { background: var(--dark-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-pink {
  background: var(--pink);
  color: white;
  box-shadow: 0 4px 16px rgba(212,120,154,0.3);
}
.btn-pink:hover { background: #c0658a; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--sage);
  border: 2px solid var(--sage);
}
.btn-outline:hover { background: var(--sage); color: white; }
.btn-outline-pink {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline-pink:hover { background: var(--pink); color: white; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }
.btn-lg { padding: 0.9rem 2.2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Form Elements ──────────────────────────────── */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-mid);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(122,158,126,0.15); }
.form-control::placeholder { color: var(--gray); }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a9e7e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* File Upload */
.file-upload-area {
  border: 2px dashed var(--sage-light);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--sage-blush);
}
.file-upload-area:hover { border-color: var(--sage); background: var(--sage-pale); }
.file-upload-area .upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.file-upload-area p { font-size: 0.82rem; color: var(--gray); line-height: 1.5; }
.file-upload-area input[type="file"] { display: none; }

/* ── Notice Box ─────────────────────────────────── */
.notice-box {
  background: var(--sage-pale);
  border: 1.5px dashed var(--sage-mid);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 1rem 0;
  font-size: 0.84rem;
  color: var(--dark-mid);
  line-height: 1.7;
}
.notice-box.pink {
  background: var(--pink-pale);
  border-color: var(--pink-light);
}
.notice-box strong { color: var(--sage); }
.notice-box.pink strong { color: var(--pink); }

/* ── Policy Box ─────────────────────────────────── */
.policy-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--sage-light);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.policy-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 0.6rem;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.policy-card p {
  font-size: 0.85rem;
  color: var(--dark-mid);
  line-height: 1.7;
}

/* ── Price Cards ────────────────────────────────── */
.price-section { padding: 2rem 0; }
.price-category {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid var(--sage-pale);
}
.price-category-header {
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-blush));
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 2px solid var(--sage-light);
}
.price-category-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-mid);
  font-style: italic;
}
.price-rows { padding: 0.4rem 0; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-bottom: 1px solid var(--sage-blush);
  font-size: 0.9rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .size { font-weight: 600; color: var(--dark-mid); }
.price-row .amount {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--sage);
  font-size: 1rem;
}

/* ── Flavor Grid ────────────────────────────────── */
.flavor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 1rem 0;
}
.flavor-card {
  background: var(--sage-blush);
  border: 1.5px solid var(--sage-light);
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.7rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-mid);
  line-height: 1.4;
  transition: var(--transition);
}
.flavor-card:hover {
  border-color: var(--sage);
  background: var(--sage-pale);
  transform: translateY(-2px);
}
.flavor-card .flavor-emoji { font-size: 1.4rem; display: block; margin-bottom: 0.3rem; }

/* ── Hero Slider ────────────────────────────────── */
#hero-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero {
  position: relative;
  width: 100%;
  min-height: 88vh;
  overflow: hidden;
  background: var(--dark);
  margin-top: 52px; /* mobile topbar */
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; pointer-events: all; z-index: 1; }
.slide video, .slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,35,22,0.88) 0%,
    rgba(20,35,22,0.45) 45%,
    rgba(20,35,22,0.18) 100%
  );
  z-index: 2;
}
.slide-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 600px;
}
.slide-brand {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 9vw, 4.5rem);
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 0 50px rgba(196,217,197,0.5);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.slide-sub {
  font-size: clamp(0.88rem, 2.5vw, 1.05rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.slide-btn {
  background: white;
  color: var(--dark);
  padding: 0.7rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  display: inline-block;
  letter-spacing: 0.03em;
}
.slide-btn:hover { background: var(--sage-light); transform: scale(1.04); }

.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}
.hero-arrow:hover { background: var(--sage); border-color: var(--sage); }
.hero-arrow.prev { left: 12px; }
.hero-arrow.next { right: 12px; }
.hero-dots {
  position: absolute;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; gap: 7px;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active { background: white; transform: scale(1.35); }

/* ── Page Hero Banner ───────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--sage) 0%, var(--dark-mid) 100%);
  color: white;
  padding: 5.5rem 1.5rem 3rem;
  text-align: center;
  margin-top: 52px;
}
.page-hero .label {
  font-family: var(--font-script);
  font-size: 1.6rem;
  opacity: 0.88;
  display: block;
  margin-bottom: 0.3rem;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
}
.page-hero p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-top: 0.6rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── About Strip ────────────────────────────────── */
.about-strip {
  background: linear-gradient(135deg, var(--sage-pale), var(--sage-blush));
  padding: 2.5rem 1rem;
  text-align: center;
}
.about-strip .bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--dark-mid);
  max-width: 650px;
  margin: 1rem auto 1.5rem;
}
.hours-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.hour-chip {
  background: white;
  border: 1px solid var(--sage-light);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-mid);
  text-align: center;
  min-width: 130px;
}
.hour-chip span { display: block; color: var(--sage); font-size: 0.72rem; margin-bottom: 0.15rem; }

/* ── Featured Products Grid ─────────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.feat-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.feat-card video, .feat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.feat-card:hover video, .feat-card:hover img { transform: scale(1.06); }
.feat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,35,22,0.82) 0%, transparent 55%);
}
.feat-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  color: white;
  padding: 1.5rem 0.9rem 0.9rem;
}
.feat-card-label .name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  display: block;
  line-height: 1.2;
}
.feat-card-label .price {
  font-size: 0.78rem;
  opacity: 0.85;
  margin-top: 0.2rem;
}
.feat-card-label .view-btn {
  display: inline-block;
  margin-top: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  transition: var(--transition);
}
.feat-card:hover .view-btn { background: white; color: var(--dark); }

/* ── Testimonials ───────────────────────────────── */
.testimonials-track {
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  padding: 0.5rem 1rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex-shrink: 0;
  width: min(300px, 80vw);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--pink-light);
  scroll-snap-align: start;
}
.testimonial-card .stars {
  color: #f4b942;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.testimonial-card .quote {
  font-size: 0.88rem;
  color: var(--dark-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.8rem;
}
.testimonial-card .author {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--sage);
}
.testimonial-card .location {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── Subscribe Section ──────────────────────────── */
.subscribe-section {
  background: linear-gradient(135deg, var(--dark-mid) 0%, var(--dark) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  color: white;
}
.subscribe-section .label {
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--sage-light);
  display: block;
  margin-bottom: 0.3rem;
}
.subscribe-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.subscribe-section p {
  font-size: 0.88rem;
  opacity: 0.8;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 400px;
  margin: 0 auto;
}
.subscribe-form input {
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  font-size: 0.88rem;
  outline: none;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--pink, #d4789a);
  color: white;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.5); }
.subscribe-form input:focus { background: rgba(255,255,255,0.15); border-color: var(--pink, #d4789a); }
.subscribe-form button {
  background: var(--sage);
  color: white;
  border: 2px solid var(--pink, #d4789a);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.subscribe-form button:hover { background: var(--sage-mid); }

/* ── CTA Banner ─────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--sage) 0%, var(--dark-mid) 100%);
  color: white;
  text-align: center;
  padding: 3rem 1.5rem;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.cta-banner p {
  font-size: 0.9rem;
  opacity: 0.88;
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-banner .btn-white {
  background: white;
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.cta-banner .btn-white:hover { background: var(--sage-pale); }

/* ── Social Row ─────────────────────────────────── */
.social-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1rem 0;
}
.social-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--sage-pale);
  border: 1.5px solid var(--sage-light);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-mid);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover { background: var(--sage); color: white; border-color: var(--sage); }
.social-btn svg { width: 17px; height: 17px; }

/* ── Delivery Zones Table ───────────────────────── */
.delivery-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 0.5rem;
}
.delivery-table th {
  background: var(--sage-pale);
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--dark-mid);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.delivery-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--sage-blush);
  color: var(--dark-mid);
}
.delivery-table td:last-child { font-weight: 700; color: var(--sage); }
.delivery-table tr:last-child td { border-bottom: none; }

/* ── Gallery ────────────────────────────────────── */
.gallery-tabs {
  display: flex;
  overflow-x: auto;
  gap: 0.6rem;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-tabs::-webkit-scrollbar { display: none; }
.gallery-tab {
  flex-shrink: 0;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  background: var(--sage-pale);
  border: 1.5px solid var(--sage-light);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--dark-mid);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-tab.active, .gallery-tab:hover {
  background: var(--sage);
  color: white;
  border-color: var(--sage);
}
.gallery-panel { display: none; }
.gallery-panel.active { display: block; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0 1rem 1rem;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--sage-pale);
  cursor: pointer;
  position: relative;
}
.gallery-item video, .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover video, .gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner video, .lightbox-inner img {
  max-width: 90vw; max-height: 80vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute; top: -40px; right: 0;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer; line-height: 1;
}

/* ── Tabs (Audiences - Kids/Adults) ─────────────── */
.audience-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--sage-blush);
  padding: 0.4rem;
  border-radius: 50px;
}
.audience-tab {
  flex: 1;
  padding: 0.55rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--gray);
  transition: var(--transition);
}
.audience-tab.active {
  background: white;
  color: var(--sage);
  box-shadow: 0 2px 8px rgba(122,158,126,0.18);
}

/* ── Blog / Recipe Cards ────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--pink-light);
  cursor: pointer;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
  aspect-ratio: 16/9;
  background: var(--sage-pale);
  overflow: hidden;
}
.blog-card-thumb img, .blog-card-thumb video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.blog-card-thumb .thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--sage-pale), var(--pink-pale));
}
.blog-card-body { padding: 1.2rem; }
.blog-card-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.blog-card-excerpt {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── Order Form ─────────────────────────────────── */
.order-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--sage-pale);
  margin-top: 1.5rem;
}
.order-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--sage-pale);
}

/* ── Order Success ──────────────────────────────── */
.order-success {
  text-align: center;
  padding: 2rem 1rem;
  display: none;
}
.order-success .success-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: pop-in 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.order-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.order-success p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ── Footer ─────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2.5rem 1rem;
  font-size: 0.8rem;
  line-height: 1.8;
}
footer .footer-brand {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--sage-light);
  display: block;
  margin-bottom: 0.5rem;
}
footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.2rem;
  margin: 0.75rem 0;
}
footer .footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  transition: var(--transition);
}
footer .footer-links a:hover { color: var(--sage-light); }
footer .footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0.75rem 0;
}
footer .footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 1.5px solid #fff;
}
footer .footer-social a:hover { background: var(--sage); border-color: var(--sage); }
footer .footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.7); }

/* ── Loader ─────────────────────────────────────── */
.page-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  gap: 1rem;
  color: var(--gray);
  font-size: 0.85rem;
}
.loader-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--sage-light);
  border-top-color: var(--sage);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Animations ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(28px); }
.fade-in { opacity: 0; }
.slide-left  { opacity: 0; transform: translateX(-40px); }
.slide-right { opacity: 0; transform: translateX(40px); }
.scale-in { opacity: 0; transform: scale(0.88); }

/* ── Responsive ─────────────────────────────────── */
@media (min-width: 600px) {
  .featured-grid    { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid     { grid-template-columns: repeat(3, 1fr); }
  .flavor-grid      { grid-template-columns: repeat(3, 1fr); }
  .blog-grid        { grid-template-columns: 1fr 1fr; }
  .subscribe-form   { flex-direction: row; }
  .subscribe-form input { flex: 1; }
}

@media (min-width: 900px) {
  body              { padding-bottom: 0; }
  .top-nav          { display: flex; }
  .bottom-nav       { display: none; }
  .mobile-topbar    { display: none; }
  .hero             { margin-top: var(--nav-h); min-height: 92vh; }
  .page-hero        { margin-top: var(--nav-h); }
  .pt-nav           { padding-top: calc(var(--nav-h) + 1rem); }
  .fab-whatsapp     { bottom: 24px; right: 24px; }
  .fab-chat         { bottom: 90px; right: 24px; }
  .chatbot-panel    { bottom: 160px; right: 24px; }
  .featured-grid    { grid-template-columns: repeat(4, 1fr); }
  .gallery-grid     { grid-template-columns: repeat(4, 1fr); }
  .blog-grid        { grid-template-columns: repeat(3, 1fr); }
  .section          { padding: 5rem 0; }
  .container        { padding: 0 2rem; }
}
