/* Home page — from index.html design */
.hero {
  background: var(--forest);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 0;
  padding-left: max(2rem, calc((100vw - 1320px) / 2 + 2rem));
  z-index: 2;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 1.5rem;
}
.hero__kicker::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--sage-light);
  border-radius: 2px;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-light);
}
.hero__desc {
  font-size: 1.1rem;
  color: rgba(250,245,236,0.7);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.hero__actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(250,245,236,0.12);
}
.hero__stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero__stat-label { font-size: 0.78rem; color: rgba(250,245,236,0.5); letter-spacing: 0.04em; }
.hero__right {
  position: relative;
  overflow: hidden;
  background: var(--forest-mid);
}
.hero__image-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}
.hero__img-cell {
  overflow: hidden;
  background: var(--sage);
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.hero__img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.hero__img-cell:hover img { transform: scale(1.06); }
.hero__img-cell--empty {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-fallback {
  font-size: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero__img-cell:nth-child(1) { background: #2d5a27; }
.hero__img-cell:nth-child(2) { background: #3d7a35; }
.hero__img-cell:nth-child(3) { background: #4a7c59; }
.hero__img-cell:nth-child(4) { background: #1c3a1c; }
.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,58,28,0.35) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}
.hero__floating-card {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.875rem;
  z-index: 3;
  max-width: 240px;
}
.hero__card-icon,
.hero__card-thumb {
  width: 44px; height: 44px;
  background: var(--mint);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
}
.hero__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__card-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); }
.hero__card-text span { font-size: 0.75rem; color: var(--muted); }

.marquee-strip {
  background: var(--terra);
  padding: 0.75rem 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.marquee-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  text-decoration: none;
}
.category-card:hover { border-color: var(--sage); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.category-card.featured { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.category-card.featured .category-card__name { color: var(--cream); }
.category-card.featured .category-card__count { color: rgba(250,245,236,0.6); }
.category-card__icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.category-card__thumb {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.category-card.featured .category-card__thumb {
  border-color: rgba(250,245,236,0.35);
}
.category-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-card__name { font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.category-card__count { font-size: 0.75rem; color: var(--muted); }

.features-strip {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem; }
.feature-item + .feature-item { border-left: 1px solid var(--border); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.feature-icon--green  { background: var(--mint); }
.feature-icon--orange { background: var(--terra-pale); }
.feature-icon--blue   { background: #e3f2fd; }
.feature-icon--purple { background: #f3e8ff; }
.feature-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.feature-text span { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.banner-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.banner {
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.banner--organic { background: linear-gradient(135deg, #1c3a1c 0%, #3d7a35 100%); }
.banner--seasonal { background: linear-gradient(135deg, #7c3a0e 0%, #c94f1e 100%); }
.banner--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 100%);
  z-index: 0;
}
.banner--photo .banner__kicker,
.banner--photo h3,
.banner--photo p,
.banner--photo .btn {
  position: relative;
  z-index: 1;
}
.banner__emoji {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 5rem;
  opacity: 0.4;
}
.banner__kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.4rem;
}
.banner h3 { color: var(--white); font-size: 1.75rem; margin-bottom: 0.5rem; }
.banner p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 1.25rem; max-width: 280px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.testimonial-quote::before { content: '\201C'; font-size: 2rem; color: var(--sage-light); line-height: 0; vertical-align: -0.6em; margin-right: 0.1em; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--text); }
.testimonial-meta { font-size: 0.75rem; color: var(--muted); }

.newsletter-section {
  background: var(--forest);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-section::after {
  content: '🌿';
  position: absolute;
  right: 3rem; top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.08;
}
.newsletter-section h2 { color: var(--cream); margin-bottom: 0.75rem; }
.newsletter-section p { color: rgba(250,245,236,0.7); line-height: 1.7; }
.newsletter-form { display: flex; gap: 0; border-radius: var(--radius-sm); overflow: hidden; border: 1.5px solid rgba(250,245,236,0.2); }
.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(250,245,236,0.1);
  border: none;
  color: var(--cream);
  font-size: 0.95rem;
  min-width: 0;
}
.newsletter-form input::placeholder { color: rgba(250,245,236,0.4); }
.newsletter-form input:focus { outline: none; background: rgba(250,245,236,0.15); }
.newsletter-form button {
  padding: 0.875rem 1.75rem;
  background: var(--terra);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--terra-light); }
.newsletter-checks { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; }
.newsletter-check {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(250,245,236,0.6);
}
.newsletter-check::before {
  content: '✓';
  width: 16px; height: 16px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .features-strip .feature-item:nth-child(3) { border-left: none; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 3rem 1.5rem; }
  .hero__right { min-height: 280px; }
  .hero__stats { gap: 1.5rem; }
  .banner-split { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .newsletter-section { grid-template-columns: 1fr; padding: 2.5rem 2rem; }
  .features-strip { grid-template-columns: 1fr; }
  .features-strip .feature-item + .feature-item { border-left: none; border-top: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
}
