/* Hero con degradado + emoji gigante (sin foto) para esta página */
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  aspect-ratio: 16 / 7;
  background:
    radial-gradient(circle at 78% 30%, rgba(214,18,8,0.28) 0%, transparent 55%),
    linear-gradient(135deg, #2A2420 0%, #1A1612 55%, #0d0b09 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.hero__photo::after {
  content: '🧳';
  font-size: 26rem;
  line-height: 1;
  opacity: 0.09;
  transform: rotate(-8deg);
  margin-right: -3rem;
}
.product-card__icon {
  font-size: 4.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.15));
}
