/* ============================================================
   Gourmet Grazing NI — "Concept E" design system
   Teal / editorial. Applied to the live, functional site.
   Functional component classes (.cart-*, .nav-links, form IDs)
   are preserved exactly for script.js compatibility.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #FFFFFF;
  --bg-soft:    #F7F9F9;
  --teal:       #0D9A92;
  --teal-dark:  #0A7A73;
  --teal-pale:  #E6F5F4;
  --charcoal:   #191919;
  --text:       #3A3A3A;
  --muted:      #7C7C7C;
  --border:     #EBEBEB;
  --gold:       #E0A82E;
  --font-h:     'Playfair Display', Georgia, serif;
  --font-b:     'Inter', system-ui, sans-serif;
  --radius:     10px;
  --ease-smooth: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--text);
  font-family: var(--font-b); font-weight: 400; line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.97); border-bottom: 1px solid var(--border);
  padding: 0.55rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 1.1rem; text-decoration: none; }
.logo img { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; }
.logo-tagline {
  font-family: var(--font-b); font-size: 0.72rem; color: var(--teal);
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.4;
  max-width: 200px;
}

.nav-right { display: flex; align-items: center; gap: 1.8rem; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.nav-order {
  background: var(--teal); color: #fff; padding: 0.6rem 1.4rem;
  border-radius: var(--radius); font-weight: 600; transition: background 0.2s;
}
.nav-links a.nav-order:hover { background: var(--teal-dark); color: #fff; }

.cart-icon {
  position: relative; cursor: pointer; font-size: 1.3rem; line-height: 1;
  user-select: none;
}
.cart-count {
  position: absolute; top: -8px; right: -10px;
  background: var(--teal); color: #fff; font-family: var(--font-b);
  font-size: 0.65rem; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 50%; display: none; align-items: center; justify-content: center; padding: 0 4px;
}
.mobile-menu-btn {
  display: none; background: none; border: none; font-size: 1.5rem;
  color: var(--charcoal); cursor: pointer; line-height: 1;
}

/* ── HERO (split: text left, image right) ── */
.hero {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center;
  max-width: 1440px; margin: 0 auto; padding: 4.5rem 4rem 5rem 5rem; min-height: 80vh;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--teal-pale); color: var(--teal);
  font-size: 0.72rem; letter-spacing: 0.12em; font-weight: 600;
  text-transform: uppercase; padding: 0.42rem 1.1rem; border-radius: 50px; margin-bottom: 1.8rem;
}
.hero-kicker::before { content: '✦'; font-size: 0.65rem; }
.hero h1 {
  font-family: var(--font-h); font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 1.07; color: var(--charcoal); font-weight: 600; margin-bottom: 1.5rem;
}
.hero .hero-lead {
  font-size: 1.1rem; color: var(--muted); max-width: 460px;
  margin-bottom: 0.6rem; line-height: 1.8; font-weight: 300;
}
.hero .hero-lead.tight { margin-bottom: 1.1rem; }
.hero-events { color: var(--teal); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.6rem; }
.hero-events a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.hero-events a:hover { border-color: var(--teal); }
.hero-btns { display: flex; gap: 1rem; align-items: center; margin-top: 1.6rem; flex-wrap: wrap; }
.btn-teal {
  display: inline-block;
  background: var(--teal); color: #fff; text-decoration: none;
  padding: 0.95rem 2.2rem; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 600; transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: var(--font-b);
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--border); color: var(--charcoal); text-decoration: none;
  padding: 0.95rem 1.9rem; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 500; transition: border-color 0.2s, color 0.2s;
  background: none; cursor: pointer; font-family: var(--font-b);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 20px; overflow: hidden; height: 600px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--teal-pale); }
