/* ============================================================
   EBN'S Vegan Cuisine — Main Stylesheet
   ============================================================ */

/* ── Custom Properties ── */
:root {
  --green:        #209312;
  --green-dark:   #156b0b;
  --green-light:  #2eb318;
  --orange:       #e85004;
  --orange-dark:  #c74403;
  --black:        #0f0f0f;
  --white:        #ffffff;
  --bg-page:      #f7fdf5;
  --bg-section:   #eef7eb;
  --text:         #2a2a2a;
  --text-muted:   #616161;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --shadow-sm:    0 2px 10px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.11);
  --t:            0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top: 70px; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-page);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Fredoka', system-ui, sans-serif; line-height: 1.25; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family: inherit; }

/* ── Layout ── */
.container { max-width:1180px; margin:0 auto; padding:0 1.5rem; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  text-align: center;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn-green  { background: var(--green);  color: var(--white); }
.btn-green:hover  { background: var(--green-dark); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-white  { background: var(--white); color: var(--green); font-weight: 600; }
.btn-white:hover  { background: var(--bg-section); }
.btn-outline-green { background: transparent; color: var(--green-dark); border: 2px solid rgba(32,147,18,0.38); }
.btn-outline-green:hover { background: var(--green); color: var(--white); border-color: var(--green); }

/* ── Navbar ── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: 0.7rem 0;
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 10px rgba(0,0,0,0.07);
  transition: box-shadow var(--t), padding var(--t), transform 0.32s ease;
}
.navbar.scrolled {
  padding: 0.45rem 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.navbar.nav-hidden { transform: translateY(-100%); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0;
}
.nav-logo {
  width: 40px; height: 40px; border-radius: 50%; object-fit: contain;
  border: 1.5px solid var(--green-light);
  background: #ffffff; padding: 3px;
  flex-shrink: 0;
}
.nav-brand-text { line-height: 1.2; }
.nav-brand-name {
  font-family: 'Fredoka', sans-serif; font-size: 1.05rem; font-weight: 600;
  color: var(--black); white-space: nowrap;
}
.nav-brand-tagline {
  font-size: 0.65rem; color: var(--green); letter-spacing: 0.03em; white-space: nowrap;
}
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
}
.nav-links a {
  color: var(--text); font-size: 0.9rem; font-weight: 500;
  position: relative; transition: color var(--t); white-space: nowrap;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-3px; left:0; width:0; height:2px;
  background: var(--green); transition: width var(--t);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width:100%; }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 0.4rem 1.05rem; border-radius: 2rem; font-size: 0.85rem !important;
  font-weight: 600 !important; transition: background var(--t), transform var(--t) !important;
}
.nav-cta::after { display:none !important; }
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  z-index: 1001;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display:none; position:fixed; inset:0; background:rgba(0,0,0,0.45); z-index:999;
}
.nav-overlay.open { display:block; }

/* ── Tablet: tighten link spacing to prevent crowding ── */
@media (min-width:769px) and (max-width:960px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.85rem; }
  .nav-cta { padding: 0.35rem 0.9rem; font-size: 0.82rem !important; }
}

/* ── Mobile ── */
@media (max-width:768px) {
  .navbar {
    padding: 0.6rem 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .navbar.scrolled { padding: 0.45rem 0; }
  .nav-logo { width: 38px; height: 38px; }
  .nav-brand { gap: 0.5rem; }
  .nav-brand-name { font-size: 1rem; }
  .nav-brand-tagline { font-size: 0.64rem; }
  .nav-toggle { display: flex; }
  .nav-toggle span { width: 24px; height: 2.5px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-links {
    position: fixed; top:0; right:-100%; width:72%; max-width:280px;
    height:100vh; background: #ffffff;
    flex-direction: column; align-items: flex-start;
    padding: 5.5rem 2rem 2rem; gap: 1.4rem;
    transition: right 0.3s ease; z-index:1000;
    box-shadow: -6px 0 28px rgba(0,0,0,0.12);
    border-left: 1px solid rgba(0,0,0,0.06);
  }
  .nav-links.open { right:0; }
  .nav-links a { font-size: 1.05rem; color: var(--text); }
}

/* ── Hero ── */
.hero {
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; text-align: center;
  padding: 6rem 0 4.5rem; position: relative; overflow: hidden;
}
.hero-content { position:relative; z-index:1; width:100%; }
.hero-logo {
  width: 128px; height: 128px; border-radius: 50%; object-fit: contain;
  border: 3px solid var(--green-light); margin: 0 auto 1.5rem;
  background: #ffffff; padding: 10px;
  box-shadow: 0 0 0 6px rgba(32,147,18,0.09), 0 4px 28px rgba(0,0,0,0.09);
  animation: logoGlow 3s ease-in-out infinite;
}
@keyframes logoGlow {
  0%,100% { box-shadow: 0 0 0 6px rgba(32,147,18,0.09), 0 4px 28px rgba(0,0,0,0.09); }
  50%      { box-shadow: 0 0 0 10px rgba(32,147,18,0.14), 0 4px 36px rgba(32,147,18,0.18); }
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  color: var(--black); margin-bottom: 0.5rem; font-weight: 600;
}
.hero h1 em { font-style:normal; color: var(--orange); }
.hero-tagline {
  font-size: clamp(0.98rem, 2.2vw, 1.2rem);
  color: var(--text-muted); margin-bottom: 0.3rem;
}
.hero-slogan {
  font-family: 'Fredoka', sans-serif; font-size: 1rem;
  color: var(--green); margin-bottom: 2rem; font-weight: 500;
}
.hero-social {
  display: flex; justify-content: center; gap: 0.85rem; margin-bottom: 2.2rem;
}
.social-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(32,147,18,0.07); border: 1.5px solid rgba(32,147,18,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark); font-size: 1.1rem;
  transition: background var(--t), border-color var(--t), transform var(--t), color var(--t);
}
.social-icon:hover { background: var(--green); border-color: var(--green); color: var(--white); transform: translateY(-3px); }
.hero-ctas { display:flex; justify-content:center; gap:0.85rem; flex-wrap:wrap; }
.hero-scroll-hint {
  margin-top: 3rem; color: var(--text-muted); font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase; animation: bounce 2s ease-in-out infinite;
}
.hero-scroll-hint i { display:block; margin: 0.4rem auto 0; font-size: 1rem; }
@keyframes bounce {
  0%,100% { transform:translateY(0); opacity:.5; }
  50%      { transform:translateY(6px); opacity:.85; }
}

/* ── About Banner ── */
.about-banner {
  background: var(--green); padding: 4.5rem 0; text-align: center;
}
.about-banner-inner { max-width:720px; margin:0 auto; }
.about-banner h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem); color: var(--white); margin-bottom: 1rem;
}
.about-banner h2 em { font-style:normal; color: #a8f08a; }
.about-banner p {
  font-size: 1.08rem; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 2rem;
}

/* ── Value Strip ── */
.value-strip {
  background: var(--bg-section);
  border-bottom: 1px solid rgba(32,147,18,0.12);
  padding: 1.2rem 0;
}
.value-strip-inner {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0.75rem;
}
.value-pill {
  display: flex; align-items: center; gap: 0.45rem;
  background: var(--white); border: 1.5px solid rgba(32,147,18,0.18);
  border-radius: 2rem; padding: 0.4rem 1rem;
  font-size: 0.88rem; font-weight: 500; color: var(--text);
}
.value-pill i { color: var(--green); font-size: 0.85rem; }

/* ── Products ── */
.products { padding: 5.5rem 0; background: var(--white); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1.5px solid rgba(0,0,0,0.07); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(232,80,4,0.25); }
.product-card:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.product-img-wrap {
  background: var(--bg-section); padding: 1.5rem;
  display: flex; justify-content: center; align-items: center;
}
.product-img-wrap img {
  width: 160px; height: 160px; object-fit: contain;
  border-radius: var(--radius-md);
  background: transparent;
}
.product-body { padding: 1.25rem 1.25rem 1.4rem; flex:1; display:flex; flex-direction:column; }
.product-name {
  font-family: 'Fredoka', sans-serif; font-size: 1.3rem; font-weight: 600;
  color: var(--green); margin-bottom: 0.4rem;
}
.product-ingredients {
  font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem;
  line-height: 1.6; flex:1;
}
.product-tags { display:flex; flex-wrap:wrap; gap:0.4rem; margin-bottom:1rem; }
.product-tag {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.75rem; font-weight: 600;
  background: var(--bg-section); color: var(--green-dark);
  border-radius: 2rem; padding: 0.22rem 0.7rem;
}
.product-tag i { font-size: 0.68rem; }
.product-tag.seasonal { background: rgba(232,80,4,0.10); color: var(--orange-dark); }
.product-btn {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: var(--green); color: var(--white);
  padding: 0.65rem 1rem; border-radius: var(--radius-sm);
  font-family: 'Fredoka', sans-serif; font-size: 0.95rem; font-weight: 500;
  transition: background var(--t); margin-top: auto;
}
.product-btn:hover { background: var(--orange); }

@media (max-width:900px) { .product-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:520px) { .product-grid { grid-template-columns: 1fr; } }

/* ── Health Benefits ── */
.benefits-section { padding: 5.5rem 0; background: var(--bg-section); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.benefit-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.6rem; border-left: 4px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-icon-wrap {
  width: 48px; height: 48px; background: var(--bg-section);
  border-radius: 50%; display:flex; align-items:center; justify-content:center;
  margin-bottom: 1rem;
}
.benefit-icon-wrap i { font-size: 1.25rem; color: var(--green); }
.benefit-card h4 { font-size: 1.1rem; font-weight: 600; color: var(--black); margin-bottom: 0.45rem; }
.benefit-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ── Key Ingredients ── */
.ingredients-section { padding: 5.5rem 0; background: var(--white); }
.ingredients-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem;
}
.ingredient-card {
  background: var(--bg-section); border-radius: var(--radius-md);
  padding: 1.5rem; display:flex; gap:1rem; align-items:flex-start;
  transition: transform var(--t), box-shadow var(--t);
}
.ingredient-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ing-icon {
  flex-shrink:0; width:50px; height:50px; background: var(--green);
  border-radius: 50%; display:flex; align-items:center; justify-content:center;
}
.ing-icon i { font-size: 1.2rem; color: var(--white); }
.ing-text h4 { font-size: 1.05rem; font-weight: 600; color: var(--black); margin-bottom: 0.35rem; }
.ing-text p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }
@media (max-width:580px) { .ingredients-grid { grid-template-columns:1fr; } }

