/**
 * PDP — stili dedicati (mobile-first, token KM Sport da style.css)
 * Sezioni: variabili, layout, gallery, buybox, contenuti, correlati, sticky, sheet
 */

/* ------------------------------------------------------------------------- */
/* Variabili locali (allineate a btn-km-green: #BED031, testo scuro #343a40)   */
/* ------------------------------------------------------------------------- */
.pdp {
  --pdp-bg: #FFFFFF;
  --pdp-surface: #fff;
  --pdp-text: #343a40;
  --pdp-muted: #5c6670;
  --pdp-accent: #bed031;
  --pdp-accent-dark: #343a40;
  --pdp-online: #7b2cbf;
  --pdp-radius: 12px;
  --pdp-gap: 1.25rem;
  --pdp-max: 1800px;
  --pdp-shadow: none; /*0 8px 30px rgba(52, 58, 64, 0.06);*/
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--pdp-text);
  background: var(--pdp-bg);
  padding-bottom: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.pdp-container {
  max-width: var(--pdp-max);
  margin: 0 auto;
  padding: 1rem 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile / tablet stretti: padding orizzontale eccessivo + grid implicita possono
   lasciare banda vuota a destra; forziamo colonna unica e larghezza piena. */
@media (max-width: 991.98px) {
  .pdp-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pdp-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .pdp-grid > * {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

.pdp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Spazio per sticky CTA mobile */
.pdp-body--sticky {
  padding-bottom: 5.5rem;
}

/* ------------------------------------------------------------------------- */
/* Breadcrumb                                                                 */
/* ------------------------------------------------------------------------- */
.pdp-breadcrumb {
  padding: 0rem;
  font-size: 0.8125rem;
  color: var(--pdp-muted);
}

.pdp-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pdp-breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

.pdp-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin: 0 0.5rem;
  color: #ccc;
  font-weight: 400;
}

.pdp-breadcrumb__item a {
  color: var(--pdp-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.pdp-breadcrumb__item a:hover,
.pdp-breadcrumb__item a:focus {
  color: var(--pdp-text);
  border-bottom-color: var(--pdp-accent);
}

.pdp-breadcrumb__item--current {
  color: var(--pdp-text);
  font-weight: 600;
  max-width: 100%;
}

.pdp-breadcrumb__item--current span {
  display: inline-block;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  vertical-align: bottom;
}

@media (min-width: 768px) {
  .pdp-breadcrumb__item--current span {
    max-width: 420px;
  }
}

/* ------------------------------------------------------------------------- */
/* Griglia principale                                                         */
/* ------------------------------------------------------------------------- */
.pdp-grid {
  display: grid;
  gap: 1.75rem;
  margin-top: 0.75rem;
}

@media (min-width: 992px) {
  .pdp-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
    gap: 2.5rem;
  }
}

/* ------------------------------------------------------------------------- */
/* Gallery                                                                    */
/* ------------------------------------------------------------------------- */
.pdp-gallery {
  background: var(--pdp-surface);
  border-radius: var(--pdp-radius);
  padding: 1rem;
  box-shadow: var(--pdp-shadow);
}

.pdp-gallery__main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  background: #fff;
  border-radius: 8px;
  touch-action: pan-y;
  position: relative;
}

.pdp-gallery__wishlist-btn {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  border: 1px solid #d9dee4;
  background: #fff;
  box-shadow: 0 2px 10px rgba(16, 24, 40, 0.08);
  z-index: 3;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pdp-gallery__wishlist-btn:hover,
.pdp-gallery__wishlist-btn:focus {
  border-color: #c8cfd7;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.12);
  transform: translateY(-1px);
}

.pdp-gallery__wishlist-btn:focus {
  outline: none;
}

.pdp-gallery__wishlist-btn:focus-visible {
  outline: 2px solid var(--pdp-accent);
  outline-offset: 2px;
}

.pdp-gallery__wishlist-btn img {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
  object-fit: contain;
}

.pdp-gallery__main picture,
.pdp-gallery__hero {
  display: block;
  max-width: 100%;
  height: auto;
}

.pdp-gallery__hero {
  max-height: 420px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

@media (min-width: 992px) {
  .pdp-gallery__hero {
    max-height: 480px;
  }
}

.pdp-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}

.pdp-gallery__thumb {
  flex: 0 0 auto;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pdp-gallery__thumb:focus {
  outline: 2px solid var(--pdp-accent);
  outline-offset: 2px;
}

.pdp-gallery__thumb.is-active {
  border-color: var(--pdp-accent);
  box-shadow: 0 0 0 1px rgba(190, 208, 49, 0.35);
}

.pdp-gallery__thumb img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 6px;
}

@media (max-width: 991.98px) {
  .pdp-gallery__thumbs {
    gap: 0.5rem;
  }

  .pdp-gallery__thumb {
    flex: 0 0 calc((100% - 2rem) / 4.5);
  }

  .pdp-gallery__thumb img {
    width: 100%;
    height: 72px;
  }
}

.pdp-gallery__empty {
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: var(--pdp-muted);
}

.pdp-gallery__counter {
  display: none;
}

@media (max-width: 991.98px) {
  .pdp-gallery {
    padding: 0;
  }

  .pdp-gallery__wishlist-btn {
    top: 0.2rem;
    left: 0.2rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .pdp-gallery__wishlist-btn img {
    width: 1.28rem;
    height: 1.28rem;
  }

  .pdp-gallery__counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0.2rem;
    right: 0.2rem;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.45rem;
    border-radius: 0.45rem;
    background: #d9dde2;
    color: #111;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
  }
}

/* ------------------------------------------------------------------------- */
/* Buy box                                                                    */
/* ------------------------------------------------------------------------- */
.pdp-buybox {
  padding: 0.25rem 0 1rem;
}

.pdp-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .pdp-title {
    font-size: 2.15rem;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 0.55rem;
    font-weight: 650;
  }

  .pdp-meta {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .pdp-meta__sku {
    color: #5c6670;
  }

  .pdp-price__current {
    font-size: 3.1rem;
    line-height: 1;
  }

  .pdp-price__disc {
    font-size: 1rem;
    color: #ff3f5c;
    background: #fff1f3;
    border: 1px solid #ffd4db;
    padding: 0.18rem 0.48rem;
    border-radius: 8px;
    margin-left: 0.1rem;
    line-height: 1.2;
  }

  .pdp-price__was {
    font-size: 1.05rem;
    margin-top: 0.25rem;
  }

  .pdp-size-select {
    min-height: 64px;
    font-size: 1.1rem;
    border-width: 2px;
    border-radius: 8px;
    background-color: #fff;
  }

  .pdp-wishlist__link {
    font-size: 0.95rem;
  }
}

.pdp-campaign-star {
  flex-shrink: 0;
  line-height: 0;
}

.pdp-meta {
  font-size: 0.9375rem;
  color: var(--pdp-muted);
  margin: 0 0 1rem;
}

.pdp-meta__brand-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdp-meta__brand-link:hover,
.pdp-meta__brand-link:focus {
  color: var(--pdp-text);
}

.pdp-meta__sep {
  margin: 0 0.35rem;
}

.pdp-service-strip {
  margin: 1.25rem 0;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pdp-service-strip__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0.65rem;
}

.pdp-service-strip__item + .pdp-service-strip__item {
  border-left: 1px solid #ececec;
}

.pdp-service-strip__icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.pdp-service-strip__icon img,
.pdp-service-strip__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-service-strip__text {
  font-size: 0.82rem;
  line-height: 1.22;
  font-weight: 700;
  text-transform: uppercase;
}

.pdp-variants__label {
  display: inline-flex;
  align-items: center;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin: 0 0 0.3rem;
  color: #1f2328;
}

.pdp-variants {
  margin-top: 1rem;
}

.pdp-variants__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.75rem;
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
}

.pdp-variants__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e3e7ed;
  background: #fff;
  box-shadow: 0 3px 10px rgba(34, 42, 53, 0.08);
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.pdp-variants__link:hover,
.pdp-variants__link:focus {
  border-color: var(--pdp-accent);
  box-shadow: 0 6px 16px rgba(34, 42, 53, 0.13);
  transform: translateY(-1px);
}

.pdp-variants__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.28rem;
}

.pdp-price-block {
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid #eee;
}

.pdp-price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.pdp-price--sale {
  align-items: center;
  gap: 0.5rem 0.6rem;
}

.pdp-price__label {
  font-size: 0.875rem;
  color: var(--pdp-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdp-price__current {
  font-size: 1.75rem;
  font-weight: 700;
}

.pdp-price__was {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--pdp-muted);
}

.pdp-price__disc {
  font-weight: 700;
  margin-left: 0.35rem;
}

.pdp-price__online {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: 600;
  color: var(--pdp-online);
}

.pdp-sizes {
  margin-bottom: 1rem;
}

.pdp-sizes__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: nowrap;
}

.pdp-sizes__label {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.pdp-sizes__controls {
  display: block;
}

.pdp-size-unique {
  font-weight: 700;
  text-align: center;
  font-size: 1.35rem;
  margin: 0;
  padding: 0.5rem 0;
}

.pdp-link-like {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  font-size: 0.9375rem;
  text-decoration: underline;
  color: var(--pdp-text);
  cursor: pointer;
}

.pdp-size-guide-link {
  margin-top: 0;
  white-space: nowrap;
  font-size: 0.9rem;
  margin-left: auto;
}

.pdp-link-like:hover,
.pdp-link-like:focus {
  color: var(--pdp-accent-dark);
}

.pdp-alert {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: #c00;
}

.pdp-low-stock-note {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #5c6670;
  text-align: left;
}

.pdp-stock-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.pdp-stock-row__item {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  line-height: 1.2;
}

.pdp-stock-row__item--ok {
  color: #1c9b39;
}

.pdp-stock-row__item--low {
  color: #f08a00;
}

.pdp-stock-row__icon {
  font-size: 1.02em;
  line-height: 1;
}

.pdp-stock-row__sep {
  color: #c8ccd1;
  font-weight: 500;
}

.pdp-actions--desktop {
  margin-top: 0.8rem;
}

.pdp-btn-cart {
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 8px;
  min-height: 58px;
  font-size: 1.18rem;
  font-weight: 800;
  background-color: #2f343a;
  border-color: #2f343a;
  color: #fff;
}

.pdp-btn-cart:hover,
.pdp-btn-cart:focus {
  background-color: #252a30;
  border-color: #252a30;
  color: #fff;
}

.pdp-btn-cart__icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-right: 0.45rem;
  vertical-align: middle;
}

.pdp-btn-cart__icon img,
.pdp-btn-cart__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-assurance-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.9rem;
  color: var(--pdp-muted);
  font-size: 0.95rem;
}

