:root{
  --bg:#0b0b0d;
  --card:#14141a;
  --text:#f2f2f3;
  --muted:#b6b6bd;
  --line:rgba(255,255,255,.12);
  --radius:16px;

  --topbar-h:120px;
  --accent:#ff6a00;
  
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-brand: "Barlow Condensed", "Poppins", system-ui, sans-serif;

  /* overlay hero */
  --hero-overlay-top:0.14;
  --hero-overlay-bot:0.22;

  /* card hero */
  --hero-box-bg:rgba(10,10,12,.34);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
  padding-top: var(--topbar-h);
}

a{ color:inherit; }

/* contenitore standard */
.wrap{
  max-width:980px;
  margin:0 auto;
  padding:0 18px;
}

/* ===== TOP BAR ===== */
.topbar{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;

  background:rgba(11,11,13,.75);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);

  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 22px;
}

/* logo/link home */
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  line-height:0;
}

.brand__logo{
  height:90px;
  width:auto;
  display:block;
}

/* ===== NAV DESKTOP ===== */
.nav{
  display:flex;
  align-items:center;
  gap:28px;
  margin-left:auto;
}

.nav__link{
  position:relative;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:#ffffff;
  padding-bottom:6px;
  transition:0.3s ease;
}

.nav__link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--accent);
  transition:0.3s ease;
}

.nav__link:hover::after{ width:100%; }

/* ===== HERO ===== */
.hero{
  min-height: calc(100vh - var(--topbar-h));
  padding-top: 90px;          /* â† regola questa */
  display:flex;
  align-items:flex-start;     /* â† fondamentale */
  justify-content:center;

  background:
    linear-gradient(
      rgba(0,0,0,var(--hero-overlay-top)),
      rgba(0,0,0,var(--hero-overlay-bot))
    ),
    url("/assets/img/hero.webp");

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

@supports (height: 100svh){
  .hero{ min-height: calc(100svh - var(--topbar-h)); }
}

.hero__card{
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 30px;

  background: var(--hero-box-bg);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  text-align: left;
}
.hero__card{
  font-family: var(--font-body);
}


/* Titolo OFFADVENTURE */
.hero__title{
  margin: 0 0 10px 0;

  font-family: var(--font-brand);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;

  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 6px;
  transform: skewX(-10deg);

  color: #ffffff;

  display: inline-block;

  text-shadow: 
    0 4px 12px rgba(0,0,0,.35),
    0 12px 40px rgba(0,0,0,.45);
}

.hero__what{
  margin: 0 0 10px 0;
  font-size: clamp(16px, 1.7vw, 18px);
  color: rgba(255,255,255,.92);
  opacity: .95;
}

.hero__tagline{
  margin: 0 0 18px 0;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,.86);
  line-height: 1.3;
}

.hero small{ color:rgba(255,255,255,.75); }

/* ===== BUTTONS ===== */
.hero__actions{
  display:flex;
  justify-content:center;   /* CENTRATI */
  align-items:center;
  gap:18px;
  margin:24px 0 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.2);
  cursor:pointer;
}
.hero__actions .btn{
  width: 200px;            /* larghezza fissa identica */
  padding: 14px 0;
}

.btn--primary{
  background:var(--accent);
  color:#111;
  border:1px solid rgba(255,255,255,.15);
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
}

.btn--ghost{
  background:rgba(255,255,255,.10);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}

/* ===== SEZIONI ===== */
.section{ padding: 36px 0; }

.section__inner{
  max-width:980px;
  margin:0 auto;
  padding:0 18px;
}

/* Contatti */

.section--contacts{
  background:#000;
  padding:80px 20px;
}

.contact-card{
  max-width:1200px;
  margin:0 auto;
  padding:40px 60px;

  background:#11141c;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
}

.contact-card h2{
  margin:0 0 30px;

  font-size:28px;
  font-weight:600;
  letter-spacing:1px;

  text-transform:uppercase;
}

/* griglia contatti */

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

/* singolo contatto */

.contact-item span{
  display:block;
  font-size:13px;
  color:var(--muted);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:1px;
}

.contact-item a{
  font-size:16px;
  color:#fff;
  text-decoration:none;
}

.contact-item a:hover{
  text-decoration:underline;
}

/* mobile */

