/* V10: hero, calculator and bundle photographs, each used once. */
:root { --product-gap: clamp(2.5rem, 5vw, 5rem); }

/* Natural image proportions keep all supplied product details visible. */
.product-visual {
  width: 100%;
  max-width: none;
  aspect-ratio: auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.product-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
}
.hero {
  grid-template-columns: minmax(0, 56fr) minmax(0, 44fr);
  gap: var(--product-gap);
}
.steps-layout {
  /* 49 / 40 = 1.225: calculator width grows by 22.5% on desktop. */
  grid-template-columns: minmax(0, 51fr) minmax(0, 49fr);
  gap: var(--product-gap);
  align-items: center;
}
.bundle {
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  gap: var(--product-gap);
}

/* Keep the full uploaded portrait: no crop, no clipping, no distortion. */
.calculator-visual {
  aspect-ratio: auto;
  overflow: visible;
  align-self: center;
}
.calculator-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .hero, .steps-layout, .bundle {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }
  .product-visual, .bundle .product-visual {
    width: min(100%, 30rem);
    justify-self: center;
  }
  .calculator-visual { width: min(100%, 36.75rem); }
}
@media (max-width: 600px) {
  .hero, .steps-layout, .bundle { gap: 2rem; }
}