.pdp-assurance-row__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pdp-assurance-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #555f69;
  line-height: 1;
}

.pdp-assurance-row__icon img,
.pdp-assurance-row__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-assurance-row__sep {
  color: #b5b9be;
}

.pdp-wishlist {
  margin-top: 1.4rem;
  text-align: center;
}

.pdp-wishlist__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--pdp-text);
}

.pdp-wishlist__link span {
  text-decoration: underline;
}

.pdp-wishlist__link:hover,
.pdp-wishlist__link:focus {
  color: var(--pdp-accent-dark);
}

/* Su mobile: select taglia nel flusso nascosto (flusso sticky + sheet) */
@media (max-width: 991.98px) {
  .pdp-assurance-row {
    display: none;
  }

  /* La head (label + guida inline) è dedicata al desktop: su mobile viene
     sostituita dal trigger custom + guida taglie dedicata (--mobile) */
  .pdp-sizes__head {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .pdp-size-select--flow {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .pdp-actions--desktop .pdp-btn-cart {
    display: none;
  }
}

/* Tablet/desktop (992px+): niente sticky né sheet full-screen */
@media (min-width: 992px) {
  .pdp-sticky,
  .pdp-sheet {
    display: none !important;
  }

  .pdp-body--sticky {
    padding-bottom: 0;
  }
}

/* ------------------------------------------------------------------------- */
/* Contenuti / sezioni                                                        */
/* ------------------------------------------------------------------------- */
.pdp-section-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--pdp-accent);
  display: inline-block;
}

.pdp-content--basic,
.pdp-extra,
.pdp-commercial {
  max-width: none;
}

/* Advanced: usa tutta la larghezza del .pdp-container (desktop multi-colonna sotto Intro) */
.pdp-content--advanced {
  max-width: none;
  width: 100%;
  padding-bottom: 5rem;
  padding-top: 2rem;
}

@media (min-width: 992px) {
  .pdp-content--basic {
    max-width: none;
    width: 100%;
  }

  .pdp-content--basic .pdp-prose {
    margin-bottom: 0;
  }

  .pdp-content--basic .pdp-section-title--basic-details {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.pdp-advanced-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.pdp-advanced-split__main,
.pdp-advanced-split__faq {
  min-width: 0;
}

/* Intro testuale come primo blocco colonna sinistra (senza titolo h2) */
.pdp-advanced-split__main > .pdp-prose--intro:first-child {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.pdp-advanced-split__main > .pdp-prose--intro:first-child + .pdp-section-title {
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .pdp-advanced-split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2rem 3rem;
    align-items: start;
  }

  .pdp-advanced-split__faq {
    position: sticky;
    top: 1rem;
  }
}

.pdp-prose {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--pdp-text);
}

.pdp-intro-followup {
  margin: 0.65rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--pdp-text);
}

.pdp-intro-followup a {
  color: #4f6f00;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ------------------------------------------------------------------------- */
/* Recensione tecnica (advanced)                                             */
/* ------------------------------------------------------------------------- */
.pdp-tech-review {
  margin: 1.1rem 0 1.5rem;
  padding: 1rem;
  border: 1px solid #dce6cb;
  border-radius: 12px;
  background: #f8fbed;
}

.pdp-tech-review__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: #bed031;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1f2328;
}

.pdp-tech-review__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1f2328;
  flex: 0 0 auto;
}

.pdp-tech-review__title {
  margin: 0.45rem 0 0.4rem;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #14181d;
}

.pdp-tech-review__visual {
  margin-top: 0.7rem;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d8e1c3;
}

.pdp-tech-review__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.pdp-tech-review__meta-list {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.pdp-tech-review__meta-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 0.5rem;
  color: #2f353b;
}

.pdp-tech-review__meta-icon {
  width: 18px;
  height: 18px;
  color: #5c6670;
}

.pdp-tech-review__meta-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pdp-tech-review__meta-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}

.pdp-tech-review__meta-name {
  font-size: 0.86rem;
  font-weight: 700;
}

.pdp-tech-review__meta-role {
  font-size: 0.84rem;
  font-weight: 500;
  color: #5c6670;
}

.pdp-tech-review__meta-line {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.25;
  color: #384049;
}

.pdp-tech-review__content {
  margin-top: 0.85rem;
}

.pdp-tech-review__content p {
  margin: 0 0 0.7rem;
  font-size: 0.97rem;
  line-height: 1.58;
  color: #22272d;
}

