:root {
    --dm-header-h: 64px;
    --burger-size: 50px;
    --dm-burger-scale: .96;
  }

  .page-product {
    --product-header-height: 104px;
  }

  html,
  body.page-product {
    overflow-x: hidden;
  }

  /* Utility visibilità */
  .only-mobile { display: none; }
  .only-desktop { display: block; }
  @media (max-width: 1024px) {
    .only-mobile { display: block !important; }
    .only-desktop { display: none !important; }
    .page-product {
      --product-header-height: var(--dm-header-h);
    }
  }

  .page-product main {
    padding-top: calc(var(--product-header-height) + 48px);
  }

  @media (max-width: 640px) {
    .page-product main {
      padding-top: calc(var(--product-header-height) + 28px);
    }

    /* Prezzo mobile: metà pagina a sinistra */
    .pfpdp-price--mobile {
      width: 100%;
      display: flex;
      justify-content: flex-start;
      padding-right: 0;
    }
    .pfpdp-price--mobile .pfpdp-price__val {
      display: inline-flex;
      max-width: 50%;
    }
  }

  .da-header {
    --red-base: #c00018;
    --red-mix-dark: #8b000e;
    --veil-vert: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
    --side-light-strong: rgba(255, 255, 255, .22);
    --side-light-soft: rgba(255, 255, 255, .10);
    --cta-top-bg1: rgba(212, 0, 26, .18);
    --cta-top-bg2: rgba(212, 0, 26, .11);
    --cta-top-bd: rgba(212, 0, 26, .48);
    --cta-top-fg: #fff;
    --cta-scroll-bg1: rgba(255, 255, 255, .90);
    --cta-scroll-bg2: rgba(255, 255, 255, .78);
    --cta-scroll-bd: rgba(255, 255, 255, .95);
    --cta-scroll-fg: #c00018;

    --nav-ul-r: 255;
    --nav-ul-g: 255;
    --nav-ul-b: 255;
    --text: #fff;
    --maxw: 1320px;
    --pad-x: clamp(14px, 4vw, 28px);
    --h: 104px;
    --nav-shadow: 0 1px 8px rgba(0, 0, 0, .35);
    --logo-h: 80px;
    --logo-scale: 1.8;
    --logo-shift: -10px;
    --logo-shift-mobile: -6px;

    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000600;
    background: transparent;
    border-bottom: none;
  }

  .da-base,
  .da-glass {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity .5s ease;
  }

  .da-base {
    background: linear-gradient(180deg, var(--red-base) 0%,
        color-mix(in srgb, var(--red-base) 80%, var(--red-mix-dark) 20%) 100%);
  }

  .da-glass {
    background: var(--veil-vert),
      linear-gradient(90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%),
      linear-gradient(-90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
  }

  /* >>> Variante SOLIDA (sempre rossa) <<< */
  .da-header--solid .da-base {
    opacity: 1;
  }

  .da-header--solid .da-glass {
    opacity: .9;
  }

  .da-header--solid {
    --nav-ul-g: 82;
    --nav-ul-b: 99;
  }

  .da-header--solid .da-header__cta {
    color: var(--cta-scroll-fg);
    background: linear-gradient(180deg, var(--cta-scroll-bg1), var(--cta-scroll-bg2));
    border: 1px solid var(--cta-scroll-bd);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
  }

  .da-header__inner {
    position: relative;
    z-index: 1;
    height: var(--h);
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad-x);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(12px, 3vw, 24px);
    transition: height .35s ease;
  }

  .da-header__logo .da-logo {
    display: block;
    height: var(--logo-h);
    width: auto;
    transform: translateX(var(--logo-shift)) scale(var(--logo-scale));
    transform-origin: left center;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .35));
    transition: transform .28s ease, opacity .28s ease;
  }

  /* Iniziale: ancora più a sinistra + leggermente più grande (come home) */
  .da-header:not(.is-scrolled) .da-header__logo .da-logo {
    transform: translateX(calc(var(--logo-shift) - 18px)) scale(calc(var(--logo-scale) * 1.10));
  }

  .da-header__nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: clamp(20px, 3.8vw, 44px);
  }

  .da-header__nav a {
    position: relative;
    color: var(--text);
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .02em;
    font-size: clamp(17px, 1.45vw, 20px);
    padding: 12px 0;
    text-shadow: var(--nav-shadow);
    transition: opacity .25s ease, transform .25s ease;
  }

  .da-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: 0 auto;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        rgba(var(--nav-ul-r), var(--nav-ul-g), var(--nav-ul-b), 0),
        rgba(var(--nav-ul-r), var(--nav-ul-g), var(--nav-ul-b), .85),
        rgba(var(--nav-ul-r), var(--nav-ul-g), var(--nav-ul-b), 0));
    transition: width .25s ease;
  }

  .da-header__nav a:hover {
    opacity: .95;
    transform: translateY(-1px);
  }

  .da-header__nav a:hover::after {
    width: 70%;
  }

  .da-header__nav a.em {
    font-weight: 1000;
    letter-spacing: .03em;
  }

  .da-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .01em;
    font-size: 16.5px;
    color: #fff;
    background: linear-gradient(180deg, var(--cta-top-bg1), var(--cta-top-bg2));
    border: 1px solid var(--cta-top-bd);
    box-shadow: 0 10px 28px rgba(212, 0, 26, .25), inset 0 1px 0 rgba(255, 255, 255, .16);
  }

  /* ===== Mobile ===== */
  .dm-burger {
    position: fixed;
    top: 0;
    right: env(safe-area-inset-right, 0px);
    width: var(--dm-header-h);
    height: var(--dm-header-h);
    z-index: 1000700;
    display: none;
    background: transparent;
    border-left: 1px solid rgba(255, 255, 255, .18);
  }

  .dm-burger__btn {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    border-radius: 8px;
    transform: scale(var(--dm-burger-scale));
    transform-origin: center;
  }

  .dm-burger__btn span {
    position: absolute;
    left: calc((var(--dm-header-h) - var(--burger-size))/2 + 8px);
    right: calc((var(--dm-header-h) - var(--burger-size))/2 + 8px);
    height: 2px;
    background: #fff;
    transition: transform .28s cubic-bezier(.2, .6, .2, 1),
      top .28s cubic-bezier(.2, .6, .2, 1),
      opacity .2s linear;
  }

  .dm-burger__btn span:nth-child(1) {
    top: calc((var(--dm-header-h) - var(--burger-size))/2 + var(--burger-size)*.28);
  }

  .dm-burger__btn span:nth-child(2) {
    top: calc((var(--dm-header-h) - var(--burger-size))/2 + var(--burger-size)*.50);
  }

  .dm-burger__btn span:nth-child(3) {
    top: calc((var(--dm-header-h) - var(--burger-size))/2 + var(--burger-size)*.72);
  }

  .dm-burger__btn[aria-expanded="true"] span:nth-child(1) {
    top: calc((var(--dm-header-h) - 2px)/2);
    transform: rotate(45deg);
  }

  .dm-burger__btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .dm-burger__btn[aria-expanded="true"] span:nth-child(3) {
    top: calc((var(--dm-header-h) - 2px)/2);
    transform: rotate(-45deg);
  }

  .dm-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1000300;
    background: rgba(12, 18, 28, .55);
    backdrop-filter: blur(18px) saturate(1.25) brightness(.85);
    -webkit-backdrop-filter: blur(18px) saturate(1.25) brightness(.85);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
  }

  .dm-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .dm-mobile {
    --drawer-w: min(66.666vw, 420px);
    position: fixed;
    top: 0;
    left: 0;
    width: var(--drawer-w);
    height: 100vh;
    background: #f3f4f6;
    color: #000;
    z-index: 1000400;
    box-shadow: 18px 0 38px rgba(2, 6, 23, .28);
    border-right: 1px solid rgba(2, 6, 23, .08);
    transform: translateX(-100%);
    transition: transform .28s ease;
    padding-top: env(safe-area-inset-top, 0px);
    display: block;
  }

  .dm-mobile.is-open {
    transform: translateX(0);
  }

  .dm-mobile__head {
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 28px 16px 22px;
    border-bottom: 1px solid rgba(2, 6, 23, .10);
    background: #c00018;
  }

  .dm-mobile__head img {
    height: clamp(160px, 28vw, 280px);
    max-width: 92%;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .25));
  }

  .dm-mobile__nav {
    display: grid;
    gap: 2px;
    padding: 12px 10px 14px;
  }

  .dm-mobile__nav a {
    color: #0b1324;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(2, 6, 23, .1);
  }

  .dm-mobile__cta-wrap {
    padding: 12px 12px 20px;
  }

  .dm-mobile__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .01em;
    font-size: 16.5px;
    color: var(--cta-scroll-fg);
    background: linear-gradient(180deg, var(--cta-scroll-bg1), var(--cta-scroll-bg2));
    border: 1px solid var(--cta-scroll-bd);
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
  }

  @media (max-width:1024px) {
    .da-header__nav {
      display: none;
    }

    .da-header__inner {
      grid-template-columns: auto 1fr auto;
      height: var(--dm-header-h);
    }

    .da-header__logo .da-logo {
      height: 72px;
      transform: translateX(var(--logo-shift-mobile)) scale(1.5);
    }

    .da-header:not(.is-scrolled) .da-header__logo .da-logo {
      transform: translateX(calc(var(--logo-shift-mobile) - 18px)) scale(1.74);
    }

    .da-header__cta {
      display: none;
    }

    .dm-burger {
      display: grid;
    }
  }

  @media (max-width:640px) {
    :root {
      --burger-size: 48px;
    }
  }

  @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .da-glass {
      background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0)),
        linear-gradient(90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%),
        linear-gradient(-90deg, var(--side-light-strong) 0%, var(--side-light-soft) 18%, rgba(255, 255, 255, 0) 48%);
    }
  }

  html.dm-mobile-open,
  body.dm-mobile-open {
    overflow: hidden;
    height: 100%;
    overscroll-behavior: none;
  }

  .dm-mobile-open .pagefly__container,
  .dm-mobile-open [data-pf-main] {
    overflow: hidden !important;
  }

  @media (max-width:1024px) {

    .da-header,
    .da-header__inner,
    .da-base,
    .da-glass {
      height: var(--dm-header-h) !important;
    }

    .da-header__inner {
      transition: none !important;
    }

    .da-header__logo .da-logo {
      width: auto !important;
      will-change: opacity;
    }
  }

  .pagefly__container,
  [data-pf-main] {
    transform: none !important;
    perspective: none !important;
    filter: none !important;
  }

  /* === HOTFIX Z-INDEX: Drawer sopra all'header quando aperto === */
  .dm-mobile-open #dm-mobile.dm-mobile {
    position: fixed !important;
    z-index: 1000800 !important;
    /* sopra header (1000600) e backdrop */
  }

  .dm-mobile-open .dm-drawer-backdrop {
    z-index: 1000750 !important;
    /* sotto al drawer, sopra all'header */
  }

  .dm-mobile-open .dm-burger {
    z-index: 1000900 !important;
    /* bottone/X sempre sopra a tutto */
  }

  /* opzionale: evita click sull'header mentre il menu è aperto */
  .dm-mobile-open .da-header {
    pointer-events: none;
  }