@media (max-width:700px){

  .contact-card{
    padding:30px 24px;
  }

  .contact-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

}
/* ===== LISTA PRODOTTI ===== */
.product-list{
  display:grid;
  gap:14px;
}

.product-card{
  display:grid;
  grid-template-columns: 240px 1fr;
  gap:16px;
  padding:16px;

  border-radius:18px;
  background: rgba(20,20,25,.7);
  border: 1px solid rgba(255,255,255,.08);

  text-decoration:none;
  color:inherit;
}

.product-card__img{
  width:100%;
  height:160px;
  object-fit:cover;
  border-radius:14px;
}

.product-card__body h3{
  margin:0;
  font-size:26px;
  font-weight:700;
  line-height:1.2;
}

.product-card__body p{
  margin-top:18px;
  font-size:16px;
  color:var(--muted);
  line-height:1.4;
}

/* =========================================================
   DETTAGLIO PRODOTTO â€” APPLE x OVERLANDING MINIMAL STYLE
   ========================================================= */

/*.detail-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:32px;
}*/

.detail-title{
  margin:0;
  font-size: clamp(42px, 6vw, 64px);
  font-weight:800;
  letter-spacing:-1px;
  line-height:1.05;
}

.detail-back{
  white-space:nowrap;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:10px 16px;
}

/* ===== HERO IMAGE ===== */

.detail-hero{
  margin: 20px 0 50px;
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.06);
}

.detail-hero__img{
  width:100%;
  height: min(60vh, 560px);
  object-fit: cover;
  display:block;
  cursor: zoom-in;
}

/* ===== DESCRIZIONE ===== */

.detail-desc{
  margin-top:70px;
  padding:0;
  background:none;
  border:none;
  box-shadow:none;
  max-width:820px;
}

.detail-desc h2{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:600;
  opacity:.45;
  margin-bottom:40px;
}

.detail-desc p{
  font-size:20px;
  line-height:1.7;
  font-weight:500;
  margin:14px 0;
  color:rgba(255,255,255,.92);
}

/* crea separazione naturale */
.detail-desc p + p{
  margin-top:20px;
}

/* blocchi tecnici (se usi strong nel testo) */
.detail-desc strong{
  display:block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  opacity:.45;
  margin-top:50px;
}

/* ===== ACCESSORI ===== */

.included{
  margin-top:70px;
  max-width:820px;
}

.included li{
  list-style:none;
  margin:18px 0;
  font-size:19px;
  opacity:.88;
  position:relative;
  padding-left:26px;
}

/* âœ… aggiornato: pallino piÃ¹ â€œpremiumâ€ e sempre centrato sul testo */
.included li:before{
  content:"";
  position:absolute;
  left:0;
  top:0.72em;
  transform: translateY(-50%);
  width:10px;
  height:10px;
  border-radius:50%;
  background: linear-gradient(145deg,#ff7a00,#ff3c00);
  box-shadow: 0 0 0 3px rgba(255,106,0,.18);
}

/* ===== STRIP GALLERIA ===== */

.detail-strip{
  margin-top:60px;
}

.detail-strip h3{
  font-size:20px;
  text-transform:uppercase;
  letter-spacing:3px;
  opacity:.45;
  margin-bottom:18px;
}

.strip__img{
  width:400px;
  height:280px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
}

/* ===== CTA ===== */

.detail-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:60px;
}
/* RULLINO */
.strip{
  display:flex;
  flex-direction: row;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  padding: 6px 10px 10px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar{ display:none; }

.strip__item{
  flex: 0 0 auto;
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  scroll-snap-align:start;
}

.strip__img{
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  display:block;
}

/* CTA fondo */
.detail-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  z-index:2000;
}
.lightbox.is-open{ display:block; }

.lightbox__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.75);
}

.lightbox__content{
  position:absolute;
  inset: 20px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.lightbox__img{
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.15);
  background:#000;
}

.lightbox__close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 28px;
  line-height: 1;
  cursor:pointer;
}

.lightbox__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.35);
  color:#fff;
  font-size: 34px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox__nav--prev{ left: 10px; }
.lightbox__nav--next{ right: 10px; }

/* Fade laterale sul rullino */
.strip-fade{ position: relative; }
.strip-fade::before,
.strip-fade::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:44px;
  pointer-events:none;
  z-index:5;
}
.strip-fade::before{
  left:0;
  background: linear-gradient(to right, rgba(11,11,13,1), rgba(11,11,13,0));
}
.strip-fade::after{
  right:0;
  background: linear-gradient(to left, rgba(11,11,13,1), rgba(11,11,13,0));
}