.trust-strip-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: center; align-items: center; gap: 3rem;
  padding: 1.6rem 2rem; flex-wrap: wrap;
}
.ts-item { display: flex; align-items: center; gap: 0.75rem; }
.ts-num { font-family: var(--font-h); font-size: 1.5rem; color: var(--teal-dark); font-weight: 600; line-height: 1; }
.ts-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.04em; }
.ts-text { font-size: 0.78rem; color: var(--text); line-height: 1.3; }
.ts-text strong { display: block; color: var(--charcoal); font-weight: 600; }
.ts-sep { width: 1px; height: 34px; background: rgba(13,154,146,0.25); }

/* ── GENERIC SECTION ── */
.section { padding: 5.5rem 4rem; max-width: 1320px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; color: var(--teal);
  text-transform: uppercase; letter-spacing: 0.14em; display: block; margin-bottom: 0.6rem;
}
.section-heading {
  font-family: var(--font-h); font-size: clamp(1.9rem, 3vw, 2.7rem);
  color: var(--charcoal); font-weight: 600; line-height: 1.15;
}
.section-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.5rem; }
.section-top a { color: var(--teal); text-decoration: none; font-size: 0.88rem; font-weight: 600; border-bottom: 1.5px solid transparent; transition: border-color 0.2s; white-space: nowrap; }
.section-top a:hover { border-color: var(--teal); }

/* ── PRODUCTS GRID ── */
.products { background: var(--bg-soft); }
.products-wrap { max-width: 1320px; margin: 0 auto; padding: 5.5rem 4rem 6rem; }
.products-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.products-grid > .product-card { flex: 1 1 290px; max-width: 380px; }
.product-card {
  background: var(--bg); border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border); transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-5px); }
.product-image { height: 230px; overflow: hidden; background: var(--teal-pale); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-info h3 { font-family: var(--font-h); font-size: 1.3rem; color: var(--charcoal); margin-bottom: 0.6rem; font-weight: 500; }
.product-info p { font-size: 0.86rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.6rem; font-weight: 300; }
.product-footer { margin-top: auto; padding-top: 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.price { font-family: var(--font-h); font-size: 1.2rem; color: var(--charcoal); font-weight: 600; }
.add-to-cart-btn {
  background: var(--teal); color: #fff; text-decoration: none; border: none; cursor: pointer;
  padding: 0.6rem 1.3rem; border-radius: var(--radius); font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-b); transition: background 0.2s; white-space: nowrap;
}
.add-to-cart-btn:hover { background: var(--teal-dark); }

/* ── ABOUT / STORY (Concept E two-column) ── */
.about-wrap { background: var(--bg-soft); }
.about {
  max-width: 1320px; margin: 0 auto; padding: 6rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; height: 480px; }
.about-media-main { grid-row: 1 / 3; border-radius: 14px; overflow: hidden; }
.about-media-main img { width: 100%; height: 100%; object-fit: cover; }
.about-media-sm { border-radius: 14px; overflow: hidden; }
.about-media-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--muted); line-height: 1.95; margin-bottom: 1.4rem; font-size: 0.97rem; font-weight: 300; }
.about-text .btn-teal { margin-top: 0.6rem; }

/* ── TESTIMONIALS (single-quote carousel) ── */
.testimonials { background: var(--charcoal); }
.testimonials-wrap { max-width: 880px; margin: 0 auto; padding: 3.5rem 4rem; text-align: center; }
.section-heading-teal { color: #fff; text-align: center; }
.testimonials-stars { text-align: center; color: var(--gold); font-size: 0.95rem; letter-spacing: 0.22em; margin-bottom: 1.5rem; }
.quote-carousel { position: relative; max-width: 760px; margin: 0 auto; height: 170px; display: flex; align-items: center; justify-content: center; }
.quote-slide { display: none; opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease-smooth), transform 0.5s var(--ease-smooth); }
.quote-slide.is-active { display: block; }
.quote-slide.is-visible { opacity: 1; transform: none; }
.quote-slide blockquote {
  font-family: var(--font-h); font-style: italic; font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem); color: rgba(255,255,255,0.92);
  line-height: 1.5; margin-bottom: 1.1rem;
}
.quote-slide cite {
  font-style: normal; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); font-family: var(--font-b); font-weight: 600;
}
.quote-dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.quote-dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,0.25); transition: background 0.25s, transform 0.25s;
}
.quote-dot.is-active { background: var(--teal); transform: scale(1.25); }