:root {
      --brand-red: #c00018
    }

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

    .pfpdp,
    .pfpdp * {
      box-sizing: border-box
    }

    .pfpdp {
      background: #fff !important;
      color: #0b0b0c
    }

    .pfpdp__inner {
      --pdp-pad-x: clamp(16px, 3.6vw, 28px);
      max-width: 1520px;
      margin: 0 auto;
      padding: clamp(18px, 3vw, 28px) var(--pdp-pad-x) 40px
    }

    .pfpdp-breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: clamp(14px, 1.2vw, 16px);
      font-weight: 700;
      color: rgba(11, 11, 12, .7);
      margin-bottom: clamp(10px, 1.6vw, 18px);
      flex-wrap: wrap;
    }

    .pfpdp-breadcrumb a {
      text-decoration: none;
      color: inherit;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 800;
    }

    .pfpdp-breadcrumb a:hover {
      color: var(--brand-red);
    }

    .pfpdp-breadcrumb__sep {
      color: rgba(11, 11, 12, .35);
    }

    .pfpdp-breadcrumb__current {
      color: #0b0b0c;
      font-weight: 900;
    }

    /* ===== GRID ===== */
    .pfpdp__grid {
      --colL: 1.20fr;
      /* sinistra */
      --colR: 0.80fr;
      /* destra */
      display: grid;
      grid-template-columns: var(--colL) var(--colR);
      gap: clamp(20px, 3.2vw, 32px);
      align-items: start;
    }

    .pfpdp-left {
      display: flex;
      flex-direction: column;
      gap: 28px
    }

    .pfpdp-right {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    /* ===== MOBILE HEADER ===== */
    .pfpdp-headMobile {
      display: none;
      margin-bottom: 6px
    }

    .pfpdp-title--mobile {
      margin: 0 0 10px;
      /* più grande e fino a 3 righe senza clamp */
      font-size: clamp(24px, 7vw, 34px);
      line-height: 1.18;
      font-weight: 1000;
      letter-spacing: -.01em
    }

    .pfpdp-price--mobile {
      display: inline-block;
      margin-top: 2px;
      border-radius: 14px;
      border: 1px solid rgba(212, 0, 26, .45);
      background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .88));
      box-shadow: 0 12px 28px rgba(212, 0, 26, .18), inset 0 1px 0 rgba(255, 255, 255, .5);
      padding: 10px 14px
    }

    .pfpdp-price--mobile .pfpdp-price__val {
      color: var(--brand-red);
      font-weight: 1000;
      font-size: clamp(20px, 5.6vw, 28px);
      letter-spacing: .01em;
      text-shadow: 0 1px 0 rgba(255, 255, 255, .6)
    }

    /* ===== GALLERY ===== */
    .pfpdp-media-wrap {
      --nav-gutter: 44px;
      position: relative;
      margin: 0 var(--nav-gutter)
    }

    .pfpdp-media {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid var(--brand-red);
      box-shadow: 0 10px 26px rgba(0, 0, 0, .06)
    }

    .pfpdp-media img {
      display: block;
      width: 100%;
      height: auto;
      aspect-ratio: 4/3;
      object-fit: cover;
      background: #fff;
      transition: transform .35s
    }

    @media (max-width: 640px) {
      .pfpdp-gallery {
        width: 100%;
        margin: 0;
        overflow: visible;
      }

      .pfpdp-media {
        background: #fff;
        border-left: 2px solid var(--brand-red);
        border-right: 2px solid var(--brand-red);
        border-radius: 16px;
      }

      .pfpdp-media img {
        aspect-ratio: 4/3;
        object-fit: cover;
        background: #fff;
      }

      .pfpdp-thumbs {
        width: 100%;
        padding: 0;
      }
    }

    .pfpdp-media img:hover {
      transform: scale(1.01);
      cursor: zoom-in
    }

    .pfpdp-media__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      background: #fff;
      color: #0b0b0c;
      border: 1px solid rgba(0, 0, 0, .12);
      box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
      z-index: 3
    }

    .pfpdp-media__nav--prev {
      left: calc(var(--nav-gutter) * -1 + 6px)
    }

    .pfpdp-media__nav--next {
      right: calc(var(--nav-gutter) * -1 + 6px)
    }

    .pfpdp-tapHint {
      margin: 10px 0 0;
      font-weight: 800;
      font-size: 13px;
      letter-spacing: .01em;
      color: rgba(11, 11, 12, .70);
      text-align: center;
      user-select: none;
    }

    .pfpdp-thumbs {
      margin: 10px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(5, 1fr)
    }

    .pfpdp-thumb {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, .08);
      background: #fff;
      cursor: pointer
    }

    .pfpdp-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/3
    }

    .pfpdp-thumb.is-active {
      outline: 2px solid var(--brand-red);
      outline-offset: 2px
    }

    .pfpdp-thumb--more::after {
      content: attr(data-more);
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      background: rgba(0, 0, 0, .24);
      color: #fff;
      font-weight: 1000;
      font-size: clamp(16px, 1.8vw, 20px)
    }

    /* ===== DESCRIZIONE ===== */
    .pfpdp-desc__text {
      position: relative;
      overflow: hidden
    }

    .pfpdp-desc__text p {
      font-size: clamp(17px, 1.1vw, 18px);
      line-height: 1.68;
      color: #202226;
      margin: .2em 0
    }

    .pfpdp-desc__text .desc-label {
      font-weight: 1000;
      color: #111;
      margin-right: 6px;
      font-size: 1.08em
    }

    .pfpdp-desc__text.is-collapsed {
      max-height: 22em
    }

    .pfpdp-desc__text.is-collapsed::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 6.5em;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .96))
    }

    .pfpdp-desc__more {
      margin-top: 10px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 12px;
      cursor: pointer;
      border: 1px solid rgba(0, 0, 0, .12);
      background: #fff;
      font-weight: 1000
    }

    .pfpdp-desc__more[aria-expanded="true"] svg {
      transform: rotate(180deg);
      transition: transform .2s
    }

    /* ===== INFO DESTRA ===== */
    .pfpdp-info {
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 16px;
      padding: clamp(16px, 2vw, 22px);
      background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .92));
      box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
      margin: 0
    }

    .pfpdp-head {
      margin-bottom: 12px
    }

    .pfpdp-titleprice {
      display: flex;
      align-items: flex-start;
      gap: 14px
    }

    .pfpdp-title {
      flex: 1 1 auto;
      margin: 0;
      font-size: clamp(22px, 2.4vw, 32px);
      line-height: 1.22;
      font-weight: 1000;
      letter-spacing: -.01em;
      display: block;
      white-space: normal;
      overflow: visible;
      word-break: break-word;
    }

    .pfpdp-price {
      flex: 0 0 auto;
      display: inline-block;
      border-radius: 14px;
      border: 1px solid rgba(212, 0, 26, .45);
      background: linear-gradient(180deg, #fff, rgba(255, 255, 255, .88));
      box-shadow: 0 12px 28px rgba(212, 0, 26, .18), inset 0 1px 0 rgba(255, 255, 255, .5);
      padding: 12px 16px
    }

    .pfpdp-price__val {
      color: var(--brand-red);
      font-weight: 1000;
      font-size: clamp(22px, 2.4vw, 30px);
      letter-spacing: .01em;
      text-shadow: 0 1px 0 rgba(255, 255, 255, .6)
    }

    .pfpdp-keyspecs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px 12px;
      margin: 14px 0 16px;
      padding: 0;
      list-style: none
    }

    .pfpdp-keyspecs li {
      padding: 10px 12px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid rgba(212, 0, 26, .28);
      font-weight: 900
    }

    .pfpdp-keyspecs strong {
      color: #5b5d63;
      margin-right: 6px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .06em;
      font-size: 12px
    }

    .pfpdp-specs__more {
      margin-top: 10px;
      overflow: hidden
    }

    .pfpdp-specs__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 16px;
      list-style: none;
      padding: 0;
      margin: 0
    }

    .pfpdp-specs__grid li {
      padding: 10px 12px;
      border: 1px solid rgba(0, 0, 0, .08);
      border-radius: 12px;
      background: #fff;
      font-weight: 900;
      color: #2d2f33
    }

    .pfpdp-specs__toggle {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, .12);
      background: #fff;
      font-weight: 1000;
      cursor: pointer;
      transition: background .2s, border-color .2s, color .2s, box-shadow .2s
    }

    .pfpdp-specs__toggle[aria-expanded="true"] {
      background: linear-gradient(180deg, rgba(212, 0, 26, .10), rgba(212, 0, 26, .06));
      border-color: rgba(212, 0, 26, .55);
      color: var(--brand-red);
      box-shadow: 0 8px 18px rgba(212, 0, 26, .16)
    }

    .pfpdp-specs {
      margin-top: 18px;
    }

    .pfpdp-paypal-slot[data-slot="paypal-desktop"] {
      margin-bottom: 18px;
    }

    /* ===== DOTAZIONI PRINCIPALI ===== */
    .pfpdp-options {
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(0, 0, 0, .06);
    }

    .pfpdp-options__title {
      font-size: clamp(18px, 1.4vw, 22px);
      line-height: 1.3;
      margin: 0 0 12px;
      font-weight: 900;
      color: #0b0b0c;
    }

    .pfpdp-options__list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 18px;
    }

    .pfpdp-options__list li {
      position: relative;
      padding-left: 20px;
      font-weight: 700;
      color: #2d2f33;
      line-height: 1.4;
    }

    .pfpdp-options__list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .55em;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--brand-red);
      box-shadow: 0 0 0 4px rgba(212, 0, 26, .12);
    }

    @media (max-width: 720px) {
      .pfpdp-options__list {
        grid-template-columns: 1fr;
        gap: 8px 12px;
      }
    }

    /* ===== CTA ROW (2 righe: 1 larga + 2 affiancati) ===== */
    .pfpdp-ctaRow {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin: 0
    }

    .pfpdp-ctaRow .btn--autoscout {
      grid-column: 1 / -1
    }

    .pfpdp-ctaRow .btn {
      position: relative;
      overflow: hidden;
      /* per lo shine */
      min-width: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 66px;
      padding: 0 20px;
      border-radius: 14px;
      font-weight: 1000;
      font-size: clamp(17px, 1.2vw, 19px);
      letter-spacing: .01em;
      text-decoration: none;
      border: 1px solid transparent;
      box-shadow: 0 12px 26px rgba(0, 0, 0, .06);
      transition: transform .12s, box-shadow .2s, border-color .2s, background .2s, color .2s;
      color: inherit !important;
      line-height: 1;
    }

    /* shine in hover */
    .pfpdp-ctaRow .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(75deg, transparent 0%, rgba(255, 255, 255, .25) 45%, transparent 60%);
      transform: translateX(-120%);
      opacity: 0;
      transition: transform .55s ease, opacity .35s ease;
      pointer-events: none
    }

    .pfpdp-ctaRow .btn:hover {
      transform: translateY(-2px)
    }

    .pfpdp-ctaRow .btn:hover::after {
      transform: translateX(120%);
      opacity: .9
    }

    .pfpdp-ctaRow .btn:focus-visible {
      outline: none;
      box-shadow: 0 0 0 3px rgba(212, 0, 26, .18), 0 12px 26px rgba(0, 0, 0, .08)
    }

    .pfpdp-ctaRow .btn svg {
      display: inline-block
    }

    .pfpdp-ctaRow .btn svg path {
      stroke: currentColor
    }

    /* Varianti — effetti permanenti (più evidenti SEMPRE), hover intensifica */
    .btn--primary {
      background: linear-gradient(180deg, rgba(212, 0, 26, .98), rgba(212, 0, 26, .88));
      color: #fff !important;
      border-color: rgba(212, 0, 26, .72);
      box-shadow: 0 14px 30px rgba(212, 0, 26, .22), inset 0 1px 0 rgba(255, 255, 255, .6);
    }

    .btn--primary:hover {
      box-shadow: 0 18px 36px rgba(212, 0, 26, .28), inset 0 1px 0 rgba(255, 255, 255, .7)
    }

    .btn--ghost {
      background: linear-gradient(180deg, #fff, #f6f7f9);
      color: var(--brand-red) !important;
      border-color: rgba(212, 0, 26, .70);
      box-shadow: 0 12px 26px rgba(212, 0, 26, .18), inset 0 .5px 0 rgba(255, 255, 255, .85);
    }

    .btn--ghost:hover {
      background: linear-gradient(180deg, #fff, #f1f2f4);
      box-shadow: 0 16px 34px rgba(212, 0, 26, .22)
    }

    .btn--accentDark {
      background: linear-gradient(180deg, #111, #1a1f26);
      color: #fff !important;
      border-color: rgba(255, 255, 255, .18);
      box-shadow: 0 14px 30px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .06);
    }

    .btn--accentDark:hover {
      box-shadow: 0 18px 38px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .1)
    }

    .pfpdp-paypal {
      margin: 12px 0 18px;
      max-width: 100%;
    }

    @media (max-width: 1024px) {
      .pfpdp-paypal {
        margin: 14px 0 16px;
      }
    }

    .page-product .pfpdp-paypal,
    .page-product .pfpdp-paypal * {
      box-sizing: border-box;
      max-width: 100%;
    }

    @media (max-width: 1024px) {
      .pfpdp-paypal {
        width: min(100%, 520px);
        margin-inline: auto;
      }
    }

    .page-product .btn--paypal,
    .page-product .pfpdp .btn--paypal {
      width: 100%;
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      gap: 14px;
      padding: 14px 16px;
      border-radius: 16px !important;
      background: linear-gradient(180deg, #ffffff, #f6f7f9) !important;
      color: #0b0b0c !important;
      border-color: rgba(192, 0, 24, .55) !important;
      box-shadow: 0 16px 32px rgba(212, 0, 26, .12), inset 0 1px 0 rgba(255, 255, 255, .7) !important;
      min-width: 0 !important;
      white-space: normal !important;
    }

    .page-product .btn--paypal:hover,
    .page-product .pfpdp .btn--paypal:hover {
      box-shadow: 0 18px 40px rgba(212, 0, 26, .18), inset 0 1px 0 rgba(255, 255, 255, .8) !important;
    }

    /* ===== Prenotazione (popup) ===== */
    .pfrsv-overlay {
      position: fixed;
      inset: 0;
      z-index: 1000805;
    }

    .pfrsv-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(12, 18, 28, .55);
      backdrop-filter: blur(18px) saturate(1.2) brightness(.85);
      -webkit-backdrop-filter: blur(18px) saturate(1.2) brightness(.85);
    }

    .pfrsv-modal {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: min(720px, calc(100vw - 26px));
      max-height: min(86vh, 920px);
      overflow: auto;
      background: #fff;
      border-radius: 22px;
      border: 1px solid rgba(11, 11, 12, .10);
      box-shadow: 0 26px 70px rgba(2, 6, 23, .28);
      padding: 18px 18px 16px;
    }

    .pfrsv-close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(11, 11, 12, .10);
      background: #fff;
      cursor: pointer;
      font-size: 22px;
      line-height: 1;
    }

    .pfrsv-kicker {
      display: inline-flex;
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: 12px;
      color: rgba(11, 11, 12, .72);
      background: rgba(212, 0, 26, .06);
      border: 1px solid rgba(212, 0, 26, .12);
    }

    .pfrsv-title {
      margin: 10px 0 6px;
      font-size: clamp(22px, 3.8vw, 30px);
      letter-spacing: -.02em;
      line-height: 1.1;
    }

    .pfrsv-sub {
      margin: 0 0 12px;
      color: rgba(11, 11, 12, .70);
      font-weight: 600;
      line-height: 1.35;
    }

    .pfrsv-vehicle {
      margin: 10px 0 14px;
      padding: 14px 14px;
      border-radius: 18px;
      background: #f6f7f9;
      border: 1px solid rgba(11, 11, 12, .08);
    }

    .pfrsv-vehicle__title {
      font-weight: 900;
      letter-spacing: -.01em;
      margin-bottom: 8px;
    }

    .pfrsv-vehicle__row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .pfrsv-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 13px;
      background: #fff;
      border: 1px solid rgba(11, 11, 12, .10);
    }

    .pfrsv-pill--accent {
      color: #0b0b0c;
      border-color: rgba(192, 0, 24, .25);
      background: rgba(212, 0, 26, .06);
    }

    .pfrsv-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    @media (max-width: 640px) {
      .pfrsv-grid {
        grid-template-columns: 1fr;
      }
    }

    .pfrsv-field {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 12px;
    }

    .pfrsv-field > span {
      font-weight: 800;
      color: rgba(11, 11, 12, .82);
      font-size: 14px;
    }

    .pfrsv-field input,
    .pfrsv-field textarea {
      width: 100%;
      border-radius: 14px;
      border: 1px solid rgba(11, 11, 12, .14);
      padding: 12px 12px;
      font-size: 15px;
      font-weight: 600;
      background: #fff;
    }

    .pfrsv-consents {
      display: grid;
      gap: 10px;
      margin: 10px 0 10px;
    }

    .pfrsv-check {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      color: rgba(11, 11, 12, .72);
      font-weight: 650;
      line-height: 1.25;
      font-size: 14px;
    }

    .pfrsv-check input {
      margin-top: 2px;
      width: 18px;
      height: 18px;
      accent-color: #c00018;
      flex: 0 0 auto;
    }

    .pfrsv-check a {
      color: #c00018;
      text-decoration: underline;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
    }

    .pfrsv-feedback {
      min-height: 18px;
      margin: 8px 0 10px;
      font-weight: 800;
      color: #8a0012;
    }

    .pfrsv-actions {
      display: flex;
      justify-content: flex-end;
      gap: 10px;
    }

    .pfrsv-submit {
      width: 100%;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1px solid rgba(192, 0, 24, .55);
      background: linear-gradient(180deg, #ffffff, #f6f7f9);
      color: #0b0b0c;
      font-weight: 1000;
      letter-spacing: .01em;
      cursor: pointer;
      box-shadow: 0 16px 32px rgba(212, 0, 26, .12), inset 0 1px 0 rgba(255, 255, 255, .7);
    }

    .pfrsv-submit[disabled] {
      opacity: .7;
      cursor: not-allowed;
      box-shadow: none;
    }

    .btn__text {
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
      text-align: left;
    }

    .btn__title {
      font-size: 18px;
      font-weight: 1000;
      letter-spacing: .01em;
      color: #0b0b0c;
    }

    .btn__sub {
      font-size: 13px;
      font-weight: 900;
      opacity: .95;
      letter-spacing: .02em;
      color: rgba(11, 11, 12, .65);
    }

    .pp-mark {
      display: inline-flex;
      align-items: baseline;
      gap: 0;
      font-weight: 1000;
      letter-spacing: -0.02em;
      font-size: 18px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(192, 0, 24, .08);
      border: 1px solid rgba(192, 0, 24, .18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
      margin-right: 8px;
    }

    .pp-pay {
      color: #0b0b0c;
    }

    .pp-pal {
      color: #c00018;
    }

    .btn__chev {
      margin-left: auto;
      font-size: 26px;
      line-height: 1;
      transform: translateY(-1px);
      opacity: .9;
      color: rgba(11, 11, 12, .55);
    }

    @media (max-width: 640px) {
      .btn__title {
        font-size: 17px;
      }

      .pp-mark {
        font-size: 17px;
      }

      .btn__chev {
        display: none;
      }
    }

    /* ===== LIGHTBOX ===== */
    .pfpdp-lightbox {
      position: fixed;
      inset: 0;
      z-index: 2000000
    }

    .pfpdp-lightbox[hidden] {
      display: none
    }

    .pfpdp-lightbox__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(10, 12, 18, .78);
      backdrop-filter: blur(8px) saturate(1.2);
      -webkit-backdrop-filter: blur(8px) saturate(1.2)
    }

    .pfpdp-lightbox__stage {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: clamp(12px, 3vw, 24px)
    }

    .pfpdp-lightbox__figure {
      position: relative;
      width: min(94vw, 1280px);
      max-height: 88vh;
      margin: 0 auto
    }

    .pfpdp-lightbox__figure img {
      display: block;
      width: 100%;
      height: auto;
      max-height: 88vh;
      object-fit: contain;
      background: transparent;
      border-radius: 10px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, .45)
    }

    .pfpdp-lightbox__count {
      position: absolute;
      right: 14px;
      bottom: 10px;
      color: #fff;
      background: rgba(0, 0, 0, .35);
      padding: 6px 10px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 14px
    }

    .pfpdp-lightbox__close {
      position: absolute;
      top: clamp(10px, 3vw, 20px);
      right: clamp(10px, 3vw, 20px);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      justify-content: center;
      height: 42px;
      padding: 0 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .12);
      color: #fff;
      cursor: pointer
    }

    /* Frecce dentro la figure (sopra la foto) */
    .pfpdp-lightbox__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 54px;
      height: 54px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .22);
      background: rgba(255, 255, 255, .14);
      color: #fff;
      cursor: pointer
    }

    .pfpdp-lightbox__nav--prev {
      left: 12px
    }

    .pfpdp-lightbox__nav--next {
      right: 12px
    }

    /* ===== Responsive ===== */
    @media(max-width:1024px) {
      .pfpdp__grid {
        grid-template-columns: 1fr
      }

      /* Titolo + Prezzo in alto (mobile), nasconde l’header dentro al box info */
      .pfpdp-headMobile {
        display: block
      }

      .pfpdp-head {
        display: none
      }

      /* Galleria: nav visibili */
      .pfpdp-media-wrap {
        margin: 0
      }

      .pfpdp-media__nav {
        display: inline-flex;
        width: 42px;
        height: 42px;
        background: rgba(0, 0, 0, .55);
        color: #fff;
        border-color: transparent;
        box-shadow: 0 6px 14px rgba(0, 0, 0, .25);
      }

      .pfpdp-media__nav--prev {
        left: 8px
      }

      .pfpdp-media__nav--next {
        right: 8px
      }

      .pfpdp-media img {
        aspect-ratio: 5/4;
      }

      .pfpdp-tapHint {
        margin-top: 8px;
        font-size: 12.5px;
      }

      /* CTA: anche su mobile 2 righe (AS full-width + 2 affiancati) */
      .pfpdp-ctaRow {
        grid-template-columns: repeat(2, 1fr)
      }

      .pfpdp-ctaRow .btn--autoscout {
        grid-column: 1 / -1
      }

      /* Lightbox: centrata e senza tagli a destra */
      .pfpdp-lightbox__stage {
        /* centro perfetto su dispositivi piccoli */
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
      }

      .pfpdp-lightbox__figure {
        width: calc(100vw - 16px);
        /* considera il padding dello stage */
        max-height: 86vh;
        margin: 0 auto;
      }

      .pfpdp-lightbox__figure img {
        max-width: 100%;
        max-height: 86vh;
        margin: 0 auto;
        object-fit: contain;
      }

      /* Frecce ancora più leggere su mobile */
      .pfpdp-lightbox__nav {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, .10);
        border-color: rgba(255, 255, 255, .16)
      }
    }

    html.pdp-modal-open,
    body.pdp-modal-open {
      overflow: hidden;
      height: 100%
    }