/* ===== BUY MODAL ===== */
.buy-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:2500;
}
.buy-modal.is-open{ display:block; }

.buy-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.70);
}

.buy-modal__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(900px, 92vw);
  height:min(75vh, 720px);
  background: rgba(20,20,26,.92);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.buy-modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.buy-modal__title{ margin:0; font-size:26px; }

.buy-modal__close{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.30);
  color:#fff;
  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.buy-modal__hint{ margin:0; color:rgba(255,255,255,.80); }

.buy-modal__view{ display:none; flex:1; }
.buy-modal__view.is-active{ display:block; }

.buy-modal__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:12px;
}

.buy-tile{
  display:block;
  text-decoration:none;
  color:inherit;
  padding:16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  cursor:pointer;
}
.buy-tile:hover{
  border-color: rgba(255,255,255,.20);
  background: rgba(0,0,0,.30);
}

.buy-tile--button{ width:100%; text-align:left; }

.buy-tile__title{ font-weight:800; font-size:18px; margin-bottom:4px; }
.buy-tile__sub{ color:rgba(255,255,255,.70); font-size:14px; }

.buy-mail{
  height:100%;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.buy-mail__back{
  align-self:flex-end;
  border-radius:12px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(0,0,0,.25);
  color:#fff;
  cursor:pointer;
}

.buy-mail__form{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.buy-mail__label{ font-weight:700; }

.buy-mail__input,
.buy-mail__textarea{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color:#fff;
  padding:12px 12px;
  outline:none;
}

.buy-mail__textarea{ resize:vertical; }

.buy-mail__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}

.buy-mail__note{
  margin:6px 0 0;
  color:rgba(255,255,255,.62);
  font-size:13px;
}

/* ===== REVEAL FADE ===== */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease, transform 900ms ease;
}
.reveal.active{
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE (tablet) ===== */
@media (max-width: 900px){
  :root{ --topbar-h:72px; }
  .brand__logo{ height:44px; }

  .nav{ gap:18px; }
  .nav__link{ font-size:13px; }

  .hero{
    padding: 50px 0 28px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    background-position:center top;
  }

  .hero__card{
    padding: 20px 18px;
    background: rgba(10,10,12,.22);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
  }

  .product-card{ grid-template-columns: 1fr; }
  .product-card__img{ height:180px; }

  .detail-hero__img{ height: min(44vh, 360px); }
  .strip__img{ width: 168px; height: 120px; }

  .detail-desc{
    padding: 16px;
    border-radius: 16px;
  }

  .included li{
    font-size:16px;
  }
}

/* iPhone 14 Pro / schermi piccoli */
@media (max-width: 430px){

  .hero__card{
    text-align: center;
  }

  .hero__title{
    text-align: center;
    margin-bottom: 12px;
  }

  .hero__what{
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .5px;
    line-height: 1.25;
    text-transform: uppercase;
    color: rgba(255,255,255,.88);
    margin: 0 auto 14px;
    max-width: 340px;
  }

  .hero__what{
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__tagline{
    text-align: center;
    font-size: 20px;
    margin-bottom: 18px;
  }

  .hero__cta{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero__cta .btn{
    width: 100%;
    max-width: 320px;
  }
}

/* Solo Safari iOS */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 430px){
    .hero__card{
      margin-top: 16px;
    }
  }
}

/* ===== HAMBURGER (mobile) ===== */
.nav__toggle{
  display:none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  width: 46px;
  height: 42px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#fff;
}

.nav__toggle-lines{
  position: relative;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.90);
  display:block;
  border-radius: 2px;
}
.nav__toggle-lines::before,
.nav__toggle-lines::after{
  content:"";
  position:absolute;
  left:0;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,.90);
  border-radius: 2px;
  transition: transform .22s ease, top .22s ease, opacity .22s ease;
}
.nav__toggle-lines::before{ top:-6px; }
.nav__toggle-lines::after{ top: 6px; }

body.nav-open .nav__toggle-lines{ background: transparent; }
body.nav-open .nav__toggle-lines::before{ top:0; transform: rotate(45deg); }
body.nav-open .nav__toggle-lines::after{ top:0; transform: rotate(-45deg); }

