/* ── Font: DM Sans (self-hosted) ────────────────────────────── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/dm-sans/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF,U+0304,U+0308,U+0329,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('../fonts/dm-sans/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/* ── Design system ──────────────────────────────────────────── */
:root {
  --y:    #ffd700;
  --yd:   #b8960a;
  --blk:  #000;
  --ink:  #1a1a1a;
  --wht:  #fff;
  --gl:   #f6f6f6;
  --gm:   #e8e8e8;
  --gt:   #767676;
  --r:    14px;
  --rb:   8px;
  --sc:   0 2px 20px rgba(0,0,0,.07);
  --sh:   0 12px 40px rgba(0,0,0,.13);
  --ease: cubic-bezier(.4,0,.2,1);
  --hdr:  108px;
}
/* ── Skip link + screen-reader utility ──────────────────────── */
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 99999;
  width: auto; height: auto;
  clip: auto;
  white-space: normal;
  background: var(--y);
  color: var(--ink);
  padding: 10px 22px;
  border-radius: var(--rb);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.35);
  outline: none;
}

/* ── Global focus indicator (keyboard-only) ─────────────────── */
:focus-visible {
  outline: 2px solid var(--y);
  outline-offset: 2px;
}
:focus:not(:focus-visible) { outline: none; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--wht);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll reveal (stato iniziale — evita FOUC) ────────────── */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .07s; }
.rv.d2 { transition-delay: .14s; }
.rv.d3 { transition-delay: .21s; }
.rv.d4 { transition-delay: .28s; }