.where-section.demasi {
    --brand-red: #e62434;
    --ink: #0b132a;
    --muted: #5b728a;
    --card: #fff;
    --b: rgba(2, 6, 23, .12);
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: #fff;
  }

  .where-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 16px
  }

  .where-header {
    text-align: center;
    margin-bottom: 24px
  }

  /* ===== TITOLI — forza dimensione su DESKTOP per evitare override tema/PageFly ===== */
  .where-section.demasi .where-header .where-title,
  .where-section.demasi .where-header .pf-da-find__title {
    margin: 0;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: var(--ink);
    font-size: clamp(32px, 5.4vw, 56px) !important;
  }

  /* "trovarci" in rosso SEMPRE */
  .where-title .brand-red,
  .where-title .hl-red {
    color: var(--brand-red) !important
  }

  /* Linietta sotto il titolo */
  .where-underline {
    display: block;
    width: clamp(110px, 22vw, 240px);
    height: 3px;
    border-radius: 999px;
    margin: 10px auto 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 90, 106, .65), rgba(255, 0, 0, 0));
  }

  .where-underline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--brand-red), #e85c6a, var(--brand-red));
    background-size: 200% 100%;
    animation: whereSheen 6s linear infinite;
    opacity: .5;
  }

  @keyframes whereSheen {
    from {
      background-position: 0 0
    }

    to {
      background-position: 200% 0
    }
  }

  .where-subtitle {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.6vw, 18px)
  }

  .where-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch
  }

  @media(min-width:1024px) {
    .where-grid {
      grid-template-columns: 360px minmax(0, 1fr)
    }
  }

  .map-box {
    border: 1px solid var(--b);
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .06);
    overflow: hidden;
    min-height: 340px;
    height: 100%;
  }

  .map-iframe {
    width: 100%;
    height: 100%;
    border: 0
  }

  .info-card {
    border: 1px solid var(--b);
    border-radius: 14px;
    box-shadow: 0 2px 6px rgba(2, 6, 23, .06);
    background: var(--card);
    height: 100%;
  }

  .info-card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px
  }

  .info-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 0 14px;
    letter-spacing: -.01em;
    color: var(--ink)
  }

  .info-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
  }

  .info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start
  }

  .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(180deg, #fff7f8 0%, #ffe9ec 100%);
    border: 1px solid rgba(255, 42, 61, .20);
    color: var(--brand-red);
    flex: 0 0 32px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
  }

  .info-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
  }

  .info-icon svg * {
    fill: none !important
  }

  .info-label {
    font-size: 12.4px;
    color: #6b7a92;
    margin-bottom: 2px;
    font-weight: 600
  }

  .info-value {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.55
  }

  .info-value a {
    color: var(--ink) !important;
    text-decoration: none
  }

  .info-value a:hover {
    text-decoration: underline
  }

  .info-spacer {
    flex: 1 1 auto
  }

  .btn-map {
    margin-top: 18px;
    width: 100%;
    height: 44px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: .2px;
    color: var(--brand-red);
    background: linear-gradient(90deg, #f9f6f6 0%, #ffffff 48%, #f5ecee 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9), 0 8px 20px rgba(2, 6, 23, .08), 0 0 0 2px rgba(255, 255, 255, .80) inset;
    position: relative;
    overflow: hidden;
    transition: filter .18s ease;
  }

  .btn-map:hover {
    filter: brightness(.99)
  }

  .btn-map::after {
    content: "";
    position: absolute;
    inset: -40% -120%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .38) 45%, rgba(255, 255, 255, 0) 60%);
    transform: translateX(-120%) rotate(16deg);
    opacity: 0;
    pointer-events: none;
  }

  .btn-map:hover::after,
  .btn-map:focus-visible::after {
    animation: btnShimmer 1.2s ease-out 1 forwards
  }

  @keyframes btnShimmer {
    0% {
      transform: translateX(-120%) rotate(16deg);
      opacity: 0
    }

    30% {
      opacity: .18
    }

    55% {
      opacity: .28
    }

    100% {
      transform: translateX(120%) rotate(16deg);
      opacity: 0
    }
  }

  .btn-map svg {
    width: 18px;
    height: 18px;
    stroke: var(--brand-red);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
  }

  .btn-map svg * {
    fill: none !important
  }

  /* ===== MOBILE (≤980px): ordine, allineamenti e testi più piccoli ===== */
  @media (max-width:980px) {
    .where-header {
      text-align: left
    }

    /* stessa voce mobile di "La nostra azienda" */
    .where-section.demasi .where-header .pf-da-find__title {
      font-size: clamp(36px, 9vw, 54px) !important;
      line-height: 1.1;
      letter-spacing: -.3px;
    }

    .where-underline {
      margin: 6px 0 10px 0
    }

    /* ordine: mappa prima, poi contatti */
    .map-box {
      order: 1
    }

    .info-card {
      order: 2
    }

    /* contatti compatti */
    .info-card__content {
      padding: 16px
    }

    .info-title {
      font-size: 18px;
      margin-bottom: 10px
    }

    .info-list {
      gap: 10px
    }

    .info-item {
      gap: 10px
    }

    .info-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px
    }

    .info-icon svg {
      width: 16px;
      height: 16px;
      stroke-width: 1.6
    }

    .info-label {
      font-size: 11.5px
    }

    .info-value {
      font-size: 13.4px;
      line-height: 1.48
    }
  }

  /* === Slider "Scopri anche": replica il layout del Catalogo === */
  #pf-also42 {
    --gap: 22px;
    --cols: 3;
    --nav-offset: 8px;
    --nav-size: 48px;
    --wm-px: clamp(700px, 24vw, 1000px);
    --wm-ratio: 0.3805;
    --wm-right: 120px;
    --wm-bottom: -44px;
    --wm-opacity: .30;
    --brand-red: #e62434;
    --ink: #0b0b0c;
    --muted: #5b728a;
  }

  #pf-also42 .pfc42-head {
    display: none;
  }

  #pf-also42 .pfc42-slider {
    overflow: visible;
  }

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

  #pf-also42 .pfc42-viewport {
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 0, 26, .7) rgba(11, 11, 12, .08);
  }

  #pf-also42 .pfc42-viewport::-webkit-scrollbar {
    height: 8px;
  }

  #pf-also42 .pfc42-viewport::-webkit-scrollbar-track {
    background: rgba(11, 11, 12, .08);
    border-radius: 999px;
  }

  #pf-also42 .pfc42-viewport::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #e62434, #c00018);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .4), 0 6px 14px rgba(212, 0, 26, .25);
  }

  #pf-also42 .pfc42-viewport::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, #ff4154, #b60016);
  }

  #pf-also42 .also-header {
    text-align: center;
    margin: 0 0 18px;
  }

  #pf-also42 .also-title {
    margin: 0;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: var(--ink);
    font-size: clamp(32px, 5.4vw, 56px) !important;
  }

  #pf-also42 .also-title .brand-red,
  #pf-also42 .also-title .hl-red {
    color: var(--brand-red) !important;
  }

  #pf-also42 .also-underline {
    display: block;
    width: clamp(110px, 22vw, 240px);
    height: 3px;
    border-radius: 999px;
    margin: 10px auto 12px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 0, 0, 0), rgba(255, 90, 106, .65), rgba(255, 0, 0, 0));
  }

  #pf-also42 .also-underline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--brand-red), #e85c6a, var(--brand-red));
    background-size: 200% 100%;
    animation: alsoSheen 6s linear infinite;
    opacity: .5;
  }

  @keyframes alsoSheen {
    from {
      background-position: 0 0;
    }

    to {
      background-position: 200% 0;
    }
  }

  @media (max-width: 1200px) {
    #pf-also42 {
      --wm-right: 40px;
    }
  }

  @media (max-width:1024px) {
    #pf-also42 {
      --cols: 2;
    }
  }

  @media (max-width:720px) {
    #pf-also42 {
      --cols: 1;
      --nav-offset: 10px;
      --nav-size: 46px;
      --wm-opacity: .14;
      --wm-px: clamp(520px, 72vw, 680px);
      --wm-bottom: -36px;
    }

    #pf-also42 .pfc42__inner {
      padding-top: 8px;
    }

    #pf-also42 .pfc42-viewport {
      scroll-padding-inline: 16px;
    }

    #pf-also42 .pfc42-title {
      font-size: 22px;
    }
  }

  @media (max-width:640px) {
    #pf-also42 .pfc42-viewport {
      padding-inline: 10px;
    }
  }