/* overlay: definito UNA SOLA VOLTA */
.nav__overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
  z-index: 900;
}

/* MOBILE layout */
@media (max-width: 768px){
  .nav__toggle{ display:inline-flex; }

  .nav{
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--topbar-h) - 8px);
    z-index: 1100;

    display: grid;
    gap: 10px;
    margin: 0;
    padding: 14px;

    background: rgba(11,11,13,.92);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    box-shadow: 0 18px 60px rgba(0,0,0,.55);

    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  body.nav-open .nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__link{
    padding: 12px 10px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    font-size: 14px;
    letter-spacing: 1px;
  }

  .nav__link:hover{
    color: var(--accent);
    border-color: rgba(255,106,0,.35);
    background: rgba(255,106,0,.10);
  }

  body.nav-open .nav__overlay{
    opacity: 1;
    pointer-events: auto;
  }
}

/* Fix logo box (soprattutto nelle pagine prodotti) */
.topbar .brand{
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.topbar .brand__logo{
  background: transparent !important;
  display: block;
  border: 0 !important;
  box-shadow: none !important;
}

/* ================================
   PRODUCT DESCRIPTION â€” MINIMAL/TECH
   (Intro + Specs + Accessories)
   ================================ */

.detail-desc{
  margin-top: 26px;
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(14,14,18,.55);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 70px rgba(0,0,0,.40);
}

.detail-desc h3{
  margin: 0 0 12px 0;
  font-size: 12px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
  font-weight: 700;
}

.detail-intro p{
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.92);
  font-weight: 500;
}

.detail-specs,
.detail-accessories{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.detail-specs ul,
.detail-accessories ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-specs li{
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255,255,255,.86);
}

.detail-specs li:last-child{
  border-bottom: 0;
}

.detail-accessories li{
  position: relative;
  padding: 10px 0 10px 18px;
  font-size: 16px;
  line-height: 1.35;
  color: rgba(255,255,255,.86);
}

.detail-accessories li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,106,0,.18);
}

@media (max-width: 768px){
  .detail-desc{
    padding: 18px 14px;
    border-radius: 18px;
  }

  .detail-intro p{
    font-size: 17px;
  }

  .detail-specs li,
  .detail-accessories li{
    font-size: 15px;
  }
}

/* ===== ELENCO PUNTATO OFFADVENTURE (SPECIFICHE) ===== */
.feature-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
}

.feature-list li{
  position:relative;
  padding-left:26px;
  margin:14px 0;
  font-size:16px;
  line-height:1.45;
  color: rgba(255,255,255,.86);
}

