/* Client-day Pro-Trade visual correction. Loaded after the stable site stylesheet. */
.featured-product {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
  padding: clamp(12px, 2vw, 22px);
  background: radial-gradient(circle at 14% 38%, rgba(132, 154, 154, 0.09), transparent 42%), var(--surface-solid);
  box-shadow: var(--shadow);
}

.featured-product figure {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(244, 232, 212, 0.13);
  background: #07110d;
}

.featured-product figure::after,
.product-hero figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(244, 232, 212, 0.06), inset 0 -54px 80px rgba(2, 8, 6, 0.18);
}

.featured-product figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-product > div {
  background: linear-gradient(145deg, rgba(215, 155, 99, 0.11), transparent 46%);
}

.product-hero figure {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #07110d;
}

.product-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 820px) {
  .featured-product { grid-template-columns: 1fr; }
  .featured-product figure { min-height: 0; }
}