/* ── Fruits ── */
.fruits-section { padding: 5.5rem 0; background: var(--bg-section); }
.fruits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.25rem;
}
.fruit-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--green-light);
  transition: transform var(--t), box-shadow var(--t);
}
.fruit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fruit-header { display:flex; align-items:center; gap:0.7rem; margin-bottom:0.75rem; }
.fruit-emoji { font-size: 1.6rem; line-height:1; }
.fruit-card h4 { font-size: 1.1rem; font-weight: 600; color: var(--black); }
.fruit-card > p { font-size: 0.91rem; color: var(--text-muted); line-height: 1.65; }
.fruit-sub {
  display:flex; flex-direction:column; gap: 0.5rem;
}
.fruit-sub-item {
  font-size: 0.88rem; color: var(--text-muted); line-height: 1.6;
  padding-left: 0.85rem; border-left: 2.5px solid var(--green-light);
}
.fruit-sub-item strong { color: var(--text); display: inline; }

/* ── Disclaimer ── */
.disclaimer {
  background: var(--green-dark); padding: 1.2rem 1.5rem; text-align:center;
}
.disclaimer p {
  font-size: 0.86rem; color: rgba(255,255,255,0.78);
  font-style: italic; line-height: 1.6; max-width: 800px; margin: 0 auto;
}
.disclaimer strong { color: rgba(255,255,255,0.95); }