.feature-list li::before{
  content:'';
  position:absolute;
  left:0;
  top:0.72em;
  transform: translateY(-50%);
  width:10px;
  height:10px;
  border-radius:50%;
  background: linear-gradient(145deg,#ff7a00,#ff3c00);
  box-shadow: 0 0 0 3px rgba(255,106,0,.18);
}

/* =========================
   TITOLI SEZIONI (piÃ¹ grandi)
   ========================= */
.detail-desc h2{
  font-size: 20px;            /* prima era piccolo */
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .55;
  margin: 26px 0 16px;
}

/* =========================
   LISTA SPECIFICHE (pallini)
   ========================= */
.feature-list{
  margin: 14px 0 0;
}

.feature-list li{
  font-size: 17px;            /* piÃ¹ grande */
  line-height: 1.55;
  margin: 16px 0;             /* piÃ¹ aria */
}

/* =========================
   ACCESSORI INCLUSI (spunta verde)
   piÃ¹ spaziatura + piÃ¹ grande
   ========================= */
.accessories-list{
  margin: 14px 0 0;
}

.accessories-list li{
  font-size: 17px;            /* piÃ¹ grande */
  line-height: 1.6;
  margin: 14px 0;             /* piÃ¹ spazio tra le righe */
  padding-left: 32px;         /* piÃ¹ respiro vicino alla spunta */
}

.accessories-list li::before{
  width: 20px;
  height: 20px;
  font-size: 12px;
}



/* =========================
   HERO MASTER (ultima parola)
   ========================= */
.hero__card{
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 34px;
  text-align: center;

  background: var(--hero-box-bg);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.hero__actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  margin-top:28px;
  flex-wrap: nowrap;
 
}

.hero__actions .btn{
  flex: 1 1 0;
  min-width: 0;
  max-width: 240px;
  padding: 14px 16px;
  font-size: 16px;
  justify-content: center;
  font-family: var(--font-body); }
  
  @media (max-width: 430px){
  .hero__actions .btn{
    font-size: 14px;
    padding: 13px 14px;
    white-space: nowrap;
  }
}

/* =========================
   HERO â€” riga con i puntini (MASTER)
   ========================= */
.hero__what{
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;

  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;

  line-height: 1.3;

  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
@media (max-width: 430px){

  .hero__what{
    font-size: 14px;          /* leggermente piÃ¹ piccolo */
    letter-spacing: 1px;      /* meno spazio = meno rotture */
    white-space: normal;
  }

  /* blocca la rottura tra le prime due parti */
  .hero__what{
    word-spacing: 2px;
  }

}

/* =========================
   PRODOTTI â€” MASTER (stile HOME)
   ========================= */

/* Titolo pagina */
.section__inner > h1{
  font-family: var(--font-brand, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
  text-transform: uppercase;
  letter-spacing: 11px;
  font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  margin: 18px 0 22px;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}

/* Layout lista */
.product-list{
  display: grid;
  gap: 18px;
}

/* Card prodotto: premium glass */
.product-card{
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;

  padding: 18px;
  border-radius: 22px;
  letter-spacing: 2px;

  background: rgba(20,20,26,.58);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  text-decoration: none;
  color: inherit;

  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

@media (hover:hover) and (pointer:fine){
  .product-card:hover{
    transform: translateY(-2px);
    border-color: rgba(255,106,0,.28);
    background: rgba(20,20,26,.68);
  }
}

/* Immagine */
.product-card__img{
  width: 100%;
  height: 175px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  display: block;
}

/* Titolo prodotto: brand */
.product-card__body h3{
  margin: 2px 0 8px;
  font-family: var(--font-brand, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 28px;
  line-height: 1.1;
}

/* Sottotitolo: body */
.product-card__body p{
  margin: 0;
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
}

/* Responsive */
@media (max-width: 900px){
  .product-card{
    grid-template-columns: 1fr;
    padding: 16px;
    border-radius: 18px;
  }

  .product-card__img{
    height: 190px;
    border-radius: 16px;
  }

  .product-card__body h3{
    font-size: 24px;
    letter-spacing: 6px;
  }
}
/* =========================================
   SCHEDA PRODOTTO â€” SOLO titolo + breve descrizione
   (NON tocca la pagina "Tutti i prodotti")
   ========================================= */

.detail .detail-title{
  font-family: var(--font-brand, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif) !important;
  font-weight: 1100 !important;
  text-transform: uppercase;
  letter-spacing: 10px;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.detail .detail-short{
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif) !important;
  font-size: 24px;
  line-height: 1.5;
  color: rgba(255,255,255,.75);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

/* Mobile (opzionale, solo se vuoi leggermente piÃ¹ compatto) */
@media (max-width: 900px){
  .detail .detail-title{
    letter-spacing: 1.4px;
  }
  .detail .detail-short{
    font-size: 15px;
  }
}

/* =========================
   PRODOTTO â€” BACK BUTTON (MASTER)
   ========================= */
.detail-top{
  display:flex;
  flex-direction: row;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
  margin: 18px 0 18px;
}

.detail-title{ flex:1; }

.detail-back{
  align-self:flex-start;
  margin-top: 10px;      /* per allinearla visivamente col titolo grande */
  white-space: nowrap;
}
.detail-back{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

@media (hover:hover) and (pointer:fine){
  .detail-back:hover{
    transform: translateY(-1px);
    border-color: rgba(255,106,0,.35);
    background: rgba(255,106,0,.10);
  }
}
/* =========================
   PRODUCT PAGE â€” BUTTONS (MASTER)
   - stesso font del "Torna"
   - CTA un filo piÃ¹ grandi
   ========================= */

/* Bottone "â† Torna" */
.detail-back{
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 14px;
}

/* CTA Acquista / Noleggia */
.detail-cta .btn{
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;

  font-size: 15px;
  padding: 13px 16px;
  border-radius: 14px;
  min-height: 46px;
}

/* CTA sempre affiancati (anche mobile) */
.detail-cta{
  display:flex;
  gap:12px;
  flex-wrap:nowrap;
}

.detail-cta .btn{
  flex:1;
  justify-content:center;
  white-space: nowrap;
}

/* Mobile: un pelo piÃ¹ compatti */
@media (max-width: 768px){
  .detail-cta .btn{
    font-size: 14px;
    padding: 12px 14px;
    min-height: 44px;
  }
}


/* =========================
   NOLEGGIO â€” PAGE STYLES (MASTER / iPhone SAFE)
   ========================= */

.rental-head{
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(20,20,26,.58);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 0 18px 0;
}

.rental-head > h1{
  margin: 0 0 12px;
  font-family: var(--font-brand, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  text-shadow: 0 10px 28px rgba(0,0,0,.45);
}

.rental-lead{
  margin: 0 0 12px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.70;
  max-width: 78ch;
}

.rental-text{
  margin: 0 0 12px;
  color: rgba(255,255,255,.80);
  font-size: 16.5px;
  line-height: 1.70;
  max-width: 78ch;
}

/* CTA: 3 bottoni in riga (anche iPhone) */
.rental-cta{
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  align-items: center;
}

.rental-cta .btn{
  flex: 1 1 0;
  min-width: 0;             /* fix Safari iOS */
  justify-content: center;
  white-space: nowrap;
  font-family: var(--font-body, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif);
}

.rental-cta__hint{
  margin: 10px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.5;
}

/* Sezioni: verticali sempre */
.rental-sections{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rental-block,
.rental-final{
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(20,20,26,.58);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0;
}

.rental-block h2,
.rental-final h2{
  margin: 0 0 12px;
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255,255,255,.78);
}

/* Prezzi: 2 su PC, 1 su mobile */
.rental-pricing{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.rental-price-card{
  padding: 16px;
  border-radius: 18px;
  background: rgba(14,14,18,.55);
  border: 1px solid rgba(255,255,255,.10);
}

.rental-price-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rental-badge{
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
}

.rental-badge--hot{
  background: rgba(255,106,0,.12);
  border-color: rgba(255,106,0,.25);
}

.rental-price{
  font-weight: 900;
  font-size: 30px;
  letter-spacing: .5px;
}

.rental-price span{
  font-size: 12px;
  opacity: .70;
  margin-left: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rental-note{
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.6;
  max-width: 78ch;
}

.rental-final p{
  margin: 8px 0 12px;
  color: rgba(255,255,255,.78);
  max-width: 78ch;
}

/* Hover desktop */
@media (hover:hover) and (pointer:fine){
  .rental-block:hover{
    transform: translateY(-2px);
    border-color: rgba(255,106,0,.28);
    background: rgba(20,20,26,.68);
  }
}

/* Mobile */
@media (max-width: 900px){
  .rental-pricing{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px){
  .rental-cta{
    gap: 10px;
  }
  .rental-cta .btn{
    font-size: 13px;
    padding: 12px 10px;
  }
}
/* ===== DETTAGLIO PRODOTTO: larghezza coerente ===== */

.detail{
  max-width: 1500px;
  margin: 0 auto;
}

.detail-hero,
.detail-desc,
.detail-strip{
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}


/* ===== PREZZO ===== */

.detail-price{
  margin-top: 30px;
}

.detail-price__btn{
  min-width: 220px;
  padding: 16px 22px;
  font-size: 22px;
  font-weight: 800;
  border-radius: 14px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
}

.detail-price__btn::before{
  content: "PREZZO";
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  opacity: .7;
  margin-bottom: 6px;
}
.detail-hero__btn{
  border: none;
  padding: 0;
  background: none;
  cursor: zoom-in;
  display: block;
}
.detail-hero{
  width:100%;
}

.detail-hero__btn{
  width:100%;
  display:block;
}

/* ===== FOOTER ===== */
.site-footer{
  background:#000;
  color:var(--muted);
  text-align:center;
  padding:40px 20px;
  font-size:14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-content{
  max-width:900px;
  margin:0 auto;
}

.footer-brand{
  margin:0 0 8px;
  font-weight:600;
  color:rgba(255,255,255,.82);
}

.footer-desc,
.footer-contact,
.footer-social{
  margin:0 0 12px;
  line-height:1.8;
}

.footer-social{ margin-bottom:0; }

.site-footer a{
  color:#fff;
  text-decoration:none;
  transition:color .2s ease, opacity .2s ease;
}

.site-footer a:hover{
  color:var(--accent);
  text-decoration:underline;
}

/* ===== PRIVACY POLICY ===== */
.legal-page{
  background:#000;
  padding:80px 0;
}

.legal-page__inner{ max-width:860px; }

.legal-page h1{
  margin:0 0 28px;
  font-family:var(--font-brand);
  font-size:clamp(42px, 6vw, 68px);
  text-transform:uppercase;
  letter-spacing:3px;
}

.legal-page h2{
  margin:36px 0 10px;
  font-size:18px;
  text-transform:uppercase;
  letter-spacing:1.4px;
  color:#fff;
}

.legal-page p{
  margin:0 0 14px;
  color:rgba(255,255,255,.82);
  font-size:18px;
  line-height:1.7;
}

.legal-page a{ color:var(--accent); }

/* ===== ABOUT / FILOSOFIA ===== */
.section--about{
  background:linear-gradient(180deg, #000 0%, #070707 100%);
  padding:110px 20px;
  border-top:1px solid rgba(255,255,255,.08);
  font-family:var(--font-body);
}

.section--about .about-panel{
  width:min(980px, calc(100% - 40px));
  margin:0 auto;
  padding:48px 52px;
  border-radius:22px;
  background:rgba(20,20,26,.62);
  border:1px solid rgba(255,255,255,.10);
  box-shadow:0 24px 80px rgba(0,0,0,.48);
  font-family:var(--font-body);
}

.section--about .about-kicker{
  margin:0 0 14px;
  color:var(--accent);
  font-family:var(--font-body);
  font-size:18px;
  font-weight:900;
  letter-spacing:2.4px;
  text-transform:uppercase;
}

.section--about .about-panel h2{
  margin:0 0 30px;
  max-width:760px;
  font-family:var(--font-brand);
  font-size:clamp(42px, 5vw, 72px);
  line-height:.95;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#fff;
}

.section--about .about-copy{
  max-width:760px;
  font-family:var(--font-body);
}

.section--about .about-copy p{
  margin:0 0 18px;
  max-width:none;
  color:rgba(255,255,255,.78);
  font-family:var(--font-body);
  font-size:19px;
  line-height:1.72;
}

.section--about .about-copy .about-lead{
  color:#fff;
  font-family:var(--font-body);
  font-size:22px;
  font-weight:800;
}

.section--about .about-copy blockquote{
  margin:34px 0;
  padding:22px 26px;
  border-left:4px solid var(--accent);
  background:rgba(255,106,0,.08);
  color:#fff;
  font-family:var(--font-body);
  font-size:24px;
  line-height:1.45;
  font-weight:800;
}

.section--about .about-closing{
  color:#fff;
  font-family:var(--font-body);
  font-weight:800;
}

@media (max-width:768px){
  .site-footer{
    padding:32px 16px;
    font-size:13px;
  }

  .legal-page{ padding:56px 0; }
  .legal-page p{ font-size:16px; }

  .section--about{
    padding:70px 16px;
  }

  .section--about .about-panel{
    width:100%;
    padding:32px 22px;
    border-radius:18px;
  }

  .section--about .about-panel h2{
    font-size:clamp(36px, 12vw, 54px);
  }

  .section--about .about-copy p{
    font-size:16px;
    line-height:1.65;
  }

  .section--about .about-copy blockquote{
    padding:18px;
    font-size:20px;
  }
}
/* ===== NOLEGGIO - RITOCCHI PAGINA ===== */
.section--rental{
  padding-top:56px;
}

.rental-kicker{
  margin:0 0 14px;
  color:var(--accent);
  font-size:14px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
}

.rental-head--hero{
  padding:34px 30px;
}

.rental-head--hero h1{
  max-width:820px;
  font-size:clamp(42px, 6vw, 78px);
  line-height:.92;
  letter-spacing:3px;
}

.rental-block--highlight{
  border-color:rgba(255,106,0,.28);
  background:linear-gradient(135deg, rgba(255,106,0,.10), rgba(20,20,26,.62));
}

.section--rental a:not(.btn){
  color:var(--accent);
  font-weight:800;
  text-decoration:none;
}

.section--rental a:not(.btn):hover{
  text-decoration:underline;
}

@media (max-width:700px){
  .rental-head--hero{
    padding:26px 20px;
  }

  .rental-head--hero h1{
    font-size:clamp(36px, 12vw, 54px);
  }
}