/* ========== HOME PAGE ========== */
.hero-home {
  padding: var(--space-12) 0 var(--space-10);
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, #dcfce7 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  text-align: center;
}
.hero-home__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  padding: 0.35rem 0.9rem;
  background: var(--color-success-bg);
  border-radius: var(--radius-full);
}
.hero-home__title {
  font-size: var(--fs-3xl);
  margin: 0 auto var(--space-4);
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 18ch;
}
.hero-home__title em {
  color: var(--color-primary);
  font-style: normal;
}
.hero-home__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}
.hero-home__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-text);
  color: #fff;
  padding: 1rem 1.75rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.hero-home__cta:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}
@media (min-width: 768px) {
  .hero-home { padding: 5.5rem 0 4rem; }
  .hero-home__title { font-size: var(--fs-5xl); max-width: 16ch; }
  .hero-home__subtitle { font-size: var(--fs-xl); }
}

.trust-strip {
  padding: 0;
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--container-max);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .trust-strip__grid { grid-template-columns: repeat(4, 1fr); }
}
.trust-strip__item {
  padding: var(--space-5) var(--space-4);
  text-align: center;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-strip__item:nth-child(2n) { border-right: none; }
.trust-strip__item:nth-last-child(-n+2) { border-bottom: none; }
@media (min-width: 768px) {
  .trust-strip__item {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }
  .trust-strip__item:nth-child(2n) { border-right: 1px solid var(--color-border); }
  .trust-strip__item:last-child { border-right: none; }
}
.trust-strip__icon { font-size: 1.5rem; margin-bottom: var(--space-1); }
.trust-strip__title { font-weight: 700; font-size: var(--fs-sm); }
.trust-strip__sub { color: var(--color-text-light); font-size: var(--fs-xs); }

.products-grid {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}
.products-grid__header {
  text-align: center;
  margin-bottom: var(--space-10);
}
.products-grid__eyebrow {
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-warning);
  margin-bottom: var(--space-2);
}
.products-grid__title {
  font-size: var(--fs-3xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.products-grid__subtitle {
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .products-grid__title { font-size: var(--fs-4xl); }
}
.products-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .products-grid__list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .products-grid__list { grid-template-columns: 1fr 1fr 1fr; }
}
.product-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card--oos {
  opacity: 0.82;
}
.product-card--oos:hover { transform: none; }
.product-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.product-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--color-urgency);
  color: #fff;
  padding: 0.35rem 0.75rem;
  font-weight: 800;
  font-size: var(--fs-sm);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}
.product-card__badge--oos {
  background: #475569;
  box-shadow: none;
}
.product-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-2);
}
.product-card__category {
  font-size: var(--fs-xs);
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-card__title {
  font-size: var(--fs-xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.product-card__desc {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  flex: 1;
  line-height: 1.55;
}
.product-card__price {
  font-weight: 800;
  font-size: var(--fs-xl);
  margin-top: var(--space-2);
  color: var(--color-text);
}
.product-card__cta {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3);
  border-radius: var(--radius);
  font-weight: 700;
  margin-top: var(--space-2);
  transition: background var(--transition);
}
.product-card__cta:hover { background: var(--color-primary-dark); }
.product-card--oos .product-card__cta {
  background: #475569;
}
.product-card--oos .product-card__cta:hover { background: #334155; }

.why-us {
  padding: var(--space-16) 0;
  background: #fff;
}
.why-us__title {
  text-align: center;
  font-size: var(--fs-3xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .why-us__title { font-size: var(--fs-4xl); }
}
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 768px) {
  .why-us__grid { grid-template-columns: 1fr 1fr 1fr; }
}
.why-us__item {
  padding: var(--space-6);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}
.why-us__icon { font-size: 2rem; margin-bottom: var(--space-3); }
.why-us__heading { margin-bottom: var(--space-2); font-size: var(--fs-lg); }
.why-us__text { color: var(--color-text-muted); font-size: var(--fs-sm); line-height: 1.6; }

.customer-reviews {
  padding: var(--space-12) 0;
  background: var(--color-bg-alt);
  text-align: center;
}
.customer-reviews__score {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-warning);
  line-height: 1;
}
.customer-reviews__stars {
  font-size: var(--fs-2xl);
  color: var(--color-warning);
  margin: var(--space-2) 0;
  letter-spacing: 0.08em;
}
.customer-reviews__count {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

/* Policy pages */
.policy-page {
  padding: var(--space-10) 0;
}
.policy-page__inner {
  max-width: 760px;
  margin: 0 auto;
}
.policy-page h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-3);
}
.policy-page__updated {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-8);
}
.policy-page h2 {
  font-size: var(--fs-xl);
  margin: var(--space-6) 0 var(--space-3);
}
.policy-page p, .policy-page ul {
  margin-bottom: var(--space-3);
  color: var(--color-text-muted);
  line-height: 1.7;
}
.policy-page ul { padding-left: var(--space-5); list-style: disc; }
.policy-page ul li { margin-bottom: var(--space-1); }
.policy-page a { color: var(--color-primary); text-decoration: underline; }
.policy-page strong { color: var(--color-text); }
