
    /* ── PRODUCT PAGE LAYOUT ── */
    .ppage {
      max-width: 1260px;
      margin: 0 auto;
      padding: 0 var(--s4) var(--s7);
    }

    /* ── 2-COL PRODUCT GRID ── */
    .product-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--s6);
      align-items: start;
      padding-top: var(--s5);
    }

    /* ── GALLERY ── */
    .gallery-wrap {
      position: sticky;
      top: calc(var(--nav-h, 68px) + 24px);
    }

    .gallery-main {
      aspect-ratio: 4 / 3;
      background: transparent;
      border-radius: 6px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-main img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity 0.2s ease;
    }

    .gallery-thumbs {
      display: flex;
      gap: 8px;
      margin-top: 10px;
    }

    .gallery-thumb {
      width: 72px;
      height: 54px;
      object-fit: cover;
      border-radius: 4px;
      border: 2px solid transparent;
      cursor: pointer;
      opacity: 0.55;
      transition: opacity 0.15s, border-color 0.15s;
      background: transparent;
      object-fit: contain;
    }

    .gallery-thumb:hover { opacity: 0.9; }
    .gallery-thumb.active { border-color: var(--accent); opacity: 1; }

    /* ── PRODUCT INFO ── */
    .product-info {
      padding-top: 4px;
    }

    .prod-brand {
      font-size: 0.72rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: var(--s1);
    }

    .prod-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: var(--s2);
    }

    .prod-short-desc {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--text-muted);
      margin-bottom: var(--s3);
      border-left: 2px solid var(--accent);
      padding-left: var(--s2);
    }

    /* ── COLOR PICKER ── */
    .color-picker {
      margin-bottom: var(--s3);
    }

    .color-picker__label {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-bottom: 10px;
    }

    .color-picker__label strong {
      color: var(--text);
    }

    .color-swatches {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .color-swatch-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.12);
      cursor: pointer;
      transition: border-color 0.15s, transform 0.15s;
      outline: none;
      position: relative;
    }

    .color-swatch-btn:hover {
      transform: scale(1.1);
      border-color: rgba(255,255,255,0.35);
    }

    .color-swatch-btn.active {
      border-color: var(--accent);
      outline: 2px solid var(--accent);
      outline-offset: 3px;
    }

    .color-swatch-btn::after {
      content: attr(data-name);
      position: absolute;
      bottom: calc(100% + 6px);
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      font-size: 0.68rem;
      background: rgba(0,0,0,0.85);
      color: #fff;
      padding: 3px 7px;
      border-radius: 3px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.15s;
    }

    .color-swatch-btn:hover::after { opacity: 1; }

    /* additional colors (chip only) */
    .color-extra-chips {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .color-chip-sm {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.72rem;
      color: var(--text-muted);
      border: 1px solid var(--border);
      padding: 3px 9px 3px 5px;
      border-radius: 20px;
    }

    .color-chip-sm__dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* ── PRICE BLOCK ── */
    .price-block {
      margin: var(--s3) 0;
      padding: var(--s3);
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 6px;
    }

    .price-block__note {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .price-block__val {
      font-size: 2.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 4px;
    }

    .price-block__sub {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* ── CTAs ── */
    .product-ctas {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: var(--s3);
    }

    .product-ctas .btn {
      flex: 1;
      min-width: 160px;
      justify-content: center;
    }

    /* ── TRUST PILLS ── */
    .trust-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: var(--s3);
    }

    .trust-pill {
      font-size: 0.72rem;
      color: var(--text-muted);
      border: 1px solid var(--border);
      padding: 4px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .trust-pill::before {
      content: '✓ ';
      color: var(--accent);
    }

    /* ── QUICK SPECS ── */
    .quick-specs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: var(--s3);
    }

    .qs-item {
      background: var(--bg);
      padding: 12px 16px;
    }

    .qs-key {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--text-muted);
      margin-bottom: 2px;
    }

    .qs-val {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
    }

    .qs-val.accent { color: var(--accent); }

    /* ── DESCRIPTION TOGGLE ── */
    .desc-toggle {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .desc-toggle summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      cursor: pointer;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--text);
      list-style: none;
      user-select: none;
    }

    .desc-toggle summary::-webkit-details-marker { display: none; }

    .desc-toggle summary .toggle-icon {
      width: 22px;
      height: 22px;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      color: var(--accent);
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .desc-toggle[open] summary .toggle-icon { transform: rotate(45deg); }

    .desc-content {
      padding: 0 0 var(--s3);
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--text-muted);
    }

    .desc-content p + p { margin-top: 12px; }

    /* ── VIDEO SECTION ── */
    .video-section {
      max-width: 1000px;
      margin: var(--s7) auto;
      padding: 0 var(--s4);
    }

    .video-section__label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-bottom: var(--s2);
    }

    .video-section__title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: var(--s3);
    }

    .video-wrap {
      position: relative;
      aspect-ratio: 16 / 9;
      border-radius: 6px;
      overflow: hidden;
      background: #111;
    }

    .video-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ── SPECS SECTION ── */
    .specs-section {
      max-width: 1000px;
      margin: var(--s7) auto;
      padding: 0 var(--s4);
    }

    .specs-section__label {
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-bottom: var(--s2);
    }

    .specs-section__title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: var(--s4);
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
    }

    .specs-table tr {
      border-bottom: 1px solid var(--border);
      transition: background 0.15s;
    }

    .specs-table tr:hover { background: rgba(255,255,255,0.02); }

    .specs-table td {
      padding: 13px 16px;
      font-size: 0.88rem;
    }

    .specs-table td:first-child {
      color: var(--text-muted);
      width: 55%;
    }

    .specs-table td:last-child {
      color: var(--text);
      font-weight: 500;
    }

    .specs-table td.accent-td {
      color: var(--accent);
    }

    /* ── MODES SECTION ── */
    .modes-section {
      max-width: 1000px;
      margin: var(--s7) auto;
      padding: 0 var(--s4);
    }

    .modes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--s3);
      margin-top: var(--s4);
    }

    .mode-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: var(--s3) var(--s3);
      transition: border-color 0.2s;
    }

    .mode-card:hover { border-color: rgba(75,168,204,0.3); }

    .mode-num {
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      margin-bottom: var(--s1);
    }

    .mode-name {
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .mode-desc {
      font-size: 0.83rem;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* ── CROSSELL ── */
    .crossell-section {
      max-width: 1000px;
      margin: var(--s7) auto;
      padding: 0 var(--s4);
    }

    .crossell-card {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: var(--s4);
      align-items: center;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }

    .crossell-card__img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: contain;
      background: transparent;
    }

    .crossell-card__body {
      padding: var(--s4) var(--s4) var(--s4) 0;
    }

    .crossell-badge {
      display: inline-block;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--accent);
      border: 1px solid var(--accent);
      padding: 3px 8px;
      border-radius: 3px;
      margin-bottom: var(--s2);
    }

    .crossell-name {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: var(--s2);
    }

    .crossell-desc {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--text-muted);
      margin-bottom: var(--s3);
    }

    /* ── ACCESSORI GRID ── */
    .acc-section {
      max-width: 1100px;
      margin: var(--s7) auto;
      padding: 0 var(--s4);
    }
    .acc-section__header { margin-bottom: var(--s5); }
    .acc-section__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: var(--s1); }
    .acc-section__title { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; letter-spacing: -.03em; }

    .acc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--s3);
    }
    .acc-card {
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: border-color .2s, transform .2s;
    }
    .acc-card:hover { border-color: var(--border-h); transform: translateY(-3px); }
    .acc-card__img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: contain;
      background: transparent;
      padding: var(--s2);
    }
    .acc-card__body { padding: var(--s2) var(--s3) var(--s3); flex: 1; display: flex; flex-direction: column; }
    .acc-card__badge { font-size: .65rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: 6px; }
    .acc-card__name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
    .acc-card__desc { font-size: .8rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
    .acc-card__price { margin-top: var(--s2); font-size: .85rem; font-weight: 600; color: var(--text); }
    .acc-card__cta { margin-top: var(--s2); font-size: .78rem; color: var(--accent); }

    /* ── COLOR PICKER NELLA GALLERY ── */
    .color-picker--gallery {
      margin-top: 14px;
      margin-bottom: 0;
      padding: 14px 0 4px;
      border-top: 1px solid var(--border);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .product-layout { grid-template-columns: 1fr; gap: var(--s4); }
      .gallery-wrap { position: static; }
      .modes-grid { grid-template-columns: 1fr; }
      .crossell-card { grid-template-columns: 1fr; }
      .crossell-card__body { padding: 0 var(--s3) var(--s3); }
      .acc-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
      .acc-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 540px) {
      .quick-specs-grid { grid-template-columns: repeat(2, 1fr); }
      .product-ctas { flex-direction: column; }
      .product-ctas .btn { min-width: unset; }
    }
    @media (max-width: 767px) {
      .product-layout { grid-template-columns: 1fr; gap: var(--s3); }
      .gallery-wrap { position: static; }
      .gallery-main { height: 280px; }
      .prod-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
      .prod-short-desc { font-size: 1rem; line-height: 1.7; }
      .quick-specs-grid { grid-template-columns: repeat(2, 1fr); }
      .quick-spec { padding: var(--s2); }
      .quick-spec__val { font-size: 1rem; }
      .product-ctas { flex-direction: column; }
      .product-ctas .btn { width: 100%; justify-content: center; min-height: 52px; }
      /* Accessori mobile: solo foto + nome + prezzo */
      .acc-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s2); }
      .acc-card__desc { display: none; }
      .acc-card__badge { display: none; }
      .acc-card__cta { display: none; }
      .acc-card__body { padding: 10px 12px 12px; }
      .acc-card__name { font-size: .88rem; margin-bottom: 4px; }
      .acc-card__price { margin-top: 4px; font-size: .82rem; }
      .modes-grid { grid-template-columns: 1fr; gap: var(--s2); }
      .crossell-card { grid-template-columns: 1fr; }
      .crossell-card__body { padding: 0 var(--s3) var(--s3); }
      .prod-brand { font-size: 0.68rem; }
    }
    @media (max-width: 400px) {
      .acc-grid { grid-template-columns: 1fr; }
      .gallery-main { height: 230px; }
    }
  
  /* ── DMP CREDIT ── */
  .footer__dmp { border-top: 1px solid var(--border); padding: 18px var(--pad-x); text-align: center; }
  .footer__dmp-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-muted); font-size: .75rem; transition: color .2s; }
  .footer__dmp-link:hover { color: var(--accent); }
  .footer__dmp-logo { font-size: 1.1rem; }
  .footer__dmp-text strong { color: var(--text-dim); }

  
  /* ── VARIANT SELECTOR (motorizzazioni) ── */
  .variant-group { margin-bottom: var(--s3); }
  .variant-group__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
  .variant-group__label strong { color: var(--text); font-weight: 600; }
  .variant-btns { display: flex; gap: 8px; flex-wrap: wrap; }
  .variant-btn { background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--text-muted); font-size: .82rem; font-weight: 500; padding: 8px 15px; border-radius: 20px; cursor: pointer; transition: border-color .15s, color .15s, background .15s; }
  .variant-btn:hover { border-color: rgba(75,168,204,.4); color: var(--text); }
  .variant-btn.active { background: rgba(75,168,204,.15); border-color: var(--accent); color: var(--accent); font-weight: 600; }

  /* ── EDITION (serie limitata) ── */
  .edition-strip {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-bottom: var(--s3); padding: 12px 16px;
    background: rgba(214,224,61,0.06); border: 1px solid rgba(214,224,61,0.25); border-radius: 6px;
  }
  .edition-strip__num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: #D6E03D; }
  .edition-strip__txt { font-size: 0.8rem; color: var(--text-dim); line-height: 1.4; }
  .edition-list { list-style: none; padding: 0; margin: var(--s3) 0 0; display: grid; gap: 10px; }
  .edition-list li { font-size: 0.88rem; color: var(--text-dim); line-height: 1.55; padding-left: 22px; position: relative; }
  .edition-list li::before { content: '—'; position: absolute; left: 0; color: #D6E03D; }

  /* ── FULL-BLEED ACTION IMAGE ── */
  .action-img { max-width: 1100px; margin: var(--s6) auto 0; padding: 0 var(--s4); }
  .action-img img { width: 100%; border-radius: 8px; display: block; }
  .action-img figcaption { font-size: 0.75rem; color: var(--text-muted); margin-top: 10px; }

  /* ── NOVITÀ 2027 BADGE ── */
  .new-badge {
    display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--bg); background: var(--accent);
    padding: 3px 8px; border-radius: 3px; vertical-align: middle; margin-left: 8px;
  }

  /* ── FIX MOBILE: doppio padding e bottoni nowrap dentro le card ── */
  @media (max-width: 767px) {
    .ppage .crossell-section,
    .ppage .specs-section,
    .ppage .acc-section,
    .ppage .modes-section,
    .ppage .video-section { padding-left: 0; padding-right: 0; }
    .crossell-card > * { min-width: 0; }
    .crossell-card .btn { white-space: normal; text-align: center; }
    .action-img { padding-left: 0; padding-right: 0; }

    /* Selettore varianti: 44x44 minimo per il touch (come la nav burger) */
    .variant-btn { min-height: 44px; padding: 10px 18px; }
    .variant-btns { gap: 10px; flex-wrap: wrap; }
  }