.pdp-tech-review__content p:last-child {
  margin-bottom: 0;
}

.pdp-tech-review__toggle {
  display: none;
}

/* ------------------------------------------------------------------------- */
/* Recensione hero desktop (full-width prima contenuto advanced)             */
/* ------------------------------------------------------------------------- */
.pdp-tech-review-hero {
  display: none;
}

@media (min-width: 992px) {
  .pdp-tech-review-hero {
    display: block;
    margin: 1.5rem 0 0.5rem;
    padding: 1.2rem;
    border: 1px solid #d7dde3;
    border-radius: 14px;
    background: #f3f5f7;
  }

  .pdp-tech-review-hero__top {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.95fr);
    gap: 1.2rem;
    align-items: start;
  }

  .pdp-tech-review-hero__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.34rem 0.7rem;
    border-radius: 999px;
    background: #bed031;
    color: #1f2328;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    font-weight: 800;
  }

  .pdp-tech-review-hero__kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1f2328;
    flex: 0 0 auto;
  }

  .pdp-tech-review-hero__title {
    margin: 0.8rem 0 0.35rem;
    font-size: 1.85rem;
    line-height: 1.12;
    font-weight: 800;
    color: #111315;
  }

  .pdp-tech-review-hero__intro {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.45;
    color: #2f353b;
    max-width: 95%;
  }

  .pdp-tech-review-hero__meta {
    margin-top: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .pdp-tech-review-hero__meta-item {
    padding: 0.5rem 0.65rem;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    grid-template-areas: "icon value";
    column-gap: 0.65rem;
    align-items: center;
    min-width: 0;
    border: 1px solid #d8dee5;
    border-radius: 8px;
    background: #eef1f4;
  }

  .pdp-tech-review-hero__meta-icon {
    grid-area: icon;
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5d6873;
  }

  .pdp-tech-review-hero__meta-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .pdp-tech-review-hero__meta-value {
    grid-area: value;
    display: block;
    font-size: 0.9rem;
    color: #1f2328;
    line-height: 1.25;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .pdp-tech-review-hero__meta-item {
    flex: 0 0 auto;
  }

  .pdp-tech-review-hero__visual {
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #e6ebf0;
    min-height: 250px;
  }

  .pdp-tech-review-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pdp-tech-review-hero__body {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #d5dbe1;
  }

  .pdp-tech-review-hero__body p {
    margin: 0 0 0.65rem;
    font-size: 1.03rem;
    line-height: 1.6;
    color: #1f2328;
  }

  .pdp-tech-review-hero__body p:last-child {
    margin-bottom: 0;
  }
}

.pdp-list {
  margin: 0 0 1rem 1.1rem;
  padding: 0;
  line-height: 1.55;
}

.pdp-list li {
  margin-bottom: 0.35rem;
}

.pdp-list--strengths {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.pdp-list--strengths li {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 1rem;
}

.pdp-list--strengths li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  background: url("../img/icon/strenghts.png") center / contain no-repeat;
}

.pdp-faq__item {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 0.5rem 0.85rem;
  margin-bottom: 0.5rem;
  background: var(--pdp-surface);
}

.pdp-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.35rem 0;
}

.pdp-faq__item p {
  margin: 0.5rem 0 0.35rem;
  font-size: 0.9375rem;
  color: var(--pdp-muted);
}

/* Spedizione / Reso in colonna FAQ (stesso blocco visivo delle FAQ) */
.pdp-faq__item--rich .pdp-faq__body {
  padding: 0.25rem 0 0.15rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--pdp-muted);
}

.pdp-faq__body ul {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.1rem;
}

.pdp-faq__body li {
  margin-bottom: 0.35rem;
}

.pdp-faq__cta {
  margin-top: 0.5rem;
}

.pdp-advanced-split__faq .pdp-section-title {
  margin-top: 0.5rem;
}

.pdp-advanced-split__main .pdp-section-title--advanced-anchor {
  margin-top: 0.5rem;
}

.pdp-guide-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(110deg, #f4f7e8 0%, #fff 55%);
  border: 1px solid #d6e0a8;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pdp-guide-cta:hover {
  border-color: #BED031;
  box-shadow: 0 2px 10px rgba(190, 208, 49, 0.18);
  color: #222;
  text-decoration: none;
}

.pdp-guide-cta:focus {
  outline: 2px solid #BED031;
  outline-offset: 2px;
}

.pdp-guide-cta .plp-sport-guide-banner__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(190, 208, 49, 0.25);
  color: #4a5a10;
}

.pdp-guide-cta .plp-sport-guide-banner__icon svg {
  width: 22px;
  height: 22px;
}

.pdp-guide-cta .plp-sport-guide-banner__body {
  flex: 1 1 200px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pdp-guide-cta .plp-sport-guide-banner__kicker {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6a7a28;
}

.pdp-guide-cta .plp-sport-guide-banner__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  font-family: 'Montserrat', sans-serif;
}

.pdp-guide-cta .plp-sport-guide-banner__cta {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #4a5a10;
  white-space: nowrap;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  background: rgba(190, 208, 49, 0.35);
  transition: background 0.2s ease;
}

.pdp-guide-cta:hover .plp-sport-guide-banner__cta {
  background: #BED031;
  color: #222;
}

/* ------------------------------------------------------------------------- */
/* Cross sell CTA nel contenuto advanced                                     */
/* ------------------------------------------------------------------------- */
.pdp-cross-sell {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.55rem;
  margin: 3rem 0 0;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: #f6faea;
  border: 1px solid #d8e9b6;
  text-decoration: none;
  color: #111315;
}

.pdp-cross-sell:hover,
.pdp-cross-sell:focus {
  text-decoration: none;
  color: #111315;
  border-color: #c9dea0;
}

.pdp-cross-sell__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #4f6f00;
}

.pdp-cross-sell__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f9f52;
  flex: 0 0 auto;
}

.pdp-cross-sell__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pdp-cross-sell__media {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  padding: 0.35rem;
  border-radius: 10px;
  border: 1px solid #dbe8b0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pdp-cross-sell__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-cross-sell__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.pdp-cross-sell__title {
  display: block;
  font-size: 1.85rem;
  line-height: 1.18;
  font-weight: 800;
}

.pdp-cross-sell__text {
  display: block;
  font-size: 1.08rem;
  line-height: 1.45;
}

.pdp-cross-sell__text strong {
  text-decoration: underline;
  color: #4f6f00;
  text-decoration-color: #4f6f00;
}

.pdp-cross-sell__footer {
  margin-top: 0.35rem;
  background: #eef7df;
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  overflow: hidden;
}

.pdp-cross-sell__footer-label {
  padding: 0 0.9rem;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  font-size: 0.96rem;
  font-weight: 800;
  color: #4f6f00;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pdp-cross-sell__footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  justify-content: center;
  border-left: 1px solid #d6e8b0;
  padding: 0 0.9rem;
  min-height: 56px;
  font-size: 0.96rem;
  font-weight: 800;
  color: #4f6f00;
  white-space: nowrap;
}

.pdp-cross-sell__arrow {
  flex: 0 0 auto;
  font-size: 1.7rem;
  line-height: 1;
  color: #4f6f00;
}

