/* ==========================================================================
   REVIEWS.CSS — Google Reviews Component
   Scrapwala Hyderabad — Premium Dark Theme Override (if needed)
   ========================================================================== */

/* All review styles are now in components.css — this file is a pass-through */

/* ===== ECO STATS (Calculator section) ===== */
.eco-hero-stats {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  padding: var(--space-5);
  background: var(--green-light);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius-lg);
}
.eco-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 4px;
}
.eco-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.eco-stat__val {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--green);
}
.eco-stat__label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: var(--weight-semi);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  text-align: center;
}