/* ── Utility ────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.sl {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink); background: var(--y);
  padding: 5px 12px; border-radius: 4px; margin-bottom: 14px;
}
.st { font-size: clamp(28px,3.5vw,42px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; margin-bottom: 12px; }
.st em { font-style: normal; color: var(--y); }
.ss { font-size: 16px; color: var(--gt); max-width: 540px; line-height: 1.65; }

/* ── Header ─────────────────────────────────────────────────── */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--hdr);
  display: flex; align-items: center;
  padding: 0 40px;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .4s;
}
#hdr.sc { background: rgba(0,0,0,.97); }
.logo { font-size: 21px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -.5px; display: flex; align-items: center; gap: 2px; flex: 1; }
.logo img { height: 72px; width: auto; }
.ly { color: var(--y); }
.ld { width: 6px; height: 6px; background: var(--y); border-radius: 50%; margin: 0 2px; transition: transform .3s; display: inline-block; }
.logo:hover .ld { transform: scale(1.6); }
#hdr nav { display: flex; align-items: center; gap: 28px; }
#hdr nav ul { list-style: none; display: flex; align-items: center; gap: 28px; }
#hdr nav a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 15px; font-weight: 500; position: relative; padding-bottom: 3px; transition: color .25s; }
#hdr nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--y); border-radius: 2px; transition: width .3s var(--ease); }
#hdr nav a:hover, #hdr nav a.act { color: #fff; }
#hdr nav a:hover::after, #hdr nav a.act::after { width: 100%; }
.hdr-right { display:flex; align-items:center; gap:8px; flex:1; justify-content:flex-end; }
.hdr-verifica-wrap { position:relative; display:flex; align-items:center; }
.hdr-verifica-label { position:absolute; top:calc(100% + 4px); right:0; font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.5); white-space:nowrap; pointer-events:none; }
.hdr-verifica { display:flex; align-items:center; gap:0; border:1.5px solid rgba(255,255,255,.15); border-radius:var(--rb); overflow:hidden; height:38px; }
.hdr-verifica-inp { border:none; outline:none; padding:0 12px; font-size:13px; font-family:inherit; width:160px; background:rgba(255,255,255,.08); color:#fff; height:100%; }
.hdr-verifica-inp::placeholder { color:rgba(255,255,255,.4); }
.hdr-verifica-btn { display:flex; align-items:center; gap:6px; background:var(--y); border:none; padding:0 14px; height:100%; font-size:12px; font-weight:700; font-family:inherit; cursor:pointer; color:var(--ink); white-space:nowrap; transition:background .2s; }
.hdr-verifica-btn:hover { background:var(--yd); color:var(--wht); }
#ham { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
#ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s var(--ease); transform-origin: center; }
#ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#ham.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mob { position: fixed; top: var(--hdr); left: 0; right: 0; background: rgba(0,0,0,.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); z-index: 199; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
#mob.open { max-height: 520px; }
.mob-inner { padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 4px; }
.mob-nav { list-style: none; }
.mob-nav li a { display: block; padding: 12px 0; color: rgba(255,255,255,.75); text-decoration: none; font-size: 16px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.07); transition: color .2s; }
.mob-nav li a:hover { color: var(--y); }
.mob-verifica { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.mob-verifica-label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.mob-verifica-form { display: flex; align-items: center; gap: 0; border: 1.5px solid rgba(255,255,255,.2); border-radius: var(--rb); overflow: hidden; height: 42px; }
.mob-verifica-inp { flex: 1; border: none; outline: none; padding: 0 12px; font-size: 14px; font-family: inherit; background: rgba(255,255,255,.08); color: #fff; height: 100%; }
.mob-verifica-inp::placeholder { color: rgba(255,255,255,.4); }
.mob-verifica-btn { display: flex; align-items: center; gap: 6px; background: var(--y); border: none; padding: 0 16px; height: 100%; font-size: 13px; font-weight: 700; font-family: inherit; cursor: pointer; color: var(--ink); white-space: nowrap; }
.site-header { display: none; }
#page { padding-top: var(--hdr); }

/* ── Catalog hero (above fold) ──────────────────────────────── */
#catalog-page { padding-top: 32px; }
.cat-hero { background: var(--blk); padding: 60px 0 56px; color: var(--wht); }
.cat-hero .ss { color: rgba(255,255,255,.65); max-width: 100%; }
.cat-tabs { display: flex; gap: 10px; margin: 0; }
.cat-tab { display: flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 40px; border: 1.5px solid var(--gm); background: var(--wht); font-family: 'DM Sans',sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; color: var(--ink); }
.cat-tab:hover { border-color: var(--y); }
.cat-tab.active { background: var(--y); border-color: var(--y); color: var(--blk); }

/* ── Single: breadcrumb + layout (above fold) ───────────────── */
.breadcrumb { background: var(--gl); border-bottom: 1px solid var(--gm); padding: 12px 0; }
.bc-list { list-style: none; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 13px; color: var(--gt); }
.bc-list a { color: var(--gt); text-decoration: none; transition: color .2s; }
.bc-list a:hover { color: var(--ink); }
.bc-list [aria-current='page'] { color: var(--ink); font-weight: 600; }
.prod-section { padding: 52px 0 64px; }
.prod-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.prod-gallery { position: sticky; top: calc(var(--hdr) + 20px); }
.prod-img-wrap { background: var(--gl); border-radius: var(--r); border: 1px solid var(--gm); display: flex; align-items: center; justify-content: center; padding: 32px; min-height: 340px; overflow: hidden; }
.prod-img { width: 100%; height: auto; object-fit: contain; max-height: 380px; display: block; }
.prod-img-placeholder { background: var(--gl); border-radius: var(--r); border: 1px solid var(--gm); display: flex; align-items: center; justify-content: center; padding: 48px; min-height: 340px; }
.prod-img-placeholder svg { width: 180px; opacity: .6; }
.prod-grade-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: #2e7d32; background: #e8f5e9; padding: 6px 14px; border-radius: 6px; margin-top: 14px; }
.prod-meta-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.pbrand { font-size: 10px; font-weight: 700; color: var(--gt); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.prod-title { font-size: clamp(22px,2.8vw,32px); font-weight: 800; letter-spacing: -.5px; line-height: 1.15; margin-bottom: 14px; }
.prod-price { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 22px; }
.prod-price small { font-size: 12px; font-weight: 400; color: var(--gt); display: block; line-height: 1; margin-bottom: 2px; }
.ba { position: absolute; z-index: 2; top: 10px; right: 10px; background: var(--y); color: var(--blk); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; }
.ba--out { background: var(--gm); color: var(--gt); }

/* ── Hero ───────────────────────────────────────────────────── */
#hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--wht); overflow: hidden; }
.pxbg { position: absolute; inset: -80px; background: radial-gradient(ellipse 60% 55% at 70% 50%, rgba(255,215,0,.18) 0%, transparent 70%), radial-gradient(ellipse 35% 55% at 15% 80%, rgba(255,215,0,.08) 0%, transparent 60%); }
.pxorbs { position: absolute; inset: -80px; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(55px); }
.ob1 { width: 280px; height: 280px; background: var(--y); opacity: .22; top: 8%; right: 8%; }
.ob2 { width: 180px; height: 180px; background: var(--ink); opacity: .03; bottom: 22%; left: 4%; }
.ob3 { width: 140px; height: 140px; background: var(--y); opacity: .12; bottom: 32%; right: 28%; }
.hero-in { position: relative; z-index: 2; display: flex; align-items: stretch; min-height: 100svh; padding: 40px 48px; max-width: 1360px; margin: 0 auto; width: 100%; }
.hbadge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,215,0,.15); border: 1px solid rgba(255,215,0,.35); color: var(--yd); padding: 5px 12px; border-radius: 40px; font-size: 11px; font-weight: 700; margin-bottom: 14px; letter-spacing: .5px; text-transform: uppercase; }
.pulse { width: 7px; height: 7px; background: var(--y); border-radius: 50%; animation: pul 2s ease-in-out infinite; }
@keyframes pul { 0%,100% { box-shadow: 0 0 0 0 rgba(255,215,0,.5); } 50% { box-shadow: 0 0 0 6px rgba(255,215,0,0); } }
.hctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hstats { display: flex; gap: 22px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--gm); }
.stn { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.stn em { color: var(--yd); font-style: normal; }
.stl { font-size: 12px; color: var(--gt); margin-top: 2px; font-weight: 500; }
.hero-vis { position: relative; display: flex; align-items: center; justify-content: center; height: 500px; }
.lpw { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; }
.lpsvg { width: min(420px, 95%); filter: drop-shadow(0 28px 55px rgba(255,215,0,.2)) drop-shadow(0 8px 24px rgba(0,0,0,.12)); animation: fl 5s ease-in-out infinite; will-change: transform; }
@keyframes fl { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
.fchip { position: absolute; z-index: 2; background: rgba(255,255,255,.85); border: 1px solid rgba(0,0,0,.08); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-radius: 10px; padding: 9px 13px; display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.fc1 { top: 12%; left: 0%; animation: fca 5s ease-in-out infinite; }
.fc2 { top: 40%; right: -2%; animation: fca 5.5s ease-in-out infinite .7s; }
.fc3 { bottom: 16%; left: 3%; animation: fca 4.5s ease-in-out infinite 1.3s; }
@keyframes fca { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Hero Showcase ──────────────────────────────────────────── */
.hero-showcase { flex: 1; background: var(--wht); border: 1px solid var(--gm); border-radius: 24px; overflow: hidden; box-shadow: 0 8px 60px rgba(0,0,0,.10); display: grid; grid-template-columns: 340px 1fr; grid-template-rows: 1fr auto; }
.hs-hero-text { grid-column: 1; grid-row: 1; padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; gap: 0; border-right: 1px solid var(--gm); }
.hs-hero-text .hbadge { margin-bottom: 18px; align-self: flex-start; }
.hs-hero-text h1 { font-size: clamp(28px,3vw,44px); font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; color: var(--ink); margin-bottom: 14px; }
.hs-hero-text h1 em { font-style: normal; color: var(--yd); }
.hs-hero-text p { font-size: 14px; color: var(--gt); line-height: 1.65; margin-bottom: 24px; }
.hs-hero-text .hctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hs-tabs { display: flex; position: relative; grid-column: 1 / -1; grid-row: 2; border-top: 1px solid var(--gm); background: var(--gl); flex-shrink: 0; }
.hs-tab { flex: 1; background: none; border: none; color: rgba(0,0,0,.38); padding: 16px 6px; font-size: 11px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; letter-spacing: .6px; text-transform: uppercase; transition: color .25s, background .25s; font-family: inherit; }
.hs-tab:hover { color: rgba(0,0,0,.65); background: rgba(0,0,0,.03); }
.hs-tab.active { color: var(--yd); }
.hs-tab svg { flex-shrink: 0; }
.hs-pbar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(0,0,0,.06); }
.hs-pfill { height: 100%; background: var(--y); width: 0%; }
.hs-panels { grid-column: 2; grid-row: 1; position: relative; overflow: hidden; }
.hs-panel { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity .38s ease, transform .38s ease; pointer-events: none; overflow-y: auto; }
.hs-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.hs-pi { padding: 28px 32px 28px; display: flex; flex-direction: column; gap: 20px; height: 100%; box-sizing: border-box; }
.hs-badges { display: flex; gap: 9px; flex-wrap: wrap; }
.hs-bg-grade { background: rgba(255,215,0,.15); border: 1px solid rgba(255,215,0,.38); color: var(--yd); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; }
.hs-bg-price { background: var(--y); color: var(--ink); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 800; letter-spacing: .3px; }
.hs-bg-tag { background: rgba(0,0,0,.06); color: var(--gt); padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.hs-vis-laptop, .hs-vis-phone { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 0; }
.hs-product-stack { width: min(100%, 680px); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; animation: fl 5s ease-in-out infinite; }
.hs-product-stack--phone { animation-delay: .4s; }
.hs-product-card { width: min(100%, 360px); background: var(--gl); border: 1px solid var(--gm); border-radius: 14px; overflow: hidden; color: inherit; text-decoration: none; display: flex; flex-direction: column; box-shadow: 0 16px 42px rgba(0,0,0,.12); transition: transform .25s, border-color .25s, box-shadow .25s; animation: fl 5s ease-in-out infinite; }
.hs-product-card:hover { color: inherit; transform: translateY(-4px); border-color: rgba(255,215,0,.4); box-shadow: 0 20px 50px rgba(0,0,0,.16); }
.hs-product-media { height: 220px; padding: 20px; background: #fff; display: flex; align-items: center; justify-content: center; }
.hs-product-img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hs-product-img--empty { width: 100%; height: 100%; border-radius: 10px; background: rgba(255,215,0,.12); color: var(--yd); display: flex; align-items: center; justify-content: center; font-size: 42px; font-weight: 800; text-transform: uppercase; }
.hs-product-body { padding: 16px; display: flex; flex-direction: column; gap: 7px; }
.hs-product-brand { color: var(--yd); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-product-name { color: var(--ink); font-size: 17px; line-height: 1.2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hs-product-specs { color: var(--gt); font-size: 11px; line-height: 1.35; min-height: 30px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hs-product-foot { margin-top: 4px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--gt); font-size: 12px; font-weight: 700; }
.hs-product-foot b { color: var(--ink); font-size: 18px; white-space: nowrap; }
.hs-product-empty { width: min(100%, 360px); min-height: 260px; border: 1px dashed var(--gm); border-radius: 14px; display: flex; align-items: center; justify-content: center; padding: 24px; color: var(--gt); font-size: 13px; font-weight: 700; text-align: center; background: var(--gl); }
.hs-specs { display: flex; gap: 10px; flex-wrap: wrap; }
.hs-spec { display: flex; align-items: center; gap: 6px; background: rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.08); color: var(--gt); padding: 7px 12px; border-radius: 8px; font-size: 12px; font-weight: 600; }
.hs-spec svg { width: 13px; height: 13px; }
.hs-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--y); color: var(--ink); padding: 13px 24px; border-radius: 50px; font-size: 14px; font-weight: 800; text-decoration: none; align-self: flex-start; transition: transform .2s, box-shadow .2s; white-space: nowrap; }
.hs-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,215,0,.38); color: var(--ink); }
.hs-cta-wa { background: #25D366; color: #fff; }
.hs-cta-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,.38); color: #fff; }
.hs-svc-pi { gap: 18px; }
.hs-svc-label { font-size: 12px; font-weight: 700; color: var(--gt); text-transform: uppercase; letter-spacing: .6px; }
.hs-svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; flex: 1; }
.hs-svc-card { background: var(--gl); border: 1px solid var(--gm); border-radius: 14px; padding: 22px 20px 18px; display: flex; flex-direction: column; gap: 8px; transition: background .2s, border-color .2s; }
.hs-svc-card:hover { background: rgba(255,215,0,.07); border-color: rgba(255,215,0,.22); }
.hs-svc-card svg { color: var(--y); opacity: .8; flex-shrink: 0; width: 28px; height: 28px; }
.hs-svc-name { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.hs-svc-price { font-size: 13px; font-weight: 800; color: var(--yd); }

/* ── Responsive critical ────────────────────────────────────── */
@media (max-width: 900px) {
  .prod-layout { grid-template-columns: 1fr; gap: 32px; }
  .prod-gallery { position: static; }
}
@media (max-width: 768px) {
  #hdr { padding: 0 20px; }
  #hdr nav { display: none; }
  #ham { display: flex; }
  .hdr-verifica-wrap { display:none; }
  .logo img, .site-logo-img { height: 44px; max-width: 160px; object-fit: contain; }
}
@media (max-width: 480px) {
}
@media (max-width: 1024px) {
  .hero-in { padding: 32px 24px; }
  .hero-showcase { grid-template-columns: 280px 1fr; }
  .hs-hero-text { padding: 36px 28px; }
  .hs-product-card { width: min(100%, 300px); }
  .hs-product-media { height: 170px; }
  .hs-product-body { padding: 12px; }
  .hs-product-name { font-size: 14px; }
  .hs-product-foot b { font-size: 15px; }
}
@media (max-width: 768px) {
  #hero { min-height: auto; }
  .hero-in { padding: 36px 16px 44px; min-height: auto; }
  .hero-showcase { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hs-hero-text { border-right: none; border-bottom: 1px solid var(--gm); padding: 36px 28px; text-align: center; }
  .hs-hero-text .hctas { justify-content: center; }
  .hs-panels { grid-column: 1; grid-row: 2; min-height: auto; overflow: visible; }
  .hs-panel { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; display: none; overflow-y: visible; }
  .hs-panel.active { display: block; }
  .hs-pi { padding: 20px 20px 16px; height: auto; }
  .hs-vis-laptop, .hs-vis-phone { flex: 0 0 auto; align-items: center; justify-content: center; }
  .hs-product-card { width: min(100%, 280px); animation: none; }
  .hs-product-media { height: 150px; }
  .hs-tabs { grid-column: 1; grid-row: 3; }
  .hdr-verifica-wrap { display:none; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 20px; }
  .cat-tabs { flex-direction: column; }
  .prod-section { padding: 32px 0 48px; }
}
@media (max-width: 480px) {
  .hero-in { padding: 30px 10px 36px; }
  .hs-hero-text { padding: 28px 20px; }
  .hs-hero-text h1 { font-size: clamp(24px,8vw,34px); }
}
