/* ===== HERO ===== */
.hero {
  background: var(--green-pale);
  padding: 5rem 0 0;
  padding-top: 0;
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

/* Broccoli decoration */
.hero-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  object-fit: contain;
}
/* Left broccoli - smaller, leaning left */
.hero-leaf-1 {
  bottom: 0;
  left: 44%;
  width: 110px;
  transform: translateX(-60px) rotate(-25deg);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
/* Right broccoli - larger, leaning right, overlapping */
.hero-leaf-2 {
  bottom: 0;
  right: 60px;
  width: 150px;
  transform: rotate(10deg);
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.15));
}

.hero-floating-items {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fi {
  position: absolute;
  font-size: 1.8rem;
  animation: floatItem 6s ease-in-out infinite;
  opacity: 0.7;
}
.fi-1 { left: 8%; top: 30%; animation-delay: 0s; }
.fi-2 { left: 45%; top: 8%; animation-delay: 1s; }
.fi-3 { right: 4%; top: 18%; animation-delay: 2s; }
.fi-4 { right: 8%; bottom: 30%; animation-delay: 0.5s; }
.fi-5 { left: 12%; bottom: 25%; animation-delay: 1.5s; }

@keyframes floatItem {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-14px) rotate(5deg); }
  66% { transform: translateY(8px) rotate(-4deg); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 0;
  display: flex;
  align-items: center;
  gap: 4rem;
  min-height: 80vh;
  position: relative;
  z-index: 1;
}
.hero-left { flex: 1; }
.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50px;
  padding: 0.4rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 1.8rem;
}
.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Title line animation */
.line-wrap { display: block; overflow: hidden; }
.line-anim {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.green-line {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}
.muted-line { color: #9ca3af; }
@keyframes slideUp { to { transform: translateY(0); } }

@keyframes titleBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-title .line-wrap:nth-child(1) .line-anim {
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards,
             titleBob 3s ease-in-out 1.5s infinite;
}
.hero-title .line-wrap:nth-child(2) .line-anim {
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards,
             titleBob 3s ease-in-out 1.7s infinite;
}
.hero-title .line-wrap:nth-child(3) .line-anim {
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards,
             titleBob 3s ease-in-out 1.9s infinite;
}

.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s;
  border: 2px solid var(--dark);
}
.btn-dark:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 63, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  padding: 0.73rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
}
.btn-outline:hover {
  border-color: var(--dark);
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}
.hero-stats { display: flex; gap: 2.5rem; }
.stat strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
}
.stat span { font-size: 0.8rem; color: var(--muted); }

/* Hero image */
.hero-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  overflow: visible;
}
.hero-img {
  border-radius: 24px;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}