@media (max-width: 576px) {
  .pdp-guide-cta--mobile {
    margin: 0 0 1.4rem;
  }

  .pdp-guide-cta {
    padding: 0.65rem 0.85rem;
    gap: 0.6rem;
  }

  .pdp-guide-cta .plp-sport-guide-banner__title {
    font-size: 0.88rem;
  }

  .pdp-guide-cta .plp-sport-guide-banner__cta {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .pdp-cross-sell__title {
    font-size: 1.22rem;
  }

  .pdp-cross-sell__text {
    font-size: 0.95rem;
  }
}

.pdp-video-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--pdp-radius);
  overflow: hidden;
}

.pdp-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pdp-disclosure {
  border: 1px solid #e8e8e8;
  border-radius: var(--pdp-radius);
  padding: 0.65rem 1rem;
  margin-bottom: 0.65rem;
  background: var(--pdp-surface);
}

.pdp-disclosure summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
}

.pdp-disclosure__body {
  padding: 0.75rem 0 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--pdp-muted);
}

.pdp-disclosure__body ul {
  padding-left: 1.1rem;
}

.pdp-disclosure__cta {
  margin-top: 0.75rem;
}

/* ------------------------------------------------------------------------- */
/* Servizi stack (desktop: box unico a segmenti espandibili)                */
/* ------------------------------------------------------------------------- */
.pdp-services-stack {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid #dfe5d0;
  border-radius: 12px;
  background: #eef0f2;
}

.pdp-advanced-split__faq .pdp-services-stack {
  margin-top: 3rem;
}

.pdp-services-stack__item {
  margin: 0;
}

.pdp-services-stack__item + .pdp-services-stack__item {
  border-top: 1px solid #dfe5d0;
}

.pdp-services-stack__item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2328;
  line-height: 1.25;
}

.pdp-services-stack__item > summary::-webkit-details-marker {
  display: none;
}

.pdp-services-stack__icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pdp-services-stack__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-services-stack__title {
  flex: 1 1 auto;
}

.pdp-services-stack__body {
  padding: 0 0 0.85rem 1.9rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #2f343a;
}

.pdp-services-stack__body p {
  margin: 0 0 0.45rem;
}

.pdp-services-stack__body p:last-child {
  margin-bottom: 0;
}

.pdp-services-stack__body a {
  color: #4f6f00;
  text-decoration: underline;
  font-weight: 700;
}

@media (min-width: 992px) {
  .pdp-basic-split {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .pdp-basic-split__services {
    position: sticky;
    top: 1rem;
  }

  .pdp-content--advanced .pdp-section-title {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* ------------------------------------------------------------------------- */
/* Correlati                                                                  */
/* ------------------------------------------------------------------------- */
.pdp-related {
  padding: 1rem;
}

.pdp-related__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}

.pdp-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
}

@media (min-width: 768px) {
  .pdp-related__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.pdp-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7ebf0;
  border-radius: var(--pdp-radius);
  box-shadow: var(--pdp-shadow);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pdp-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(52, 58, 64, 0.1);
}

.pdp-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.pdp-card__media {
  position: relative;
  aspect-ratio: 1;
  background: #fff;
}

.pdp-card__media picture,
.pdp-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pdp-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  background: var(--pdp-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.pdp-card__badge--online {
  background: var(--pdp-accent-dark);
}

.pdp-card__badge--online small {
  display: block;
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
}

.pdp-card__body {
  padding: 0.65rem 0.75rem 1.25rem;
}

.pdp-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.pdp-card__desc {
  font-size: 0.75rem;
  color: var(--pdp-muted);
  margin: 0 0 0.5rem;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pdp-card__price {
  margin: 0;
  font-size: 0.875rem;
}

.pdp-card__price-now {
  font-size: 1.05rem;
  font-weight: 700;
}

.pdp-card__price del {
  color: var(--pdp-muted);
  margin-left: 0.35rem;
}

.pdp-card__heart {
  position: absolute;
  bottom: 6px;
  right: 6px;
  z-index: 2;
}

/* ------------------------------------------------------------------------- */
/* Sticky mobile + bottom sheet taglie                                        */
/* ------------------------------------------------------------------------- */
.pdp-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0));
  background: linear-gradient(180deg, rgba(246, 248, 251, 0) 0%, #f6f8fb 28%);
  border-top: 1px solid #e6eaef;
  box-shadow: 0 -4px 24px rgba(52, 58, 64, 0.08);
}

@media (max-width: 767.98px) {
  .pdp-sticky {
    /* transform aggiornato da JS (visualViewport) quando la chrome del browser cambia in scroll */
    will-change: transform;
  }
}

.pdp-sticky__btn {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-height: 48px;
  background-color: #2f343a;
  border-color: #2f343a;
  color: #fff;
}

.pdp-sticky__btn:hover,
.pdp-sticky__btn:focus {
  background-color: #252a30;
  border-color: #252a30;
  color: #fff;
}

.pdp-sheet {
  position: fixed;
  inset: 0;
  z-index: 1040;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.pdp-sheet.is-open {
  pointer-events: auto;
  opacity: 1;
}

.pdp-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(52, 58, 64, 0.45);
}

.pdp-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 72vh;
  max-height: 72dvh;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pdp-sheet.is-open .pdp-sheet__panel {
  transform: translateY(0);
}

.pdp-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.5rem;
  border-bottom: 1px solid #eee;
}

.pdp-sheet__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.pdp-sheet__close {
  border: 0;
  background: #f0f0f0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.pdp-sheet__body {
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0));
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

body.pdp-sheet-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

.pdp-sheet__hint {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--pdp-muted);
}

.pdp-sheet__sizes {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-sheet__size-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.pdp-sheet__size-btn:hover,
.pdp-sheet__size-btn:focus {
  border-color: var(--pdp-accent);
  background: rgba(190, 208, 49, 0.12);
  outline: none;
}

.pdp-sheet__size-btn:disabled,
.pdp-sheet__size-btn.is-unavailable {
  border-color: #e0e0e0;
  background: #ececec;
  color: #9a9a9a;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
  text-decoration-color: #b5b5b5;
}

.pdp-sheet__size-btn.is-in-cart-unavailable {
  border-color: #dce8be;
  background: #f2f8df;
  color: #6c7f20;
  text-decoration-color: #98aa48;
}

/* Sheet scelta taglie: griglia 3 colonne + varianti esaurite (solo span, no click) */
.pdp-sheet--sizes .pdp-sheet__sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 0.45rem;
  align-content: start;
}

.pdp-sheet--sizes .pdp-sheet__size-cell {
  min-width: 0;
}

.pdp-sheet--sizes .pdp-sheet__size-btn {
  padding: 0.65rem 0.35rem;
  font-size: 0.9375rem;
}

/* Taglia esaurita: non button — nessun evento; stile grigio + diagonale */
.pdp-sheet__size-fake {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: #ececec;
  color: #9a9a9a;
  user-select: none;
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

.pdp-sheet__size-fake--oos {
  text-decoration: line-through;
  text-decoration-color: #b5b5b5;
}

.pdp-sheet__size-fake--in-cart {
  border-color: #dce8be;
  background: #f2f8df;
  color: #6c7f20;
  text-decoration: none;
  overflow: visible;
}

.pdp-sheet__size-fake--oos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    transparent 0%,
    transparent calc(50% - 1px),
    rgba(160, 160, 160, 0.55) 50%,
    transparent calc(50% + 1px),
    transparent 100%
  );
  pointer-events: none;
}

.pdp-sheet__size-fake--in-cart::after {
  background: linear-gradient(
    to top right,
    transparent 0%,
    transparent calc(50% - 1px),
    rgba(122, 146, 40, 0.6) 50%,
    transparent calc(50% + 1px),
    transparent 100%
  );
}

