/*
Theme Name: Sprouty Salads & Greens
Theme URI: https://sprouty-eg.com
Author: Sprouty Team
Author URI: https://sprouty-eg.com
Description: Custom theme for Sprouty Salads & Greens — a premium fresh salad brand. Features product showcase, FAQ accordion, testimonials, newsletter signup, contact form, and social sharing.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://sprouty-eg.com
Text Domain: sprouty
Tags: food, restaurant, fresh, salads, custom-theme
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --color-primary:       #2F6B3F;
  --color-primary-light: #7FBF5B;
  --color-cream:         #F8F5EE;
  --color-charcoal:      #1C1C1C;
  --color-muted:         #6B7280;
  --color-border:        #E5E7EB;
  --color-white:         #FFFFFF;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --radius-sm:  0.375rem;
  --radius-md:  0.75rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }

p { color: var(--color-muted); line-height: 1.7; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.bg-cream { background: var(--color-cream); }
.bg-white { background: var(--color-white); }
.bg-charcoal { background: var(--color-charcoal); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 160ms var(--ease-out);
}
.btn:active { transform: scale(.97); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: #245432; }

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 300ms var(--ease-out);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.site-logo img { height: 5rem; width: auto; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-charcoal);
  transition: color 150ms;
}
.main-nav a:hover { color: var(--color-primary); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  margin: 5px 0;
  transition: all 250ms var(--ease-out);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-white);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: .9375rem; font-weight: 500; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, var(--color-cream) 0%, #fff 60%, var(--color-cream) 100%);
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-title { margin-bottom: .5rem; }
.hero-title span { color: var(--color-primary); }

.hero-subtitle { font-size: 1.125rem; }

.hero-chips { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-charcoal);
}
.hero-chip svg { color: var(--color-primary); }

.hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-image img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16/9; }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { background: var(--color-white); }

.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: .75rem; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 250ms var(--ease-out), transform 250ms var(--ease-out);
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.product-badge {
  position: absolute;
  top: .75rem;
  right: .75rem;
  z-index: 2;
  background: #EF4444;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
}

.product-image-wrap {
  position: relative;
  height: 18rem;
  overflow: hidden;
  background: var(--color-cream);
}
.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 300ms var(--ease-out);
}
.product-card:hover .product-image-wrap img { transform: scale(1.04); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,.95) 0%, rgba(28,28,28,.7) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 250ms var(--ease-out);
}
.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-inner { color: #fff; text-align: center; width: 100%; }
.nutrition-row { display: flex; justify-content: center; gap: 1rem; margin-bottom: .75rem; }
.nutrition-pill {
  background: rgba(47,107,63,.7);
  padding: .4rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
}
.nutrition-pill span { display: block; font-size: .7rem; opacity: .8; }
.ingredients-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .4rem; }
.ingredient-tags { display: flex; flex-wrap: wrap; gap: .3rem; justify-content: center; }
.ingredient-tag {
  background: rgba(47,107,63,.6);
  font-size: .7rem;
  padding: .2rem .5rem;
  border-radius: var(--radius-full);
}

.product-body { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }

.product-name-img { display: flex; justify-content: center; margin-bottom: .5rem; }
.product-name-img img { height: 7rem; width: auto; object-fit: contain; }

.product-subtitle { font-size: .875rem; color: var(--color-muted); text-align: center; }
.product-desc { font-size: .875rem; color: var(--color-charcoal); text-align: center; }

.product-benefits { display: flex; flex-wrap: wrap; gap: .5rem; }
.benefit-chip {
  padding: .25rem .75rem;
  background: rgba(47,107,63,.1);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* ============================================================
   SEASONAL SPECIALS BANNER
   ============================================================ */
.seasonal-banner {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3CD 100%);
  border: 1px solid #F59E0B;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.seasonal-banner h3 { color: #92400E; margin-bottom: .25rem; }
.seasonal-badge {
  background: #F59E0B;
  color: #fff;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
  font-size: .75rem;
  font-weight: 700;
}

/* ============================================================
   SOCIAL SHARE
   ============================================================ */