.full-bleed {
    width: 100%;
    position: relative;
    left: auto;
    right: auto;
    margin-left: 0;
    margin-right: 0;
  }

  /* ===== Base / Variabili ===== */
  #demasi-footer-v8.demasi-footer {
    --grey-top: #8f959c;
    --red-base: #c00018;
    --container: min(1280px, 92vw);
    --glass-sheen: linear-gradient(120deg, rgba(255, 255, 255, .22) 0%, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0) 82%, rgba(255, 255, 255, .16) 100%);
    /* METAL (solo top) */
    --metal-specular: rgba(255, 255, 255, .26);
    --metal-specular-soft: rgba(255, 255, 255, .12);
    --metal-edge-light: rgba(255, 255, 255, .18);
    --metal-edge-soft: rgba(255, 255, 255, .10);
    --metal-brushed-dark: rgba(0, 0, 0, .035);
    --metal-brushed-light: rgba(255, 255, 255, .05);
    --metal-lines-opacity: .12;
    --metal-angle: 112deg;
    --metal-band-start: 14%;
    --metal-band-end: 44%;

    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 0;
    background: var(--grey-top);
  }

  .footer-container {
    width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(16px, 3vw, 28px);
    position: relative;
    z-index: 3;
  }

  .footer-top,
  .footer-bottom {
    position: relative;
    z-index: 0;
  }

  /* ===== TOP grigio (più compatto) ===== */
  .footer-top {
    background: var(--grey-top);
    padding: clamp(42px, 4.6vw, 68px) 0;
    /* ridotto */
    text-align: center;
    overflow: hidden;
  }

  .footer-top::before,
  .footer-top::after {
    content: "";
    position: absolute;
    inset: -1px 0 0;
    pointer-events: none;
    z-index: 1;
  }

  .footer-top::before {
    background:
      linear-gradient(var(--metal-angle), transparent 0%, transparent calc(var(--metal-band-start) - 6%), var(--metal-specular) var(--metal-band-start), var(--metal-specular-soft) var(--metal-band-end), transparent calc(var(--metal-band-end) + 8%)),
      linear-gradient(90deg, var(--metal-edge-light), var(--metal-edge-soft) 14%, rgba(255, 255, 255, 0) 40%),
      linear-gradient(-90deg, var(--metal-edge-light), var(--metal-edge-soft) 14%, rgba(255, 255, 255, 0) 40%),
      radial-gradient(900px 520px at 15% -20%, rgba(255, 255, 255, .14), transparent 60%),
      radial-gradient(700px 380px at 30% 35%, rgba(255, 255, 255, .10), transparent 65%),
      radial-gradient(900px 520px at 85% 120%, rgba(0, 0, 0, .12), transparent 60%),
      linear-gradient(135deg, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, 0) 35%, rgba(0, 0, 0, .05) 100%);
    opacity: .98;
  }

  .footer-top::after {
    background: repeating-linear-gradient(90deg, var(--metal-brushed-light) 0 1px, var(--metal-brushed-dark) 1px 2px);
    opacity: var(--metal-lines-opacity);
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%), linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image: linear-gradient(180deg, transparent 0, #000 10%, #000 90%, transparent 100%), linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .top-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: var(--glass-sheen), linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0));
    backdrop-filter: blur(8px) saturate(125%);
    -webkit-backdrop-filter: blur(8px) saturate(125%);
    animation: sheen-move 8s linear infinite;
    opacity: .92;
  }

  @keyframes sheen-move {
    0% {
      background-position: -40% 0, 0 0
    }

    100% {
      background-position: 140% 0, 0 0
    }
  }

  /* Titolo/sottotitolo più grandi */
  .cta-head {
    max-width: 960px;
    margin: 0 auto clamp(12px, 2.6vw, 20px);
  }

  .cta-title {
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: -.01em;
    line-height: 1.12;
    font-size: clamp(28px, 3.6vw, 44px);
    color: #fff;
  }

  .cta-subtitle {
    margin: 0;
    color: #f1f5f9;
    font-size: clamp(15px, 1.6vw, 20px);
    line-height: 1.6;
  }

  /* CTA su una riga, più grandi, no wrap */
  .cta-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 14px;
    margin-top: clamp(12px, 2vw, 18px);
    flex-wrap: nowrap;
  }

  .btn {
    border: 1.8px solid rgba(255, 255, 255, 0.95);
    background: transparent;
    color: #fff;
    padding: 13px 22px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 15.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s cubic-bezier(.2, .8, .2, 1), background .2s ease, color .2s ease, border-color .2s ease;
    white-space: nowrap;
    min-width: 220px;
  }

  .btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .10);
    border-color: #fff;
  }

  .btn-ghost-alt {
    border-color: rgba(255, 255, 255, .9);
    background: rgba(255, 255, 255, .08);
  }

  .btn-ghost-alt:hover {
    background: rgba(255, 255, 255, .14);
  }

  /* ===== BOTTOM rosso ===== */
  .footer-bottom {
    background: linear-gradient(180deg, var(--red-base) 0%, color-mix(in srgb, var(--red-base) 80%, #8b000e 20%) 100%);
    padding: clamp(16px, 2.6vw, 28px) 0;
    overflow: hidden;
    margin-top: -1px;
    position: relative;
  }

  .bottom-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: var(--glass-sheen), linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0));
    backdrop-filter: blur(8px) saturate(120%);
    -webkit-backdrop-filter: blur(8px) saturate(120%);
    animation: sheen-move 8s linear infinite;
    opacity: .9;
  }

  /* Watermark: nascosto su desktop */
  .footer-watermark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -22px;
    width: min(1200px, 100vw);
    height: auto;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    user-select: none;
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .08));
  }

  /* Colonne rosse (desktop) */
  .footer-cols {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    column-gap: clamp(24px, 4vw, 56px);
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: clamp(170px, 18vw, 220px);
    height: auto;
    margin: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
  }

  .brand-name {
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: .3px;
    margin: 2px 0 0 10px;
  }

  .brand-piva {
    display: none;
  }

  /* visibile solo su mobile */

  .footer-info {
    margin-top: clamp(10px, 1.8vw, 14px);
  }

  .info-columns {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: start;
    column-gap: clamp(28px, 3.8vw, 64px);
    row-gap: 0;
  }

  .info-columns .col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .label {
    font-weight: 700;
  }

  .colon {
    opacity: .8;
  }

  .value {
    min-width: 0;
  }

  /* email/telefono SEMPRE bianchi */
  .footer-info a,
  .footer-info a.value,
  .footer-info .value {
    color: #fff !important;
    border-bottom: 1px dotted rgba(255, 255, 255, .55);
  }

  .footer-info a:visited {
    color: #fff !important;
  }

  .footer-legal {
    margin-top: clamp(14px, 2vw, 20px);
  }

  .legal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .legal-list a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 255, 255, .55);
  }

  .legal-list a:hover {
    opacity: 1;
  }

  .footer-copy {
    border-top: 1px solid rgba(255, 255, 255, .25);
    padding-top: clamp(6px, 1vw, 10px);
    font-size: 13px;
    color: #fff;
    text-align: center;
    opacity: .98;
    margin-top: clamp(6px, 1vw, 10px);
  }

  /* Fine-tuning desktop originale */
  .footer-brand .brand-logo {
    margin-left: -12px !important;
    margin-top: clamp(8px, 1.2vw, 14px) !important;
  }

  .footer-brand .brand-name {
    margin-left: 4px;
  }

  .footer-info {
    margin-top: clamp(4px, .8vw, 10px) !important;
  }

  .footer-bottom {
    padding-top: clamp(8px, 1.2vw, 14px) !important;
    padding-bottom: clamp(10px, 1.6vw, 16px) !important;
  }

  .footer-bottom .footer-container {
    padding-left: clamp(4px, 1vw, 12px);
    padding-right: clamp(8px, 1.6vw, 16px);
  }

  /* ===== MOBILE (≤640px) ===== */
  @media (max-width:640px) {

    /* CTA */
    .footer-top {
      padding: 26px 0;
    }

    .cta-title {
      font-size: clamp(22px, 7vw, 32px);
    }

    .cta-subtitle {
      font-size: 13.6px;
      line-height: 1.5;
    }

    .cta-actions {
      gap: 8px;
    }

    .btn {
      padding: 10px 14px;
      font-size: 13.6px;
      border-radius: 9px;
      flex: 1 1 0;
      min-width: 0;
    }

    /* Watermark molto più in basso (solo zona rossa) */
    .footer-watermark {
      opacity: .20;
      width: min(1500px, 140vw);
      bottom: -88px;
      /* <<— spinto più giù: resta SOLO nel rosso */
    }

    /* Nascondi il logo pieno; mostra brand + P. IVA sotto */
    .brand-logo {
      display: none !important;
    }

    .brand-name {
      font-size: 14px;
      margin: 0 0 2px 0;
    }

    .brand-piva {
      display: block;
      font-size: 12.6px;
      font-weight: 700;
      opacity: .95;
      margin-top: 0;
    }

    /* Nascondi il blocco info su mobile */
    .footer-info {
      display: none !important;
    }

    /* Colonne: brand sx, legal dx; link legali più piccoli e meno “pesanti” */
    .footer-cols {
      grid-template-columns: 1fr auto;
    }

    .footer-cols>.footer-brand {
      grid-column: 1/2;
    }

    .footer-cols>.footer-legal {
      grid-column: 2/3;
      justify-self: end;
      text-align: right;
    }

    .footer-legal .legal-list {
      align-items: flex-end;
    }

    .footer-legal .legal-list a {
      font-size: 11.8px;
      font-weight: 600;
      border-bottom: 1px dotted rgba(255, 255, 255, .45);
    }

    .footer-bottom {
      padding: 10px 0 12px !important;
    }

    .footer-container {
      padding-left: clamp(10px, 2.4vw, 16px);
      padding-right: clamp(10px, 2.4vw, 16px);
    }

    .footer-copy {
      font-size: 12.4px;
    }
  }
