/* ============================================================
   sections.css
   Trust bar, Why Wellveda, Story, Testimonials, CTA, Footer
   ============================================================ */

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 20px 8%;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 0.84rem;
  font-weight: 500;
}

.trust-item svg { flex-shrink: 0; }

/* ── WHY WELLVEDA ── */
#why {
  background: var(--offwhite);
  padding: var(--section-pad);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.feature-card h4 {
  font-size: 0.92rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Nutrition panel */
.why-visual {
  background: linear-gradient(135deg, #1C4A2E, #3D8A58);
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  color: var(--white);
}

.why-visual-icon { font-size: 3.5rem; }

.why-visual h3 {
  font-size: 1.45rem;
  color: var(--white);
}

.why-visual p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
}

.nutrition-row {
  width: 100%;
  background: rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 11px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nutrition-row span:first-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
}

.nutrition-row span:last-child {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
}

/* ── OUR STORY ── */
#story {
  background: var(--forest);
  color: var(--white);
  padding: var(--section-pad);
  text-align: center;
}

#story .section-title { color: var(--white); }
#story .section-sub {
  color: rgba(255,255,255,0.65);
  text-align: center;
  margin: 0 auto;
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.story-card {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 22px;
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.22s;
}

.story-card:hover { background: rgba(255,255,255,0.12); }

.story-step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.story-card h4 {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 10px;
}

.story-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
#testimonials {
  background: var(--cream);
  padding: var(--section-pad);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
}

.reviewer-loc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(120deg, #C4943A 0%, #E8B84B 100%);
  text-align: center;
  padding: 80px 8%;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.02rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.60);
  padding: 64px 8% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 34px;
  width: auto;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-brand .mfg {
  font-size: 0.78rem;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-brand .mfg strong {
  color: rgba(255,255,255,0.85);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  font-size: 0.82rem;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-col li:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  flex-wrap: wrap;
  gap: 12px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  color: rgba(255,255,255,0.65);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── CART TOAST ── */
.cart-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--forest);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(0,0,0,0.20);
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.cart-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }
  .story-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-features { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
