/* ============================================================
   PS24 Child — Image + Style fixes v2
   ============================================================ */

/* ── <picture> block-level ───────────────────────────────── */
picture { display: block; }

/* ── Eyebrow override: no uppercase, no mono ─────────────── */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--red);
}
.eyebrow::before { width: 14px; }

/* ── Hero home (ps-hero) — foto prodotto verticale ───────── */
/* .ms.shot è sulla <img>, non su <picture> */
.ps-hero .ms.shot {
  max-height: 460px;
  width: auto;
  margin-inline: auto;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .ps-hero .ms.shot { max-height: 300px; }
}

/* ── Card prodotti (.ph) — sfondo chiaro ────────────────── */
/* Usa contain + padding per mostrare il prodotto intero */
.ps-card .ph { overflow: hidden; }
.ps-card .ph picture {
  position: absolute;
  inset: 0;
  background: #fff;
}
.ps-card .ph picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  box-sizing: border-box;
  display: block;
  background: #fff;
}

/* ── Hero pagina prodotto (sol-hero) — sfondo chiaro ─────── */
.sol-hero picture.shot {
  width: 100%;
  height: 440px;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: #f8f8f8;
  box-shadow: var(--shadow-md, 0 4px 24px rgba(0,0,0,.12));
}
.sol-hero picture.shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
  display: block;
}

/* ── Feature rows — layout senza foto ───────────────────── */
/* Il feat-highlight sostituisce la colonna immagine */
.feat-highlight {
  background: var(--mist);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  gap: 12px;
}
.feat-highlight .fh-num {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--red);
  letter-spacing: -0.03em;
}
.feat-highlight .fh-label {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.2;
}
.feat-highlight .fh-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.feat-row.flip .feat-highlight { background: var(--charcoal-900); }
.feat-row.flip .feat-highlight .fh-num { color: var(--red); }
.feat-row.flip .feat-highlight .fh-label { color: #fff; }
.feat-row.flip .feat-highlight .fh-sub { color: #aaa; }

/* Responsive */
@media (max-width: 1024px) {
  .ps-hero picture.shot { height: 280px; }
  .sol-hero picture.shot { height: 300px; }
  .ps-hero picture.shot img { object-position: center; }
}