.pdp-sheet__size-fake--in-cart::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0px;
  width: 28px;
  height: 28px;
  background: url("../img/icon/shopping-bag-green-fill.png") center / contain no-repeat;
  z-index: 2;
  pointer-events: none;
}

/* Desktop (992px+): select nativo nascosto; popover taglie come griglia sheet */
@media (max-width: 991.98px) {
  .pdp-size-desktop {
    display: none !important;
  }
}

@media (min-width: 992px) {
  /* Allinea larghezza combo taglia al blocco CTA (btn-block) nella buybox */
  .pdp-sizes__controls {
    width: 100%;
    box-sizing: border-box;
  }

  .pdp-size-select.pdp-size-select--desktop-sr {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  .pdp-size-desktop {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .pdp-size-trigger--desktop {
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    min-height: 52px;
    padding: 0.45rem 1.5rem 0.45rem 0.5rem;
    border-radius: 8px;
    border: 1px solid #d6d8db;
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .pdp-size-trigger--desktop:focus-visible {
    outline: 2px solid var(--pdp-accent);
    outline-offset: 2px;
  }

  .pdp-size-trigger--desktop .pdp-size-trigger__chip {
    flex: 0 0 auto;
    align-self: center;
    box-sizing: border-box;
    width: 46px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pdp-accent);
    border-radius: 6px;
    background: #fff;
    color: var(--pdp-text);
    font-weight: 800;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  }

  .pdp-size-trigger--desktop.is-selected .pdp-size-trigger__chip {
    background: var(--pdp-accent);
    color: #fff;
    border-color: var(--pdp-accent);
  }

  .pdp-size-trigger--desktop .pdp-size-trigger__chip-value {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    padding: 0 0.12rem;
    min-height: 0;
  }

  .pdp-size-trigger--desktop .pdp-size-trigger__label {
    flex: 1 1 auto;
    align-self: center;
    display: flex;
    align-items: center;
    min-height: 0;
    min-width: 0;
    white-space: nowrap;
    line-height: 1.2;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .pdp-size-trigger--desktop .pdp-size-trigger__arrow {
    flex: 0 0 auto;
    align-self: center;
    font-size: 1.35rem;
    transform: rotate(90deg) translateX(2px);
    transition: transform 0.2s ease;
  }

  .pdp-size-trigger--desktop[aria-expanded="true"] .pdp-size-trigger__arrow {
    transform: rotate(-90deg) translateX(-2px);
  }

  .pdp-size-desktop__popover {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    max-height: min(60vh, 380px);
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0.75rem 0.85rem 0.95rem;
    border: 1px solid #e4e6e9;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14);
    z-index: 40;
    box-sizing: border-box;
    overscroll-behavior: contain;
  }

  .pdp-size-desktop__popover[hidden] {
    display: none !important;
  }

  .pdp-size-desktop__hint {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    color: var(--pdp-muted);
    line-height: 1.35;
  }

  /* Stessa griglia 3 colonne dello sheet mobile */
  .pdp-size-desktop__sizes.pdp-sheet__sizes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem 0.45rem;
    align-content: start;
  }

  .pdp-size-desktop__sizes .pdp-sheet__size-cell {
    min-width: 0;
  }

  .pdp-size-desktop__sizes .pdp-sheet__size-btn {
    padding: 0.65rem 0.35rem;
    font-size: 0.9375rem;
  }
}

/* Mobile: sheet taglie a tutto schermo (niente bottom-sheet parziale) */
@media (max-width: 767.98px) {
  .pdp-sheet--sizes .pdp-sheet__panel {
    top: 0;
    bottom: 0;
    max-height: none;
    height: 100%;
    min-height: 100dvh;
    min-height: 100svh;
    border-radius: 0;
    box-shadow: none;
  }

  .pdp-sheet--sizes .pdp-sheet__head {
    padding-top: calc(0.75rem + env(safe-area-inset-top, 0));
  }
}

/* ------------------------------------------------------------------------- */
/* Modal taglie / admin                                                       */
/* ------------------------------------------------------------------------- */
.pdp-modal-taglie .modal-dialog {
  margin: 2vh auto !important;
  max-width: min(1140px, 96vw);
}

.pdp-modal-taglie__body {
  padding: 0.5rem;
}

.pdp-guida {
  width: 100%;
  height: auto;
  display: block;
}

.pdp-admin-tools {
  text-align: center;
  margin: 2rem 0;
}

/* =========================================================================
 * MOBILE REDESIGN (max-width: 991.98px)
 * Tutti gli elementi aggiunti qui impattano SOLO la versione mobile/tablet.
 * Desktop (>= 992px) resta invariato.
 * ========================================================================= */

/* Trust line (sotto meta) */
.pdp-trustline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.7rem 0 0.2rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  border: 1px solid #e7eadc;
  background: #f7f8f4;
  color: var(--pdp-text);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

.pdp-trustline--soft {
  background: #f4f5f6;
  border-color: #e4e6e8;
  color: #3e4348;
}

.pdp-trustline__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pdp-trustline__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pdp-trustline__text {
  flex: 1 1 auto;
  min-width: 0;
}

.pdp-size-trigger,
.pdp-size-guide-link--mobile {
  display: none;
}

.pdp-mobile-content,
.pdp-mobile-trustbox,
.pdp-mobile-services {
  display: none;
}

@media (max-width: 991.98px) {
  /* --------------------------------------------------------------------- */
  /* Breadcrumb mobile: solo l'elemento categoria + sport con freccia sx    */
  /* (3° item: Home [1] / Sport [2] / Categoria Sport [3] / ...)            */
  /* --------------------------------------------------------------------- */
  .pdp-breadcrumb {
    padding: 0;
  }

  .pdp-breadcrumb__list > .pdp-breadcrumb__item {
    display: none;
  }

  .pdp-breadcrumb__list > .pdp-breadcrumb__item:nth-child(3) {
    display: inline-flex;
    align-items: center;
  }

  /* Rimuoviamo il separatore "/" del 3° item se per qualche motivo è
     anche not-last-child (struttura HTML invariata). */
  .pdp-breadcrumb__list > .pdp-breadcrumb__item:nth-child(3):not(:last-child)::after {
    display: none;
  }

  .pdp-breadcrumb__list > .pdp-breadcrumb__item:nth-child(3)::before {
    content: "\2190";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.45rem;
    font-size: 1rem;
    line-height: 1;
    color: var(--pdp-text);
    font-weight: 400;
  }

  .pdp-breadcrumb__list > .pdp-breadcrumb__item:nth-child(3) a {
    font-weight: 600;
    color: var(--pdp-text);
  }

  /* --------------------------------------------------------------------- */
  /* Ordine buybox mobile (senza modificare HTML)                          */
  /* .pdp-buybox -> display: contents: i suoi figli diventano flex items   */
  /* di .pdp-grid (che su mobile è flex column).                           */
  /* --------------------------------------------------------------------- */
  .pdp-grid {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }

  .pdp-buybox {
    display: contents;
  }

  /* Ordine: H1 -> gallery -> meta -> trustline -> varianti -> prezzo ->
     taglia/guida -> 3 box servizi */
  .pdp-title         { order: 1; }
  .pdp-gallery       { order: 2; }
  .pdp-meta          { order: 3; }
  .pdp-trustline     { order: 4; }
  .pdp-variants      { order: 5; }
  .pdp-price-block   { order: 6; }
  .pdp-sizes         { order: 7; }
  .pdp-service-strip { order: 8; }
  .pdp-actions--desktop { order: 9; }

  .pdp-variants {
    margin-top: 1rem;
  }

  .pdp-variants__label {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .pdp-variants__list {
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.2rem;
  }

  .pdp-variants__list::-webkit-scrollbar {
    display: none;
  }

  .pdp-variants__list > li {
    flex: 0 0 auto;
  }

  .pdp-variants__link {
    width: 120px;
    height: 120px;
    border-radius: 10px;
  }

  /* Dare una piccola riserva in alto per evitare che H1 "stacchi" troppo
     dalla breadcrumb */
  .pdp-title {
    font-size: 1.62rem;
    margin-top: 0.15rem;
    margin-bottom: 1rem;
  }

  /* --------------------------------------------------------------------- */
  /* Trust line sotto meta brand                                           */
  /* --------------------------------------------------------------------- */
  .pdp-trustline {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    margin: 0.65rem 0 0;
    border-radius: 10px;
    background: #f6f7f3;
    border: 1px solid #e2e5d6;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pdp-text);
    line-height: 1.3;
  }

  .pdp-trustline--soft {
    background: #f4f4f5;
    border-color: #e4e4e7;
    color: #3f4247;
  }

  .pdp-trustline__icon {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
  }

  .pdp-trustline--soft .pdp-trustline__icon {
    filter: grayscale(0.4);
  }

  .pdp-trustline__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .pdp-trustline__text {
    flex: 1 1 auto;
    min-width: 0;
    text-transform: none;
  }

  /* --------------------------------------------------------------------- */
  /* Buybox mobile: ordine e spaziature                                    */
  /* --------------------------------------------------------------------- */
  .pdp-price-block {
    border-top: 0;
    padding: 1.15rem 0 1rem;
    margin: 0.75rem 0 0.25rem;
    text-align: center;
  }

  /* Prezzo + sconto: replicare mockup — sconto come pill rosa accanto al prezzo */
  .pdp-price {
    gap: 0.35rem 0.75rem;
    align-items: center;
    justify-content: center;
  }

  .pdp-price__current {
    font-size: 1.75rem;
    line-height: 1.05;
    font-weight: 800;
    color: #111;
  }

  .pdp-price__disc {
    display: inline-flex;
    align-items: baseline;
    gap: 0.3rem;
    font-size: 0.92rem;
    font-weight: 800;
    color: #e02947;
    background: #fde7eb;
    border: 1px solid #fbd1da;
    padding: 0.25rem 0.62rem;
    border-radius: 7px;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 0;
    text-transform: none;
  }

  .pdp-price__disc-online {
    font-size: 0.74rem;
    font-weight: 700;
    color: #e02947;
    white-space: nowrap;
  }

  .pdp-price__was {
    margin: 0.15rem 0 0;
    font-size: 0.9rem;
    color: #8a8f95;
    text-align: center;
  }

  .pdp-price__was del {
    color: #8a8f95;
    text-decoration-thickness: 1px;
  }

  /* Nascondi actions desktop (CTA, assurance, wishlist sopra) su mobile */
  .pdp-actions--desktop {
    display: none;
  }

  /* --------------------------------------------------------------------- */
  /* Service strip (3 box icone) — ora visibile mobile tra prezzo e taglia */
  /* --------------------------------------------------------------------- */
  .pdp-service-strip {
    margin: 0.15rem 0 1.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .pdp-service-strip__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.75rem 0.5rem;
    border: 1px solid #e3e5e9;
    border-radius: 10px;
    background: #fff;
  }

  .pdp-service-strip__item + .pdp-service-strip__item {
    border-left: 1px solid #e3e5e9;
  }

  .pdp-service-strip__icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    color: #5c6670;
  }

  .pdp-service-strip__icon img,
  .pdp-service-strip__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .pdp-service-strip__text {
    font-size: 0.74rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #3f4247;
  }

  /* --------------------------------------------------------------------- */
  /* Sizes container mobile: reorder interno per mettere low-stock sopra   */
  /* il trigger, guida taglie sotto, alert in coda.                        */
  /* --------------------------------------------------------------------- */
  .pdp-sizes {
    display: flex;
    flex-direction: column;
    margin-top: 0.25rem;
    margin-bottom: 1.25rem;
  }

  .pdp-sizes > .pdp-sizes__head      { order: 0; }
  .pdp-sizes > .pdp-sizes__controls  { order: 0; }
  .pdp-sizes > .pdp-low-stock-note   { order: 1; }
  .pdp-sizes > .pdp-size-trigger     { order: 2; }
  .pdp-sizes > .pdp-size-guide-link--mobile { order: 3; }
  .pdp-sizes > .pdp-alert            { order: 4; }

  .pdp-buybox .pdp-alert {
    margin-top: 0.75rem;
  }

  /* Low stock note — sopra il pulsante, testo verde come mockup */
  .pdp-low-stock-note {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: inherit;
    font-weight: 700;
    justify-content: center;
    width: 100%;
  }

  .pdp-stock-row {
    font-size: 0.85rem;
  }

  /* --------------------------------------------------------------------- */
  /* Size trigger mobile (pulsante personalizzato apertura sheet)          */
  /* --------------------------------------------------------------------- */
  .pdp-size-trigger {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.55rem 0.65rem;
    border: 1px solid #d6d8db;
    border-radius: 10px;
    background: #fff;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
    min-height: 64px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }

  .pdp-soldout-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 64px;
    padding: 0.8rem 1rem;
    border: 1px solid #f1e4aa;
    border-radius: 10px;
    background: #fff9df;
    color: #6f5a00;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    box-sizing: border-box;
  }

  .pdp-size-trigger:focus-visible {
    outline: 2px solid var(--pdp-accent);
    outline-offset: 2px;
  }

  .pdp-size-trigger--uni {
    cursor: default;
  }

  .pdp-size-trigger__chip {
    flex: 0 0 auto;
    width: 52px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--pdp-accent);
    border-radius: 8px;
    background: #fff;
    color: var(--pdp-text);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: background 0.15s ease, color 0.15s ease;
  }

  .pdp-size-trigger.is-selected .pdp-size-trigger__chip,
  .pdp-size-trigger__chip--solid {
    background: var(--pdp-accent);
    color: #fff;
    border-color: var(--pdp-accent);
  }

  .pdp-size-trigger__chip-value {
    display: inline-block;
    padding: 0 0.15rem;
    line-height: 1;
    text-align: center;
  }

  .pdp-size-trigger__label {
    flex: 1 1 auto;
    min-width: 0;
    font-weight: 800;
    font-size: 1.02rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--pdp-text);
  }

  .pdp-size-trigger__arrow {
    flex: 0 0 auto;
    font-size: 1.8rem;
    color: #8a8f95;
    line-height: 1;
    transform: translateY(-1px);
  }

  /* Guida taglie link sotto il trigger */
  .pdp-size-guide-link--mobile {
    display: inline-block;
    margin-top: 0.65rem;
    font-size: 0.85rem;
    text-decoration: underline;
    color: var(--pdp-muted);
  }

  /* La vecchia head (label + link guida inline) non serve in mobile */
  .pdp-sizes__head {
    display: none;
  }

  /* Nascondi il p "Taglia unica" doppio (resta solo il trigger UNI) */
  .pdp-sizes > .pdp-size-unique {
    display: none;
  }

  /* --------------------------------------------------------------------- */
  /* Divider tra sezione taglia e contenuto                                */
  /* --------------------------------------------------------------------- */
  .pdp-wishlist--mobile-below-services {
    margin-top: 0.35rem;
    margin-bottom: 0.25rem;
  }

  .pdp-mobile-divider {
    border: 0;
    border-top: 1px solid #eceef1;
    margin: 1.5rem 0;
  }

  /* --------------------------------------------------------------------- */
  /* Nascondi la parte "desktop" del contenuto advanced/basic              */
  /* --------------------------------------------------------------------- */
  .pdp-content {
    display: none;
  }

  /* --------------------------------------------------------------------- */
  /* Content mobile                                                        */
  /* --------------------------------------------------------------------- */
  .pdp-mobile-content {
    display: block;
    padding: 0 0 1.5rem;
  }

  .pdp-mobile-content-title {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--pdp-text);
  }

  .pdp-cross-sell--mobile {
    margin: 4rem 0 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.8rem 0.85rem;
    background: #f6faea;
    border-color: #d8e9b6;
    border-radius: 12px;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4f6f00;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4f9f52;
    flex: 0 0 auto;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__body {
    gap: 0.42rem;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__content {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__media--inline {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border: 1px solid #dbe8b0;
    border-radius: 8px;
    background: #fff;
    margin-top: 0.15rem;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__title {
    font-size: 1.55rem;
    line-height: 1.2;
    color: #111315;
    font-weight: 800;
    display: block;
    margin: 0.05rem 0 0.05rem;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__text {
    font-size: 0.98rem;
    color: #2c3137;
    line-height: 1.45;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__text strong {
    color: #4f6f00;
    text-decoration-color: #4f6f00;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__arrow {
    color: #4f6f00;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__footer {
    margin-top: 0.35rem;
    background: #eef7df;
    border-radius: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    overflow: hidden;
    margin-left: -0.85rem;
    margin-right: -0.85rem;
    border-radius: 0 0 12px 12px;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__footer-label {
    padding: 0 0.85rem;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 800;
    color: #4f6f00;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pdp-cross-sell--mobile .pdp-cross-sell__footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    justify-content: center;
    border-left: 1px solid #d6e8b0;
    padding: 0 0.85rem;
    min-height: 56px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #4f6f00;
    white-space: nowrap;
  }

  .pdp-mobile-section {
    margin: 4rem 0;
  }

  .pdp-mobile-section + .pdp-mobile-section {
    margin-top: 4rem;
  }

  .pdp-mobile-heading {
    font-size: 1.18rem;
    font-weight: 700;
    margin: 0 0 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--pdp-accent);
    display: inline-block;
    line-height: 1.2;
  }

  .pdp-mobile-heading--plain {
    border-bottom: 0;
    padding-bottom: 0;
  }

  /* Intro collapsible con "mostra di più" */
  .pdp-mobile-intro {
    margin: 0 0 4rem;
    text-align: left;
  }

  .pdp-mobile-intro__text {
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--pdp-text);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }

  .pdp-intro-followup {
    margin-top: 0.4rem;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .pdp-tech-review {
    margin: 3rem 0 4rem;
    padding: 0.9rem 0.85rem;
    background: #f3f5f7;
    border-color: #d7dde3;
  }

  .pdp-tech-review__title {
    font-size: 1.08rem;
    margin-top: 0.75rem;
  }

  .pdp-tech-review__kicker {
    font-size: 0.7rem;
  }

  .pdp-tech-review__visual {
    margin-top: 0.65rem;
    border-radius: 10px;
  }

  .pdp-tech-review__meta-list {
    margin-top: 0.95rem;
    gap: 0.8rem;
  }

  .pdp-tech-review__meta-item {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 0.6rem;
  }

  .pdp-tech-review__meta-icon {
    width: 21px;
    height: 21px;
  }

  .pdp-tech-review__meta-name {
    font-size: 0.9rem;
  }

  .pdp-tech-review__meta-role {
    font-size: 0.9rem;
  }

  .pdp-tech-review__meta-line {
    font-size: 0.9rem;
  }

  .pdp-tech-review__content {
    margin-top: 1.15rem;
  }

  .pdp-tech-review__content p {
    font-size: 0.95rem;
    line-height: 1.52;
  }

  .pdp-tech-review__content[data-pdp-review-text] {
    position: relative;
    max-height: 8.8rem;
    overflow: hidden;
  }

  .pdp-tech-review--mobile.is-expanded .pdp-tech-review__content[data-pdp-review-text] {
    max-height: none;
    overflow: visible;
  }

  .pdp-tech-review__content[data-pdp-review-text]::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.2rem;
    background: linear-gradient(to bottom, rgba(248, 251, 237, 0), #f8fbed 75%);
    pointer-events: none;
  }

  .pdp-tech-review--mobile.is-expanded .pdp-tech-review__content[data-pdp-review-text]::after {
    display: none;
  }

  .pdp-tech-review__toggle {
    display: block;
    margin: 0.55rem auto 0;
    padding: 0.15rem 0.6rem;
    background: transparent;
    border: 0;
    color: var(--pdp-accent-dark);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
  }

  .pdp-mobile-intro--with-followup {
    margin-bottom: 0.6rem;
  }

  .pdp-mobile-intro--full .pdp-mobile-intro__text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }

  .pdp-mobile-intro--full .pdp-mobile-intro__toggle {
    display: none !important;
  }

  .pdp-mobile-intro.is-expanded .pdp-mobile-intro__text {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
  }

  .pdp-mobile-intro__toggle {
    display: block;
    margin: 0.65rem auto 0;
    padding: 0.15rem 0.6rem;
    background: transparent;
    border: 0;
    color: var(--pdp-accent-dark);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
  }

  /* Liste bullet mobile */
  .pdp-mobile-list {
    margin: 0;
    padding: 0 0 0 1.15rem;
    list-style: disc;
    line-height: 1.55;
    font-size: 0.95rem;
    color: var(--pdp-text);
  }

  .pdp-mobile-list li {
    margin-bottom: 0.6rem;
  }

  /* Punti di forza mobile — layout arioso con icona custom */
  .pdp-mobile-strengths {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .pdp-mobile-strengths__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .pdp-mobile-strengths__icon {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }

  .pdp-mobile-strengths__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .pdp-mobile-strengths__body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .pdp-mobile-strengths__feature {
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--pdp-text);
  }

  .pdp-mobile-strengths__benefit {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--pdp-muted);
  }

  /* Collapsible blocks (specifiche, utilizzo, FAQ) */
  .pdp-mobile-content > .pdp-mobile-collapsible {
    margin-top: 4rem;
  }

  .pdp-mobile-content > .pdp-mobile-collapsible + .pdp-mobile-collapsible {
    margin-top: 0;
  }

  .pdp-mobile-collapsible {
    border-top: 1px solid #e6e8eb;
    padding: 0;
    margin: 0;
  }

  .pdp-mobile-collapsible:last-of-type {
    border-bottom: 1px solid #e6e8eb;
  }

  .pdp-mobile-section--faq {
    margin-top: 4rem;
  }

  .pdp-mobile-section--faq .pdp-mobile-collapsible:first-of-type {
    border-top: 1px solid #e6e8eb;
  }

  .pdp-mobile-collapsible__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 0.25rem 1rem 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: var(--pdp-text);
    position: relative;
  }

  .pdp-mobile-collapsible__summary::-webkit-details-marker {
    display: none;
  }

  .pdp-mobile-collapsible__summary::after {
    content: "";
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-right: 2px solid #5c6670;
    border-bottom: 2px solid #5c6670;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.18s ease;
  }

  .pdp-mobile-collapsible[open] > .pdp-mobile-collapsible__summary::after {
    transform: rotate(-135deg) translate(-2px, -2px);
  }

  .pdp-mobile-collapsible__body {
    padding: 0 0 1rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--pdp-muted);
  }

  .pdp-mobile-collapsible__body p {
    margin: 0 0 0.65rem;
  }

  .pdp-mobile-collapsible__body p:last-child {
    margin-bottom: 0;
  }

  .pdp-mobile-collapsible__body--prose {
    color: var(--pdp-text);
  }

  .pdp-mobile-faq .pdp-mobile-collapsible__summary {
    font-weight: 600;
    font-size: 0.98rem;
  }

  /* --------------------------------------------------------------------- */
  /* Trustbox (box fiducia) — placeholder per ora                          */
  /* --------------------------------------------------------------------- */
  .pdp-mobile-trustbox {
    display: block;
    margin: 1.75rem 0 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    background: #f6f8ef;
    border: 1px solid #e1e6cc;
  }

  .pdp-mobile-trustbox__row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }

  .pdp-mobile-trustbox__icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #d7deb9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-sizing: border-box;
  }

  .pdp-mobile-trustbox__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .pdp-mobile-trustbox__body {
    flex: 1 1 auto;
    min-width: 0;
  }

  .pdp-mobile-trustbox__score {
    margin: 0 0 0.1rem;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--pdp-text);
  }

  .pdp-mobile-trustbox__score-sep {
    margin: 0 0.1rem;
    color: #8a9094;
    font-weight: 700;
  }

  .pdp-mobile-trustbox__desc {
    margin: 0 0 0.3rem;
    font-size: 0.88rem;
    color: var(--pdp-muted);
    line-height: 1.4;
  }

  .pdp-mobile-trustbox__stars {
    color: #f2b705;
    font-size: 1.02rem;
    letter-spacing: 1px;
    line-height: 1;
  }

  .pdp-mobile-trustbox__divider {
    border-top: 1px solid #e1e6cc;
    margin: 0.9rem 0 0.85rem;
  }

  .pdp-mobile-trustbox__secure {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pdp-text);
  }

  .pdp-mobile-trustbox__secure-icon {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .pdp-mobile-trustbox__secure-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  /* --------------------------------------------------------------------- */
  /* Servizi box scuro (3 accordion: spedizione/reso/pagamento)            */
  /* --------------------------------------------------------------------- */
  .pdp-mobile-services {
    display: block;
    margin: 1rem 0 1.75rem;
    padding: 0.75rem 1rem;
    background: #eef0f2;
    color: #111315;
    border-radius: 14px;
  }

  .pdp-mobile-services__item {
    padding: 0.25rem 0;
  }

  .pdp-mobile-services__item + .pdp-mobile-services__item {
    border-top: 1px solid #d8dce0;
  }

  .pdp-mobile-services__summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0;
    cursor: pointer;
    color: inherit;
  }

  .pdp-mobile-services__summary::-webkit-details-marker {
    display: none;
  }

  .pdp-mobile-services__icon {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .pdp-mobile-services__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: none;
  }

  .pdp-mobile-services__label {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
  }

  .pdp-mobile-services__title {
    font-size: 0.98rem;
    font-weight: 700;
  }

  .pdp-mobile-services__note {
    font-size: 0.82rem;
    color: #555d65;
    margin-top: 2px;
  }

  .pdp-mobile-services__chev {
    flex: 0 0 auto;
    font-size: 1.5rem;
    color: #4f575f;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .pdp-mobile-services__item[open] .pdp-mobile-services__chev {
    transform: rotate(90deg);
  }

  .pdp-mobile-services__body {
    padding: 0 0 0.85rem 3.15rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #1f2328;
  }

  .pdp-mobile-services__body p {
    margin: 0 0 0.5rem;
  }

  .pdp-mobile-services__body p:last-child {
    margin-bottom: 0;
  }

  .pdp-mobile-services__body a {
    color: #4f6f00;
    text-decoration: underline;
    font-weight: 700;
  }

  /* --------------------------------------------------------------------- */
  /* Related products: scroll orizzontale con snap (1 + parziale)          */
  /* --------------------------------------------------------------------- */
  .pdp-related {
    margin-top: 2rem;
    /* Contenere lo scroll orizzontale entro la larghezza del container    */
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 1rem;
  }

  .pdp-related__title {
    padding: 0;
    font-size: 1.15rem;
    margin: 2rem 0 1rem;
  }

  .pdp-related__grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 0.5rem;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    scrollbar-width: none;
  }

  .pdp-related__grid::-webkit-scrollbar {
    display: none;
  }

  .pdp-related .pdp-card {
    flex: 0 0 calc(78% - 0.375rem);
    min-width: 0;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .pdp-related .pdp-card:first-child {
    margin-left: 0;
  }

  /* Assicura che padding/margin dei container non inducano overflow */
  .pdp-container {
    overflow-x: hidden;
  }
}