/* ── Reviews ── */
.reviews-section { padding: 5.5rem 0; background: var(--white); }
.carousel-viewport { overflow: hidden; }
.carousel-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.review-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-section); border-radius: var(--radius-md);
  padding: 1.75rem; border-top: 4px solid var(--green-light);
  box-shadow: var(--shadow-sm);
}
.review-stars { display:flex; gap:3px; margin-bottom:0.9rem; }
.review-stars i { color: #f5a623; font-size: 0.95rem; }
.review-text {
  font-size: 0.94rem; color: var(--text); line-height: 1.75;
  margin-bottom: 1.1rem; font-style: italic;
}
.review-author { font-weight: 600; font-size: 0.88rem; color: var(--green-dark); }
.carousel-controls {
  display: flex; justify-content: center; align-items:center;
  gap: 1rem; margin-top: 2rem;
}
.carousel-btn {
  width: 42px; height: 42px; border-radius: 50%; border:none;
  background: var(--green); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; font-size: 0.9rem;
  transition: background var(--t), transform var(--t);
}
.carousel-btn:hover { background: var(--orange); transform: scale(1.1); }
.carousel-dots { display:flex; gap:6px; align-items:center; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(32,147,18,0.22); border:none; cursor:pointer;
  transition: background var(--t), transform var(--t);
}
.dot.active { background: var(--green); transform: scale(1.35); }
.reviews-cta { text-align:center; margin-top:2.5rem; }

@media (max-width:900px) { .review-card { flex: 0 0 calc(50% - 0.75rem); } }
@media (max-width:540px)  { .review-card { flex: 0 0 88%; } }

/* ── Contact ── */
.contact-section {
  padding: 5rem 0 4.5rem;
  background: var(--bg-section);
  border-top: 1px solid rgba(32,147,18,0.12);
  text-align: center;
}
.contact-section .section-heading { color: var(--black); }
.contact-section .section-sub     { color: var(--text-muted); }
.contact-buttons { display:flex; justify-content:center; gap:1rem; flex-wrap:wrap; }
.contact-social { display:flex; justify-content:center; gap:0.85rem; margin-top:2.5rem; }
.contact-section .social-icon {
  background: rgba(32,147,18,0.08);
  border-color: rgba(32,147,18,0.22);
  color: var(--green-dark);
}
.contact-section .social-icon:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* ── Footer ── */
.footer {
  background: #ffffff;
  border-top: 1px solid rgba(32,147,18,0.12);
  color: var(--text-muted);
  text-align: center; padding: 2rem 1.5rem;
}
.footer-slogan {
  font-family:'Fredoka',sans-serif; font-size:1.05rem;
  color: var(--green); display:block; margin-bottom:0.4rem;
}
.footer-copy { font-size: 0.83rem; }

/* ── Back to Top ── */
.back-to-top {
  position: fixed; bottom:1.75rem; right:1.75rem;
  width: 46px; height: 46px; border-radius:50%; border:none;
  background: var(--green); color: var(--white);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:900; font-size: 1rem;
  opacity:0; visibility:hidden;
  transition: opacity var(--t), visibility var(--t), transform var(--t), background var(--t);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* ── Product Modal ── */
.modal-overlay {
  position:fixed; inset:0; background:rgba(0,0,0,0.78);
  backdrop-filter:blur(5px); z-index:2000;
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open { opacity:1; visibility:visible; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; width: 90%; max-width: 460px; max-height: 90vh;
  overflow-y:auto; text-align:center; position:relative;
  transform: scale(0.92);
  transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position:absolute; top:0.9rem; right:0.9rem;
  width:32px; height:32px; border-radius:50%; border:none;
  background: var(--bg-section); cursor:pointer; font-size:1rem;
  color: var(--text-muted); display:flex; align-items:center; justify-content:center;
  transition: background var(--t), color var(--t);
}
.modal-close:hover { background: rgba(232,80,4,0.1); color: var(--orange); }
.modal-img {
  width:160px; height:160px; object-fit:contain; border-radius:var(--radius-md);
  margin: 0 auto 1.25rem; background: var(--bg-section);
}
.modal-name {
  font-family:'Fredoka',sans-serif; font-size:1.6rem; color:var(--green);
  margin-bottom:0.6rem;
}
.modal-ingredients { font-size:0.96rem; color:var(--text-muted); margin-bottom:1.2rem; line-height:1.7; }
.modal-tags { display:flex; justify-content:center; gap:0.5rem; flex-wrap:wrap; margin-bottom:1.4rem; }

/* ── Scroll Fade-in Animation ── */
.fade-up {
  opacity:0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity:1; transform:translateY(0); }
.fade-up:nth-child(2) { transition-delay:.08s; }
.fade-up:nth-child(3) { transition-delay:.16s; }
.fade-up:nth-child(4) { transition-delay:.24s; }
.fade-up:nth-child(5) { transition-delay:.32s; }
.fade-up:nth-child(6) { transition-delay:.40s; }

/* ── Ingredient Bullet List ── */
.ing-list {
  list-style: none;
  margin-top: 0.55rem;
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
}
.ing-list li {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.ing-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── Seasonal Section ── */
.seasonal-section { padding: 5.5rem 0; background: var(--white); }
.seasonal-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, var(--orange), #f07b2f);
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 2rem;
  margin-bottom: 0.75rem;
}
.seasonal-intro {
  font-size: 1.02rem; color: var(--text-muted);
  max-width: 620px; margin: 0 auto 2.8rem; line-height: 1.75;
}
.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem;
}
.seasonal-card {
  background: var(--bg-section); border-radius: var(--radius-md);
  padding: 1.4rem; text-align: center;
  border-top: 3px solid var(--orange);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.seasonal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.seasonal-emoji { font-size: 2rem; margin-bottom: 0.5rem; line-height: 1; }
.seasonal-card h4 { font-size: 1rem; font-weight: 600; color: var(--black); margin-bottom: 0.4rem; }
.seasonal-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ── Responsive ── */
@media (max-width:768px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .contact-buttons { flex-direction: column; align-items: center; }
  .contact-buttons .btn { width: 100%; max-width: 340px; justify-content: center; }
  .section-sub { font-size: 1rem; margin-bottom: 2rem; }
  .benefits-grid { grid-template-columns: 1fr; gap: 1rem; }
  .fruits-grid { grid-template-columns: 1fr; gap: 1rem; }
  .seasonal-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .ingredients-grid { gap: 1rem; }
  .product-grid { gap: 1rem; }
}
@media (max-width:580px) {
  .seasonal-grid { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .container { padding: 0 1.1rem; }
  .hero-logo { width:100px; height:100px; padding: 8px; }
  .hero { padding: 5rem 0 3.2rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-scroll-hint { margin-top: 1.8rem; }
  .btn { padding:.72rem 1.4rem; font-size:.95rem; }
  .section-heading { font-size: 1.7rem; }
  .products, .benefits-section, .ingredients-section,
  .fruits-section, .seasonal-section, .reviews-section { padding: 3.5rem 0; }
  .about-banner { padding: 3rem 0; }
  .contact-section { padding: 3.5rem 0 3rem; }
  .fruit-card { padding: 1.2rem; }
  .ingredient-card { padding: 1.2rem; gap: 0.85rem; }
  .benefit-card { padding: 1.3rem; }
  .ing-icon { width:44px; height:44px; }
  .product-img-wrap { padding: 1.2rem; }
  .product-img-wrap img { width:136px; height:136px; }
}

/* ── Reduced Motion: disable all animations for accessibility + instant paint ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up { opacity: 1; transform: none; }
}