/* ── CTA SECTION ── */
.cta-section { background: var(--teal-pale); padding: 5.5rem 4rem; text-align: center; }
.cta-section .section-eyebrow { margin-bottom: 0.8rem; }
.cta-section h2 { font-family: var(--font-h); font-size: clamp(2rem, 3.5vw, 3rem); color: var(--charcoal); margin-bottom: 1rem; font-weight: 600; }
.cta-section p { color: var(--muted); margin: 0 auto 2.5rem; max-width: 470px; font-weight: 300; }

/* ── ORDER FORM ── */
#contact { background: var(--teal-pale); }
.order-section-inner { max-width: 760px; margin: 0 auto; padding: 5.5rem 2rem; }
.order-section-inner > h2 { text-align: center; }
.order-form {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 2.5rem; margin-top: 2.5rem; box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.order-form h3 { font-family: var(--font-h); font-size: 1.5rem; color: var(--charcoal); margin-bottom: 1.5rem; font-weight: 500; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.8rem 0.9rem; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 1rem; font-family: var(--font-b); color: var(--text);
  background: #fff; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-pale);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.cta-button {
  display: inline-block; background: var(--teal); color: #fff; text-decoration: none;
  padding: 0.95rem 2.2rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600;
  border: none; cursor: pointer; font-family: var(--font-b); transition: background 0.2s, transform 0.2s;
}
.cta-button:hover { background: var(--teal-dark); transform: translateY(-2px); }
.submit-btn { width: 100%; margin-top: 0.5rem; }
.cart-summary { background: var(--teal-pale); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1.5rem; }
.cart-summary h4 { font-family: var(--font-h); font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.8rem; font-weight: 500; }
.cart-summary-item { display: flex; justify-content: space-between; font-size: 0.9rem; padding: 0.35rem 0; color: var(--text); }
.cart-summary-total { display: flex; justify-content: space-between; font-weight: 700; color: var(--charcoal); border-top: 1px solid rgba(13,154,146,0.25); margin-top: 0.6rem; padding-top: 0.7rem; }
.order-note { max-width: 760px; margin: 1.5rem auto 0; font-size: 0.85rem; color: var(--muted); text-align: center; line-height: 1.7; }
.order-note strong { color: var(--charcoal); }

/* ── CART SIDEBAR ── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300;
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.cart-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw; height: 100%;
  background: #fff; z-index: 400; display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15); transition: right 0.35s var(--ease-smooth);
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-family: var(--font-h); font-size: 1.3rem; color: var(--charcoal); font-weight: 500; }
.close-cart { background: none; border: none; font-size: 1.6rem; color: var(--muted); cursor: pointer; line-height: 1; }
.close-cart:hover { color: var(--charcoal); }
.cart-content { flex-grow: 1; overflow-y: auto; padding: 1.4rem 1.6rem; }
.empty-cart { text-align: center; color: var(--muted); padding: 3rem 1rem; }
.empty-cart p:first-child { font-family: var(--font-h); font-size: 1.15rem; color: var(--charcoal); margin-bottom: 0.5rem; }
.cart-item { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.cart-item-info h4 { font-family: var(--font-h); font-size: 1rem; color: var(--charcoal); font-weight: 500; margin-bottom: 0.2rem; }
.cart-item-info p { font-size: 0.8rem; color: var(--muted); }
.cart-item-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.quantity-controls { display: flex; align-items: center; gap: 0.6rem; }
.quantity-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--charcoal); cursor: pointer; font-size: 1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s;
}
.quantity-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.quantity-display { min-width: 22px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.remove-item { background: none; border: none; color: var(--muted); font-size: 0.75rem; cursor: pointer; text-decoration: underline; }
.remove-item:hover { color: #c0392b; }
.cart-footer { padding: 1.4rem 1.6rem; border-top: 1px solid var(--border); }
.cart-total { font-family: var(--font-h); font-size: 1.25rem; color: var(--charcoal); margin-bottom: 1rem; font-weight: 600; }
.checkout-btn {
  width: 100%; background: var(--teal); color: #fff; border: none; cursor: pointer;
  padding: 0.9rem; border-radius: var(--radius); font-size: 0.95rem; font-weight: 600;
  font-family: var(--font-b); margin-bottom: 0.6rem; transition: background 0.2s;
}
.checkout-btn:hover { background: var(--teal-dark); }
.clear-cart-btn {
  width: 100%; background: none; color: var(--muted); border: 1px solid var(--border); cursor: pointer;
  padding: 0.7rem; border-radius: var(--radius); font-size: 0.85rem; font-weight: 500;
  font-family: var(--font-b); transition: border-color 0.2s, color 0.2s;
}
.clear-cart-btn:hover { border-color: var(--muted); color: var(--charcoal); }

/* ── FOOTER ── */
footer { background: var(--teal-dark); color: #fff; padding: 4rem 4rem 2rem; }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; margin-bottom: 2.5rem; }
.footer-section h3 { font-size: 0.78rem; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.footer-section p { font-size: 0.86rem; color: rgba(255,255,255,0.7); line-height: 2; }
.footer-credits { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.18); padding-top: 1.5rem; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ── PRODUCT PAGES ── */
.product-page { padding-bottom: 3.5rem; }
.back-link {
  display: inline-block; color: var(--teal); text-decoration: none;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.6rem;
  border-bottom: 1.5px solid transparent; transition: border-color 0.2s;
}
.back-link:hover { border-color: var(--teal); }
.product-page-head { text-align: center; max-width: 780px; margin: 0 auto 3rem; }
.product-page-head .section-heading { margin-top: 0.2rem; }
.product-lead { color: var(--muted); font-size: 1rem; line-height: 1.8; font-weight: 300; margin-top: 1.1rem; }
.loading-message { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 2rem; }

.product-cta { background: var(--teal-pale); }
.product-cta-inner { max-width: 1000px; margin: 0 auto; padding: 5rem 4rem; text-align: center; }
.product-cta-inner h2 { font-family: var(--font-h); font-size: clamp(1.7rem, 2.8vw, 2.3rem); color: var(--charcoal); font-weight: 600; margin: 0.4rem 0 1rem; }
.product-cta-inner > p { color: var(--muted); max-width: 600px; margin: 0 auto; font-weight: 300; line-height: 1.75; }
.product-cta-inner .btn-teal, .product-cta-inner .cta-button { margin-top: 2rem; }

/* Closing "custom orders" CTA — white band so it alternates with the
   teal-pale feature band above it on product pages. */
.custom-cta { text-align: center; max-width: 720px; margin: 0 auto; padding: 4.5rem 4rem 5rem; }
.custom-cta h2 { font-family: var(--font-h); font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: var(--charcoal); font-weight: 600; margin: 0.4rem 0 1rem; }
.custom-cta p { color: var(--muted); font-weight: 300; line-height: 1.75; margin: 0 auto 2rem; max-width: 560px; }

/* ── Prose content block (event / info pages) ── */
.page-prose { max-width: 760px; margin: 0 auto; }
.page-prose h2 { margin-bottom: 1.6rem; }
.page-prose p { color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 1.2rem; }
.page-prose p:last-child { margin-bottom: 0; }

/* ── FAQ ── */
.faq-section { max-width: 820px; margin: 0 auto; }
.faq-group { margin-bottom: 2.75rem; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title { font-family: var(--font-h); font-size: 1.3rem; color: var(--charcoal); font-weight: 600; margin-bottom: 0.6rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 1.15rem 2.5rem 1.15rem 0;
  font-family: var(--font-b); font-weight: 500; font-size: 1rem; color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 0.2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--teal); transition: color 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--teal-dark); }
.faq-answer { padding: 0 0 1.35rem; color: var(--muted); line-height: 1.8; font-weight: 300; font-size: 0.95rem; }
.faq-answer a { color: var(--teal); }

/* ── "Most Popular" product badge ── */
.product-image { position: relative; }
.popular-badge {
  position: absolute; top: 0.7rem; left: 0.7rem; z-index: 2;
  background: var(--gold); color: var(--charcoal);
  font-family: var(--font-b); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 0.35rem 0.75rem; border-radius: 50px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* ── Site confirm dialog (replaces window.confirm) ── */
.gg-confirm-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(25,25,25,0.55);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; transition: opacity 0.2s;
}
.gg-confirm-overlay.open { opacity: 1; }
.gg-confirm-modal {
  background: #fff; border-radius: 16px; width: 100%; max-width: 400px;
  padding: 2rem; text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translateY(12px); transition: transform 0.2s;
}
.gg-confirm-overlay.open .gg-confirm-modal { transform: none; }
.gg-confirm-modal h3 { font-family: var(--font-h); font-size: 1.4rem; color: var(--charcoal); font-weight: 600; margin-bottom: 0.6rem; }
.gg-confirm-modal p { color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 1.6rem; }
.gg-confirm-actions { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.gg-confirm-actions button {
  padding: 0.7rem 1.4rem; border-radius: var(--radius);
  font-family: var(--font-b); font-size: 0.88rem; font-weight: 600; cursor: pointer;
  border: 1px solid var(--border); background: #fff; color: var(--charcoal);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.gg-confirm-cancel:hover { background: var(--bg-soft); }
.gg-confirm-ok { background: var(--teal); border-color: var(--teal); color: #fff; }
.gg-confirm-ok:hover { background: var(--teal-dark); border-color: var(--teal-dark); }
.gg-confirm-ok.danger { background: #DC3545; border-color: #DC3545; }
.gg-confirm-ok.danger:hover { background: #C0292F; border-color: #C0292F; }
.feature-grid { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 2.8rem; }
.feature-box { flex: 1 1 150px; max-width: 210px; display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.feature-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--teal-pale); color: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-box strong { font-family: var(--font-h); color: var(--charcoal); font-size: 1.05rem; font-weight: 600; }
.feature-box p, .feature-box span { font-size: 0.82rem; color: var(--muted); margin: 0; }
.included-services { background: var(--teal); color: #fff; border-radius: 14px; padding: 2.2rem; margin-top: 3rem; text-align: center; }
.included-services h3 { font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; margin-bottom: 1.4rem; }
.included-services ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0.9rem; text-align: left; max-width: 640px; margin: 0 auto; }
.included-services li { font-size: 0.9rem; color: rgba(255,255,255,0.92); }
.diet-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.diet-tag { background: var(--teal); color: #fff; padding: 0.45rem 1.1rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  header { padding: 0.5rem 1.5rem; }
  .logo img { width: 76px; height: 76px; }
  .logo-tagline { display: none; }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; min-height: auto; }
  .hero-img-wrap { height: 380px; }
  .section, .products-wrap, .about, .testimonials-wrap, .cta-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .product-cta-inner { padding: 3.5rem 1.5rem; }
  .custom-cta { padding: 3.5rem 1.5rem 4rem; }
  .feature-grid { gap: 2rem; }
  .about { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .about-media { height: 360px; order: -1; }
  .quote-carousel { height: 230px; }
  footer { padding: 3rem 1.5rem 2rem; }

  /* mobile nav */
  .mobile-menu-btn { display: block; }
  .nav-links {
    position: absolute; top: 100%; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-smooth);
  }
  .nav-links.mobile-open { max-height: 360px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
  .nav-links a.nav-order { border-radius: 0; text-align: center; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .ts-sep { display: none; }
  .trust-strip-inner { gap: 1.4rem; }
  .order-form { padding: 1.5rem; }
  .quote-carousel { height: 300px; }
}