.hero-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 2;
}
.badge-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(232, 103, 26, 0.35);
}
.badge-circle small { font-size: 0.55rem; opacity: 0.85; }
.hero-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.today-card-hero { bottom: 80px; left: -40px; min-width: 200px; }
.delivery-card { bottom: 24px; right: -20px; }
.delivery-ico { font-size: 1.4rem; }
.card-label { font-size: 0.7rem; color: var(--muted); font-weight: 500; margin-bottom: 0.15rem; }
.card-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.card-sub { font-size: 0.72rem; color: var(--muted); margin-top: 0.1rem; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatBobSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.float-bob { animation: floatBob 3s ease-in-out infinite; }
.float-bob-slow { animation: floatBobSlow 4s ease-in-out 1s infinite; }

/* Hero wave REMOVED — no excess space below banner */

/* ===== HOW SECTION ===== */
.how-section { padding: 5rem 0; background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.step-card:hover {
  border-color: rgba(232, 103, 26, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(232, 103, 26, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}
.step-num {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #f0f0f0;
  line-height: 1;
  transition: color 0.35s;
}
.step-card:hover .step-num { color: rgba(232, 103, 26, 0.1); }
.step-icon { font-size: 1.6rem; margin-bottom: 1rem; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.step-card:hover .step-icon { transform: scale(1.15) rotate(-5deg); }
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--dark); }
.step-card p { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
.step-line {
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.step-card:hover .step-line { width: 100%; box-shadow: 0 2px 10px rgba(232, 103, 26, 0.4); }

/* ===== PRODUCTS ===== */
.products-section { padding: 5rem 0; background: #fff; }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* FLIP CARD */
.product-card { perspective: 1000px; height: 440px; cursor: pointer; }
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  border-radius: var(--radius);
}
.product-card:hover .card-inner { transform: rotateY(180deg); }
.card-front, .card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #f0f0f0;
  background: #fff;
}
.card-back { transform: rotateY(180deg); }
.product-img-wrap { position: relative; height: 240px; overflow: hidden; }
.product-img-wrap img { transition: transform 0.4s ease; width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--dark);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  z-index: 1;
}
.product-info { padding: 1rem 1.2rem; }
.product-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 0.5rem; }
.product-info h3 { font-size: 1rem; font-weight: 700; color: var(--dark); }
.product-price { font-size: 0.95rem; font-weight: 700; color: var(--dark); white-space: nowrap; }
.product-rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: var(--muted); margin-bottom: 0.7rem; }
.stars { color: var(--orange); font-size: 0.9rem; }
.kcal { margin-left: auto; }
.product-hint { font-size: 0.75rem; color: #bbb; display: flex; align-items: center; gap: 0.3rem; }
.back-img { height: 160px; position: relative; overflow: hidden; }
.back-img img { width: 100%; height: 100%; object-fit: cover; }
.back-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.5)); }
.back-content { padding: 1.2rem; }
.back-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.back-content p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.9rem; }
.back-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
.btag { background: var(--green-pale); color: var(--green); padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.back-footer { display: flex; justify-content: space-between; align-items: center; }
.back-price { font-size: 1.1rem; font-weight: 700; color: var(--dark); }
.btn-add {
  background: var(--dark);
  color: #fff;
  border: none;
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.btn-add:hover { background: var(--green); }

/* ===== WHY SECTION ===== */
.why-section { padding: 5rem 0; background: var(--green-pale); }
.why-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.why-left .section-title { margin: 0.5rem 0 1rem; }
.why-left p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.why-stats { display: flex; gap: 2rem; }
.wstat strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 2rem; font-weight: 800; color: var(--green); }
.wstat span { font-size: 0.78rem; color: var(--muted); }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.feature-card { background: #fff; border-radius: 14px; padding: 1.4rem; border: 1px solid rgba(0, 0, 0, 0.04); transition: all 0.3s; cursor: default; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(45, 106, 63, 0.12); border-color: rgba(45, 106, 63, 0.15); }
.feature-icon { font-size: 1.5rem; margin-bottom: 0.7rem; transition: transform 0.3s; }
.feature-card:hover .feature-icon { transform: scale(1.2) rotate(-5deg); }
.feature-card h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--dark); }
.feature-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 5rem 0 4rem; background: #fff; overflow: hidden; }
.testimonials-track-wrap { margin-top: 2.5rem; overflow: hidden; width: 100%; }
.testimonials-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: scrollTrack 35s linear infinite;
}
.testimonials-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testi-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 14px; padding: 1.4rem; width: 300px; flex-shrink: 0; }
.testi-stars { color: var(--orange); font-size: 1rem; margin-bottom: 0.7rem; }
.testi-quote { font-size: 0.83rem; color: #444; line-height: 1.65; margin-bottom: 1rem; flex: 1; }
.testi-author { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.72rem; font-weight: 700; color: var(--dark); flex-shrink: 0; }
.testi-name { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.testi-role { font-size: 0.72rem; color: var(--muted); }
.testi-tag { margin-left: auto; background: var(--green-pale); color: var(--green); padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.65rem; font-weight: 600; white-space: nowrap; }

/* ===== BLOG (homepage section) ===== */
.blog-section { padding: 5rem 0; background: var(--green-pale); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2.5rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(0, 0, 0, 0.04); transition: all 0.35s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1); }
.blog-img-wrap { position: relative; height: 220px; overflow: hidden; }
.blog-img-wrap img { transition: transform 0.5s ease; width: 100%; height: 100%; object-fit: cover; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.07); }
.blog-cat { position: absolute; top: 0.75rem; left: 0.75rem; background: rgba(255, 255, 255, 0.9); color: var(--dark); padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; z-index: 1; }
.blog-body { padding: 1.3rem; }
.blog-meta { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.6rem; }
.blog-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 0.6rem; }
.blog-body p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-read { font-size: 0.85rem; font-weight: 600; color: var(--dark); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.blog-card:hover .blog-read { gap: 0.6rem; }

/* ===== INSTAGRAM ===== */
.insta-section { padding: 4rem 0; background: #fff; }
.insta-handle { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.5rem; }
.insta-section .section-title { margin-bottom: 0.3rem; }
.insta-section .section-sub { margin-bottom: 2rem; }
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; margin-top: 1.5rem; max-width: 840px; margin-left: auto; margin-right: auto; }
.insta-card { aspect-ratio: 1; position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; }
.insta-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.35s; color: #ffffff; }
.insta-ico { font-size: 1.5rem; color: #fff; }
.insta-card:hover img { transform: scale(1.08); }
.insta-card:hover .insta-overlay { opacity: 1; }

/* ===== CTA ===== */
.cta-section { padding: 5rem 0; background: var(--green-pale); display: flex; justify-content: center; }
.cta-box { background: #1f4d2a; border-radius: 24px; padding: 3.5rem 3rem; max-width: 600px; width: 100%; text-align: center; position: relative; overflow: hidden; }
.cta-tag { display: inline-block; background: rgba(255, 255, 255, 0.12); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50px; padding: 0.35rem 1rem; font-size: 0.78rem; font-weight: 600; margin-bottom: 1.2rem; }
.cta-box h2 { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 0.8rem; }
.cta-orange { color: var(--orange); }
.cta-box > p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 1.8rem; line-height: 1.6; position: relative; z-index: 1; }
.cta-form { display: flex; gap: 0.75rem; max-width: 420px; margin: 0 auto 1rem; position: relative; z-index: 1; }
.cta-form input { flex: 1; padding: 0.75rem 1.2rem; border-radius: 50px; border: none; background: rgba(255, 255, 255, 0.15); color: #fff; font-size: 0.9rem; font-family: inherit; outline: none; }
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.cta-form input:focus { background: rgba(255, 255, 255, 0.2); }
.btn-orange { background: var(--orange); color: #fff; border: none; padding: 0.75rem 1.5rem; border-radius: 50px; font-size: 0.9rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: all 0.2s; font-family: inherit; }
.btn-orange:hover { background: #d45a12; transform: translateY(-1px); }
.cta-note { font-size: 0.72rem; color: rgba(255, 255, 255, 0.45); position: relative; z-index: 1; }
.cb { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.04); pointer-events: none; }
.cb1 { width: 280px; height: 280px; bottom: -80px; left: -60px; }
.cb2 { width: 200px; height: 200px; top: -60px; right: -40px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; min-height: auto; padding: 5rem 1.5rem 3rem; }
  .hero-right { width: 100%; }
  .hero-img { height: 320px; }
  .today-card-hero { left: 0; }
  .products-grid, .blog-grid { grid-template-columns: 1fr; }
  .product-card { height: 360px; }
  .back-img { height: 120px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-form { flex-direction: column; }
}