.social-share-section {
  background: var(--color-cream);
  padding: 2.5rem 0;
  text-align: center;
}
.social-share-section h3 { margin-bottom: 1rem; font-size: 1.25rem; }
.share-buttons { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 150ms var(--ease-out);
  color: #fff;
}
.share-btn:active { transform: scale(.97); }
.share-btn-facebook { background: #1877F2; }
.share-btn-twitter  { background: #000; }
.share-btn-whatsapp { background: #25D366; }
.share-btn-copy     { background: var(--color-primary); }

/* ============================================================
   PRODUCT COMPARISON TABLE
   ============================================================ */
.comparison-section { background: var(--color-white); }
.comparison-table-wrap { overflow-x: auto; margin-top: 2rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.comparison-table th {
  background: var(--color-primary);
  color: #fff;
  padding: .875rem 1rem;
  text-align: left;
  font-weight: 600;
}
.comparison-table td {
  padding: .875rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-charcoal);
}
.comparison-table tr:nth-child(even) td { background: var(--color-cream); }
.comparison-table tr:hover td { background: rgba(47,107,63,.05); }

/* ============================================================
   ALLERGEN FILTER
   ============================================================ */
.allergen-section {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}
.allergen-section h3 { color: #1E40AF; margin-bottom: 1rem; }
.allergen-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.allergen-chip {
  padding: .375rem .875rem;
  border: 2px solid #93C5FD;
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: #1E40AF;
  transition: all 150ms;
}
.allergen-chip.active { background: #1E40AF; color: #fff; border-color: #1E40AF; }

/* ============================================================
   DIETARY FILTER
   ============================================================ */
.dietary-filter-section { margin-top: 2rem; }
.dietary-filter-section h3 { margin-bottom: 1rem; }
.filter-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.filter-chip {
  padding: .375rem .875rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  background: #fff;
  color: var(--color-charcoal);
  transition: all 150ms;
}
.filter-chip.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* ============================================================
   WHY SPROUTY
   ============================================================ */
.why-section { background: var(--color-cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

.why-card { text-align: center; }
.why-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius-full);
  background: rgba(47,107,63,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.why-icon svg { width: 2rem; height: 2rem; color: var(--color-primary); }
.why-card h3 { margin-bottom: .75rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--color-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 640px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars { color: var(--color-primary); font-size: 1.125rem; letter-spacing: .1em; }
.testimonial-text { font-style: italic; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--color-border); }
.author-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .875rem;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: var(--color-charcoal); font-size: .9375rem; }
.author-role { font-size: .8125rem; color: var(--color-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--color-cream); }
.faq-list { max-width: 48rem; margin: 3rem auto 0; display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.125rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-align: left;
  transition: background 150ms;
}
.faq-question:hover { background: rgba(0,0,0,.02); }
.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-primary);
  transition: transform 250ms var(--ease-out);
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out);
}
.faq-item.open .faq-answer { max-height: 20rem; }
.faq-answer-inner {
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--color-border);
  background: rgba(0,0,0,.015);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-section { background: var(--color-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 { margin-bottom: 1rem; }
.contact-detail { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1.25rem; }
.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: rgba(47,107,63,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 1.25rem; height: 1.25rem; color: var(--color-primary); }
.contact-detail-text strong { display: block; font-weight: 600; color: var(--color-charcoal); margin-bottom: .125rem; }

.contact-form-card {
  background: var(--color-cream);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--color-charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--color-charcoal);
  background: var(--color-white);
  transition: border-color 150ms;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(47,107,63,.12);
}
.form-group textarea { resize: vertical; min-height: 7rem; }
.form-error { font-size: .8125rem; color: #EF4444; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--color-primary);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}
.newsletter-section h2 { color: #fff; margin-bottom: .75rem; }
.newsletter-section p { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 28rem;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-full);
  border: none;
  font-family: var(--font-body);
  font-size: .9375rem;
}
.newsletter-form input:focus { outline: 2px solid rgba(255,255,255,.5); }
.newsletter-form .btn {
  background: var(--color-charcoal);
  color: #fff;
  border-color: transparent;
}
.newsletter-form .btn:hover { background: #333; }
.newsletter-success {
  display: none;
  background: rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  max-width: 28rem;
  margin: 0 auto;
}
.newsletter-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 5rem; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; }

.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .875rem; transition: color 150ms; }
.footer-col ul li a:hover { color: #fff; }

.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms;
}
.footer-social a:hover { background: var(--color-primary); }
.footer-social svg { width: 1.125rem; height: 1.125rem; fill: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color 150ms; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   SUCCESS MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms var(--ease-out);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  max-width: 28rem;
  width: 100%;
  text-align: center;
  transform: scale(.95);
  transition: transform 250ms var(--ease-out);
}
.modal-overlay.open .modal-card { transform: scale(1); }
.modal-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-card h3 { margin-bottom: .5rem; }
.modal-card p { margin-bottom: 1.5rem; }
.modal-close { margin-top: .75rem; }

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 640px) {
  .section-pad { padding: 3rem 0; }
  .hero-section { padding: 2.5rem 0; }
}

/* ============================================================
   NEST LOCATIONS SECTION
   ============================================================ */
.nest-locations-section { background: #fff; }
.nest-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.nest-logo { height: 5rem; width: auto; object-fit: contain; }
.nest-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: rgba(47,107,63,0.1);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2F6B3F;
}
.nest-hours svg { color: #2F6B3F; flex-shrink: 0; }
.nest-branches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.nest-branch-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.75rem 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.nest-branch-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-color: rgba(47,107,63,0.4);
}
.nest-branch-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(47,107,63,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F6B3F;
  transition: background 0.2s;
}
.nest-branch-card:hover .nest-branch-icon { background: rgba(47,107,63,0.2); }
.nest-branch-name { font-weight: 700; font-size: 1.1rem; color: #1a1a1a; }
.nest-branch-sub { font-size: 0.8rem; color: #6b7280; }
.nest-branch-link { font-size: 0.875rem; font-weight: 600; color: #2F6B3F; }
.nest-branch-card:hover .nest-branch-link { text-decoration: underline; }

/* Floating WhatsApp button */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}
.floating-whatsapp:hover { background: #1ebe5d; }
.floating-whatsapp:active { transform: scale(0.95); }
.floating-whatsapp svg { color: #fff; }

/* ─── About Sprouty Section ─────────────────────────────────────────────── */
.about-section { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-tag { display: inline-block; padding: 0.35rem 1rem; background: rgba(47,107,63,0.1); color: var(--primary); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 999px; margin-bottom: 1rem; }
.about-text h2 { font-size: 2rem; font-weight: 700; color: var(--charcoal); line-height: 1.25; margin-bottom: 1rem; }
.about-text h2 .text-primary { color: var(--primary); }
.about-text p { color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.about-stat { text-align: center; padding: 1rem; background: #fff; border-radius: 0.75rem; border: 1px solid var(--border); }
.stat-value { display: block; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.stat-label { display: block; font-size: 0.7rem; color: var(--muted); margin-top: 0.25rem; font-weight: 500; }
.about-image-wrap { border-radius: 1rem; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.about-image-wrap img { width: 100%; height: 22rem; object-fit: contain; background: #fff; }
.about-visual { position: relative; }
.about-badge { position: absolute; bottom: -1rem; left: -1rem; background: #fff; border-radius: 0.75rem; box-shadow: 0 8px 24px rgba(0,0,0,0.12); padding: 0.75rem 1.25rem; border: 1px solid var(--border); }
.about-badge span { display: block; font-size: 0.7rem; color: var(--muted); font-weight: 500; }
.about-badge img { height: 2rem; width: auto; object-fit: contain; margin-top: 0.25rem; }

/* ─── Suggest a Salad Section ───────────────────────────────────────────── */
.suggest-section { background: #fff; }
.suggest-tag { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 1rem; background: rgba(47,107,63,0.1); color: var(--primary); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; border-radius: 999px; margin-bottom: 0.75rem; }
.suggest-form-wrap { max-width: 640px; margin: 0 auto; }
.suggest-form { background: var(--cream); border-radius: 1rem; border: 1px solid var(--border); padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.suggest-form .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.suggest-form label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.suggest-form .optional { font-size: 0.75rem; color: var(--muted); font-weight: 400; }
.suggest-form input, .suggest-form textarea { padding: 0.6rem 0.85rem; border: 1px solid var(--border); border-radius: 0.5rem; font-size: 0.9rem; background: #fff; color: var(--charcoal); transition: border-color 0.2s; width: 100%; box-sizing: border-box; }
.suggest-form input:focus, .suggest-form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(47,107,63,0.1); }
.suggest-form textarea { resize: none; }
.field-hint { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }
.suggest-submit { display: inline-flex; align-items: center; gap: 0.5rem; justify-content: center; width: 100%; padding: 0.85rem; font-size: 1rem; font-weight: 600; }
.suggest-success { background: rgba(47,107,63,0.08); border: 1px solid rgba(47,107,63,0.3); border-radius: 0.5rem; padding: 1rem; text-align: center; color: var(--primary); font-weight: 600; }

/* ─── Instagram Feed Section ─────────────────────────────────── */
.instagram-feed-section { background: var(--cream, #f9f6f0); }
.instagram-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(135deg, rgba(236,72,153,.1), rgba(168,85,247,.1), rgba(251,146,60,.1));
  border: 1px solid rgba(236,72,153,.25);
  color: #db2777; font-size: .8rem; font-weight: 600; margin-bottom: 12px;
}
.instagram-badge svg { flex-shrink: 0; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 32px;
}
@media (min-width: 768px) { .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.ig-post {
  position: relative; aspect-ratio: 1; border-radius: 12px;
  overflow: hidden; background: #fff; display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ig-post:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.ig-post img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s ease; }
.ig-post:hover img { transform: scale(1.05); }
.ig-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
  display: flex; align-items: flex-end; padding: 12px;
  opacity: 0; transition: opacity .3s ease;
}
.ig-post:hover .ig-overlay { opacity: 1; }
.ig-overlay p { color: #fff; font-size: .75rem; line-height: 1.4; margin: 0; }
.ig-follow-wrap { text-align: center; margin-top: 28px; }
.btn-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; font-weight: 600; font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(220,39,67,.35);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-instagram:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(220,39,67,.45); }
.btn-instagram:active { transform: scale(.97); }
