/* Home — "So we filtered it out first." (product / 4-stage filtration)
   Two-col headline+stages / hero image, plus benefit rings.
   Grid layout, mobile stacking and ring styles live in home.css /
   home-sections.css; this supplies the desktop grid definition and the
   styling formerly inline (it intentionally overrides a few home.css
   values, e.g. the hero-image height/radius/shadow). Tokens only. */

.product {
  background: var(--sand);
}

.product__inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(var(--space-16), 7vw, var(--space-24));
  row-gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.product__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(var(--space-4), 1.8vw, var(--space-6));
  text-align: left;
}
.product__intro em {
  color: var(--blush);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
}

.product__intro {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin: 0;
  width: fit-content;
  position: relative;
  padding-bottom: clamp(var(--space-2), 0.8vw, var(--space-3));
}

.product__intro::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.product__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  text-align: left;
}
.product__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--blush);
}
.product__body {
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  line-height: 1.7;
  margin-bottom: 0;
  text-align: left;
}


/* Hero image — overrides a few home.css #product-hero-img defaults
   (height / radius / shadow) to match the original inline styling. */
#product-hero-img {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-deep);
  aspect-ratio: 1 / 1;
  height: auto;
}
#product-hero-img img {
  object-fit: contain !important;
}

.product__stats {
  display: flex;
  gap: clamp(var(--space-3), 1.5vw, var(--space-4));
  margin-top: clamp(var(--space-6), 2vw, var(--space-8));
  padding-top: clamp(var(--space-4), 1.5vw, var(--space-5));
  border-top: 1px solid rgba(201, 154, 93, 0.3);
}

.product__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  background: var(--ivory);
  border: 1px solid rgba(201, 154, 93, 0.22);
  border-top: 2px solid rgba(201, 154, 93, 0.55);
  border-radius: var(--radius-sm);
  padding: var(--space-4) var(--space-3) var(--space-3);
  box-shadow: 0 4px 18px rgba(64, 54, 50, 0.07), inset 0 1px 0 rgba(255, 249, 240, 0.9);
  position: relative;
  overflow: hidden;
}

.product__stat::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 154, 93, 0.12);
  pointer-events: none;
}

.product__stat-up {
  font-family: var(--sans);
  font-size: 0.54rem;
  font-weight: 700;
  color: var(--taupe);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.product__stat-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.product__stat-label {
  font-family: var(--sans);
  font-size: clamp(0.6rem, 0.72vw, 0.66rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--taupe);
  line-height: 1.35;
  margin-top: var(--space-2);
}

@media (max-width: 780px) {
  .product-top-grid {
    grid-template-columns: 1fr;
    row-gap: clamp(var(--space-8), 6vw, var(--space-12));
  }

  #product-hero-img {
    border-radius: var(--radius) !important;
    box-shadow: var(--shadow-deep) !important;
    aspect-ratio: 4 / 3 !important;
    width: 100%;
  }

  #product-hero-img img {
    object-fit: cover !important;
    object-position: center top !important;
    aspect-ratio: 4 / 3 !important;
  }

  .product__text {
    text-align: left !important;
    align-items: flex-start;
  }

  .product__text h2,
  .product__text p {
    text-align: left !important;
  }

  .product__stats {
    gap: var(--space-4);
  }
}