/* =========================================================================
 * Mobile smartphone (<= 767.98px) — tuning fine
 * ========================================================================= */
@media (max-width: 767.98px) {
  .pdp-sticky {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom, 0));
    background: #f6f8fb;
    border-top: 1px solid #e6eaef;
    box-shadow: 0 -6px 18px rgba(20, 24, 28, 0.09);
    box-sizing: border-box;
    overflow: hidden;
  }

  .pdp-sticky__inner {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .pdp-sticky--soldout .pdp-sticky__inner {
    display: block;
  }

  .pdp-sticky__soldout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 0.55rem 0.75rem;
    border: 1px solid #f1e4aa;
    border-radius: 8px;
    background: #fff9df;
    color: #6f5a00;
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    box-sizing: border-box;
  }

  .pdp-sticky__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    flex: 0 0 94px;
    min-width: 0;
    padding: 0.35rem 0;
    line-height: 1.1;
  }

  .pdp-sticky__price-current {
    display: block;
    font-size: 1.08rem;
    font-weight: 800;
    color: #111315;
    white-space: nowrap;
  }

  .pdp-sticky__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0.16rem 0.38rem;
    border-radius: 5px;
    background: #fde7eb;
    color: #e02947;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
  }

  .pdp-sticky__size-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    min-width: 48px;
    max-width: 54px;
    padding: 0.25rem 0.28rem;
    border: 1px solid #d6d8db;
    border-radius: 7px;
    background: #fff;
    color: #222;
    line-height: 1.1;
    box-sizing: border-box;
  }

  .pdp-sticky__size-chip[hidden] {
    display: none !important;
  }

  .pdp-sticky__size-chip-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #75797e;
    text-transform: uppercase;
  }

  .pdp-sticky__size-chip-value {
    font-size: 0.96rem;
    font-weight: 800;
    color: #111315;
  }

  .pdp-sticky__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    flex: 1 1 0;
    min-width: 0;
    min-height: 56px;
    border-radius: 8px;
    padding: 0.35rem 0.5rem;
    letter-spacing: 0;
    line-height: 1.1;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
  }

  .pdp-sticky__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0.1rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #3f454b;
    line-height: 1.2;
  }

  .pdp-sticky__secure img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
  }

  .pdp-sticky__btn-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1rem;
    line-height: 1.1;
    width: auto;
    min-width: 0;
  }

  .pdp-sticky[data-pdp-has-size="1"] .pdp-sticky__btn-stack {
    align-items: flex-start;
    text-align: left;
  }

  .pdp-sticky__btn-title {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }

  .pdp-sticky__btn-subtitle {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.95;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
}

/* =========================================================================
 * Size sheet: evidenza taglia selezionata
 * ========================================================================= */
.pdp-sheet__size-btn.is-selected {
  border-color: var(--pdp-accent);
  background: var(--pdp-accent);
  color: #fff;
  box-shadow: 0 0 0 2px rgba(190, 208, 49, 0.25);
}
