/* =========================================================
   LiveHerbs page — extends style.css
   ========================================================= */

.lh-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px var(--side-pad) 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lh-brand-logo { width: 100px; height: 100px; object-fit: contain; flex-shrink: 0; }
.lh-bienestar-logo { width: 90px; height: 90px; object-fit: contain; flex-shrink: 0; }

.lh-hero-title { text-align: center; flex: 1; }

.lh-hero-title h1 {
  font-size: 40px;
  color: var(--charcoal);
}

.lh-hero-title p {
  font-size: 20px;
  font-weight: 400;
  margin: 4px 0 0;
  color: var(--charcoal);
}

.lh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 32px var(--side-pad) 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lh-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.lh-card h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.lh-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--teal);
  text-align: justify;
  margin: 0;
}

.lh-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 0 var(--side-pad) 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lh-product-panel {
  border: 1px solid rgba(49, 48, 47, 0.2);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 32px 40px;
}

.lh-product-panel h2 {
  font-size: 26px;
  margin-bottom: 16px;
}

.lh-product-panel ul { padding-left: 22px; }
.lh-product-panel li {
  list-style: disc;
  font-size: 18px;
  line-height: 1.9;
}

.lh-order-panel { text-align: center; }
.lh-order-panel p { font-size: 16px; line-height: 1.7; margin: 0 0 20px; }
.lh-order-panel p:last-child { margin-bottom: 0; }
.lh-order-panel a { color: var(--teal); font-weight: 700; }

.lh-honey {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
}

.lh-honey img { width: 100%; height: 100%; object-fit: cover; }

.lh-honey-panel {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 64px;
}

.lh-honey-title { font-size: 24px; font-weight: 700; }
.lh-honey-panel p { font-size: 17px; line-height: 1.7; margin: 0 0 24px; color: var(--charcoal); }
.lh-honey-panel p:last-child { margin-bottom: 0; }

/* ---------- Responsive ---------- */

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

@media (max-width: 768px) {
  .lh-hero { flex-direction: column; text-align: center; padding-top: 32px; }
  .lh-hero-title h1 { font-size: 32px; }

  .lh-grid { grid-template-columns: 1fr; padding-top: 16px; padding-bottom: 48px; gap: 40px; }

  .lh-products { grid-template-columns: 1fr; padding-bottom: 48px; }
  .lh-product-panel { padding: 28px; }

  .lh-honey { grid-template-columns: 1fr; }
  .lh-honey img { aspect-ratio: 4 / 3; }
  .lh-honey-panel { padding: 40px 28px; }
}
