/* ============================================================
   ariadicasa.css — Design system del sito statico
   Versione: 2.1.0 — "Finestra appannata"
   Basato su ariadicasa_products/Resources/Public/Css/ariadicasa.css
   (v2.0.0), con l'aggiunta del menu mobile a comparsa (hamburger)
   che nella v2.0.0 mancava sotto i 600px.
   I font (Fraunces, Karla) si caricano da <link> nell'head di ogni
   pagina, non via @import qui dentro: evita un round-trip di rete
   in più e blocca meno il rendering. In TYPO3, self-hosted.
   ============================================================ */

/* ===================== DESIGN TOKENS ===================== */
:root {
  --bg:          #EEE1CC;
  --surface:     #FBF5EA;
  --surface-2:   #F5EBD9;
  --ink:         #241C15;
  --ink-mid:     #5B4D3E;
  --ink-light:   #8C7C68;
  --line:        #E0D0B8;
  --line-strong: #CBB99E;

  --mist:        #4B7686;
  --mist-deep:   #335663;
  --mist-pale:   #E1EBEC;
  --mist-ink:    #FFFFFF;

  --honey:       #B87423;
  --honey-pale:  #F5E6C8;
  --honey-ink:   #2B1B04;

  --moss:        #5F7248;
  --moss-pale:   #E7ECDD;
  --clay:        #A8492E;
  --clay-pale:   #F3E1D8;

  --amazon:      #FF9900;
  --amazon-ink:  #241C15;

  --serif:       'Fraunces', Georgia, serif;
  --sans:        'Karla', system-ui, sans-serif;
  --r-sm:        4px;
  --r-md:        10px;
  --r-lg:        18px;
  --max:         1140px;
  --col:         clamp(1.1rem, 4vw, 3rem);
  --transition:  0.16s ease;

  --shadow-rest: 0 1px 2px rgba(36,28,21,0.06), 0 10px 24px -14px rgba(36,28,21,0.28);
  --shadow-lift: 0 4px 10px rgba(36,28,21,0.08), 0 20px 36px -16px rgba(36,28,21,0.32);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1B1611; --surface: #241D16; --surface-2: #2C241B;
    --ink: #F1E7D6; --ink-mid: #C9BAA3; --ink-light: #8F8065;
    --line: #3A3024; --line-strong: #4B3F2F;
    --mist: #86ADBB; --mist-deep: #A9CAD5; --mist-pale: #263539; --mist-ink: #0E1A1D;
    --honey: #E3A54D; --honey-pale: #3B2C12; --honey-ink: #1C1204;
    --moss: #9BAE80; --moss-pale: #26301B; --clay: #E08F6C; --clay-pale: #3A2018;
    --shadow-rest: 0 1px 2px rgba(0,0,0,0.35), 0 10px 24px -14px rgba(0,0,0,0.5);
    --shadow-lift: 0 4px 10px rgba(0,0,0,0.4), 0 20px 36px -16px rgba(0,0,0,0.6);
  }
}
:root[data-theme="dark"] {
  --bg: #1B1611; --surface: #241D16; --surface-2: #2C241B;
  --ink: #F1E7D6; --ink-mid: #C9BAA3; --ink-light: #8F8065;
  --line: #3A3024; --line-strong: #4B3F2F;
  --mist: #86ADBB; --mist-deep: #A9CAD5; --mist-pale: #263539; --mist-ink: #0E1A1D;
  --honey: #E3A54D; --honey-pale: #3B2C12; --honey-ink: #1C1204;
  --moss: #9BAE80; --moss-pale: #26301B; --clay: #E08F6C; --clay-pale: #3A2018;
  --shadow-rest: 0 1px 2px rgba(0,0,0,0.35), 0 10px 24px -14px rgba(0,0,0,0.5);
  --shadow-lift: 0 4px 10px rgba(0,0,0,0.4), 0 20px 36px -16px rgba(0,0,0,0.6);
}
:root[data-theme="light"] {
  --bg: #EEE1CC; --surface: #FBF5EA; --surface-2: #F5EBD9;
  --ink: #241C15; --ink-mid: #5B4D3E; --ink-light: #8C7C68;
  --line: #E0D0B8; --line-strong: #CBB99E;
  --mist: #4B7686; --mist-deep: #335663; --mist-pale: #E1EBEC; --mist-ink: #FFFFFF;
  --honey: #B87423; --honey-pale: #F5E6C8; --honey-ink: #2B1B04;
  --moss: #5F7248; --moss-pale: #E7ECDD; --clay: #A8492E; --clay-pale: #F3E1D8;
  --shadow-rest: 0 1px 2px rgba(36,28,21,0.06), 0 10px 24px -14px rgba(36,28,21,0.28);
  --shadow-lift: 0 4px 10px rgba(36,28,21,0.08), 0 20px 36px -16px rgba(36,28,21,0.32);
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--mist); outline-offset: 2px; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===================== LAYOUT ===================== */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--col);
}
.section        { padding: 4.5rem 0; }
.section--tight { padding: 2.75rem 0; }
.section--wide  { padding: 6rem 0; }
.divider        { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong) 15%, var(--line-strong) 85%, transparent); }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.75rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.25rem; }

/* ===================== TYPOGRAPHY ===================== */
.display {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.headline {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  text-wrap: balance;
}
.eyebrow, .section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist-deep);
}
.lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 62ch;
}

/* ===================== ICONS =====================
   Sprite SVG <symbol> inline in cima al <body> di ogni pagina.
   Uso: <svg class="ic"><use href="#ic-nome"/></svg> */
.ic { width: 20px; height: 20px; flex-shrink: 0; }
.ic use { fill: none; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.5rem;
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
}
.btn--primary   { background: var(--mist); color: var(--mist-ink); }
.btn--primary:hover  { background: var(--mist-deep); transform: translateY(-1px); }
.btn--outline   { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--outline:hover  { border-color: var(--mist); color: var(--mist-deep); }
.btn--amazon    { background: var(--amazon); color: var(--amazon-ink); }
.btn--amazon:hover   { filter: brightness(0.94); transform: translateY(-1px); }
.btn--ghost     { background: transparent; color: var(--ink-mid); border-color: var(--line-strong); font-size: 0.82rem; padding: 0.55rem 1rem; }
.btn--ghost:hover    { border-color: var(--ink-light); }
.btn--full      { width: 100%; justify-content: center; padding: 0.95rem; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--col);
}
.navbar__logo        { display: flex; align-items: center; gap: 9px; }
.navbar__logo-icon   { width: 34px; height: 34px; background: var(--mist); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.navbar__logo-icon .ic { width: 19px; height: 19px; }
.navbar__logo-icon .ic use { stroke: var(--mist-ink); stroke-width: 1.7; }
.navbar__brand       { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; color: var(--ink); }
.navbar__brand em    { font-style: italic; color: var(--mist-deep); }
.navbar__nav         { display: flex; align-items: center; gap: 1.9rem; }
.navbar__nav a       { font-size: 0.87rem; font-weight: 500; color: var(--ink-mid); transition: color var(--transition); }
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--mist-deep); }
.navbar__cta         { margin-left: 1rem; display: flex; align-items: center; gap: 0.75rem; }

/* ---- Hamburger toggle (solo mobile) ---- */
.navbar__burger {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--surface);
  align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.navbar__burger-icon,
.navbar__burger-icon::before,
.navbar__burger-icon::after {
  display: block;
  width: 17px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
  position: relative;
}
.navbar__burger-icon::before, .navbar__burger-icon::after { content: ''; position: absolute; left: 0; }
.navbar__burger-icon::before { top: -6px; }
.navbar__burger-icon::after  { top: 6px; }
.navbar.is-open .navbar__burger-icon { background: transparent; }
.navbar.is-open .navbar__burger-icon::before { top: 0; transform: rotate(45deg); }
.navbar.is-open .navbar__burger-icon::after  { top: 0; transform: rotate(-45deg); }

/* ---- Mobile nav drawer ---- */
.navbar__mobile-panel {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem var(--col) 1.25rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.navbar__mobile-panel a {
  padding: 0.75rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--line);
}
.navbar__mobile-panel a:last-of-type { border-bottom: none; }
.navbar__mobile-panel a.active { color: var(--mist-deep); font-weight: 700; }
.navbar__mobile-panel .btn { margin-top: 0.5rem; }
.navbar.is-open .navbar__mobile-panel { display: flex; }

/* ===================== BREADCRUMB ===================== */
.breadcrumb          { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--ink-light); padding: 1rem 0; flex-wrap: wrap; }
.breadcrumb a        { color: var(--ink-light); transition: color var(--transition); }
.breadcrumb a:hover  { color: var(--mist-deep); }
.breadcrumb__sep     { color: var(--line-strong); font-size: 10px; }
.breadcrumb__current { color: var(--ink-mid); font-weight: 600; }

/* ===================== BADGES & PILLS ===================== */
.badge       { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.03em; padding: 3px 9px; border-radius: 5px; text-transform: uppercase; display: inline-block; }
.badge--top  { background: var(--mist); color: var(--mist-ink); }
.badge--warn { background: var(--honey-pale); color: var(--honey-ink); }
.badge--new  { background: var(--moss-pale); color: var(--moss); }
.badge--sand { background: var(--surface-2); color: var(--ink-mid); border: 1px solid var(--line); }
.badge--red  { background: var(--clay-pale); color: var(--clay); }

.spec-pill {
  font-size: 0.72rem;
  background: var(--surface-2);
  color: var(--ink-mid);
  padding: 4px 10px 4px 8px;
  border-radius: 99px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-variant-numeric: tabular-nums;
}
.spec-pill .ic { width: 13px; height: 13px; }
.spec-pill .ic use { stroke: var(--mist-deep); stroke-width: 1.8; }

/* ===================== ALERT BOX ===================== */
.alert { border-radius: var(--r-md); padding: 1rem 1.2rem; display: flex; gap: 0.85rem; align-items: flex-start; }
.alert--info { background: var(--mist-pale); }
.alert--warn { background: var(--honey-pale); }
.alert--red  { background: var(--clay-pale); }
.alert__icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; }
.alert--info .alert__icon use { stroke: var(--mist-deep); stroke-width: 1.8; }
.alert--warn .alert__icon use { stroke: var(--honey-ink); stroke-width: 1.8; }
.alert--red  .alert__icon use { stroke: var(--clay); stroke-width: 1.8; }
.alert__text { font-size: 0.875rem; line-height: 1.6; color: var(--ink-mid); }
.alert__text strong { font-weight: 700; color: var(--ink); }

/* ===================== SECTION HEADER ===================== */
.section-header          { margin-bottom: 2.25rem; }
.section-header--center  { text-align: center; }
.section-header .eyebrow,
.section-header .section-label { margin-bottom: 0.5rem; display: block; }
.section-header .headline      { margin-bottom: 0.65rem; }
.section-header .lead          { max-width: 560px; }
.section-header--center .lead  { margin: 0 auto; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   HERO HOMEPAGE
   ================================================ */
.hero { position: relative; overflow: hidden; padding: 4.5rem 0 4rem; }
.hero__fog {
  position: absolute; right: -140px; top: -160px;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, color-mix(in srgb, var(--mist) 26%, transparent), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 3.5rem;
  align-items: center; max-width: var(--max); margin: 0 auto;
  padding: 0 var(--col); position: relative; z-index: 1;
}
.hero__eyebrow       { display: flex; align-items: center; gap: 8px; margin-bottom: 1.1rem; }
.hero__eyebrow-dot   { width: 7px; height: 7px; border-radius: 50%; background: var(--mist); flex-shrink: 0; }
.hero__title         { margin-bottom: 1.2rem; }
.hero__title em      { font-style: italic; color: var(--mist-deep); }
.hero__desc          { margin-bottom: 1.9rem; }
.hero__actions       { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trust         { display: flex; align-items: center; gap: 1.4rem; margin-top: 1.9rem; padding-top: 1.9rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero__trust-item    { display: flex; align-items: center; gap: 7px; }
.hero__trust-item .ic use { stroke: var(--mist-deep); stroke-width: 1.8; }
.hero__trust-text    { font-size: 0.79rem; color: var(--ink-light); }

.hero__visual {
  background: var(--surface);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.hero__visual-header {
  background: var(--surface-2); padding: 0.8rem 1rem;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--line);
}
.hero__visual-dot { width: 9px; height: 9px; border-radius: 50%; }
.hero__visual-body { padding: 1.15rem; }
.hero__visual-label {
  font-size: 0.7rem; color: var(--ink-light); margin-bottom: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600;
}
.mini-card {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.8rem; border-radius: var(--r-md);
  border: 1px solid var(--line);
  margin-bottom: 0.65rem; background: var(--bg);
  transition: border-color var(--transition);
}
.mini-card:hover { border-color: var(--mist); }
.mini-card.featured { border-color: var(--mist); background: var(--mist-pale); }
.mini-card__rank { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--mist-deep); min-width: 22px; }
.mini-card__icon {
  width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--surface); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  overflow: hidden;
}
.mini-card__icon .ic { width: 22px; height: 22px; }
.mini-card__icon .ic use { stroke: var(--mist-deep); stroke-width: 1.5; }
.mini-card__icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mini-card__info { flex: 1; min-width: 0; }
.mini-card__name { font-size: 0.79rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-card__meta { font-size: 0.7rem; color: var(--ink-light); }
.mini-card__stars { color: var(--honey); font-size: 0.72rem; letter-spacing: 1px; }
.mini-card__price { font-family: var(--serif); font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.mini-card__badge {
  font-size: 0.62rem; font-weight: 700; background: var(--mist); color: var(--mist-ink);
  padding: 2px 7px; border-radius: 5px; margin-top: 4px; display: inline-block; letter-spacing: 0.02em;
}
.mini-card__link {
  display: block; text-align: center; font-size: 0.78rem; color: var(--mist-deep);
  padding-top: 0.7rem; font-weight: 600;
}

/* ===================== STATS BAR ===================== */
.stats-bar             { background: var(--mist-deep); color: var(--mist-ink); padding: 1.3rem 0; }
.stats-bar__inner      { display: flex; justify-content: space-around; align-items: center; max-width: var(--max); margin: 0 auto; padding: 0 var(--col); gap: 1rem; }
.stat-item             { text-align: center; }
.stat-item__value      { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--mist-ink); font-variant-numeric: tabular-nums; }
.stat-item__label      { font-size: 0.73rem; color: color-mix(in srgb, var(--mist-ink) 70%, transparent); }
.stat-sep              { width: 1px; height: 36px; background: color-mix(in srgb, var(--mist-ink) 22%, transparent); }

/* ================================================
   CATEGORY CARDS
   ================================================ */
.cat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.4rem; transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease; text-decoration: none; display: block; }
.cat-card:hover { background: var(--mist-pale); border-color: var(--mist); transform: translateY(-2px); }
.cat-card__icon  { width: 42px; height: 42px; background: var(--honey-pale); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem; }
.cat-card__icon .ic { width: 22px; height: 22px; }
.cat-card__icon .ic use { stroke: var(--honey-ink); stroke-width: 1.6; }
.cat-card__title { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.35rem; }
.cat-card__desc  { font-size: 0.82rem; color: var(--ink-light); line-height: 1.5; }
.cat-card__link  { display: inline-flex; align-items: center; gap: 4px; font-size: 0.8rem; color: var(--mist-deep); font-weight: 600; margin-top: 0.75rem; }

/* ================================================
   PRODUCT CARDS (griglia classifica)
   ================================================ */
.product-card           { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-rest); transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease; }
.product-card:hover     { border-color: var(--mist); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.product-card--featured { border-color: var(--mist); }
.product-card__badge-area { padding: 0.8rem 1rem 0; min-height: 30px; display: flex; gap: 6px; }
.product-card__img      { height: 132px; background: var(--surface-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; margin: 0.9rem 1rem 0; border-radius: var(--r-sm); overflow: hidden; }
.product-card__img img  { max-height: 120px; object-fit: contain; }
.product-card__img .ic  { width: 52px; height: 52px; }
.product-card__img .ic use { stroke: var(--ink-light); stroke-width: 1.2; }
.product-card--featured .product-card__img .ic use { stroke: var(--mist-deep); }
.product-card__body     { padding: 1rem 1.15rem 0; flex: 1; }
.product-card__brand    { font-size: 0.7rem; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; font-weight: 600; }
.product-card__name     { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; line-height: 1.3; }
.product-card__name a   { color: inherit; }
.product-card__name a:hover { color: var(--mist-deep); }
.product-card__stars    { color: var(--honey); font-size: 0.8rem; margin-bottom: 0.25rem; letter-spacing: 1px; }
.product-card__reviews  { font-size: 0.74rem; color: var(--ink-light); }
.product-card__specs    { display: flex; flex-wrap: wrap; gap: 6px; margin: 0.75rem 0; }
.product-card__footer   { padding: 0.85rem 1.15rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 0.75rem; }
.product-card__price-orig { font-size: 0.76rem; color: var(--ink-light); text-decoration: line-through; }
.product-card__price    { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.product-card__discount { font-size: 0.73rem; color: var(--moss); font-weight: 600; }

/* ================================================
   PRODUCT LIST ITEM (layout verticale, pagina categoria)
   ================================================ */
.product-list-vertical  { display: flex; flex-direction: column; gap: 0; }
.product-list-item      { display: grid; grid-template-columns: 36px 84px 1fr auto; gap: 1.25rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.product-list-item:first-child { padding-top: 0; }
.product-list-item:last-child  { border-bottom: none; padding-bottom: 0; }
.product-list-item__rank { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--line-strong); text-align: center; }
.product-list-item__img  { height: 68px; display: flex; align-items: center; justify-content: center; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.product-list-item__img img { max-height: 58px; object-fit: contain; }
.product-list-item__img .ic { width: 28px; height: 28px; }
.product-list-item__img .ic use { stroke: var(--ink-light); stroke-width: 1.4; }
.product-list-item__brand { font-size: 0.7rem; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; font-weight: 600; }
.product-list-item__name  { font-family: var(--serif); font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.product-list-item__name a { color: inherit; }
.product-list-item__name a:hover { color: var(--mist-deep); }
.product-list-item__stars { font-size: 0.8rem; color: var(--honey); }
.product-list-item__specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.product-list-item__cta   { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; white-space: nowrap; }

/* ================================================
   GUIDE CARDS (elenco guide correlate)
   ================================================ */
.guide-card            { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.guide-card:first-child { padding-top: 0; }
.guide-card:last-child  { border-bottom: none; padding-bottom: 0; }
.guide-card__icon      { width: 38px; height: 38px; border-radius: var(--r-sm); flex-shrink: 0; background: var(--mist-pale); display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.guide-card__icon .ic  { width: 19px; height: 19px; }
.guide-card__icon .ic use { stroke: var(--mist-deep); stroke-width: 1.6; }
.guide-card__content   { flex: 1; min-width: 0; }
.guide-card__tag       { font-size: 0.68rem; font-weight: 700; color: var(--mist-deep); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.guide-card__title     { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }
.guide-card__title a   { color: inherit; }
.guide-card__title a:hover { color: var(--mist-deep); }
.guide-card__desc      { font-size: 0.83rem; color: var(--ink-light); line-height: 1.5; }
.guide-card__meta      { font-size: 0.72rem; color: var(--ink-light); margin-top: 6px; }

/* ================================================
   COMPARISON TABLE
   ================================================ */
.table-wrap               { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.comparison-table         { width: 100%; border-collapse: collapse; font-size: 0.87rem; min-width: 640px; }
.comparison-table th      { font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.03em; padding: 0.85rem 1rem; text-align: left; background: var(--surface-2); border-bottom: 1px solid var(--line); color: var(--ink-mid); }
.comparison-table td      { padding: 0.85rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink-mid); font-variant-numeric: tabular-nums; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--surface-2); }
.comparison-table .col-product { font-weight: 600; color: var(--ink); font-variant-numeric: normal; }
.comparison-table .col-score   { font-family: var(--serif); font-weight: 600; color: var(--mist-deep); font-size: 1rem; }
.ic-mini { width: 15px; height: 15px; }
.ic-check use { stroke: var(--moss); stroke-width: 2.2; }
.ic-cross use { stroke: var(--clay); stroke-width: 2.2; }

/* ================================================
   NEWSLETTER
   ================================================ */
.newsletter            { background: var(--ink); border-radius: var(--r-lg); padding: 2.75rem; display: grid; grid-template-columns: 1fr auto; gap: 2.5rem; align-items: center; position: relative; overflow: hidden; }
.newsletter::before    { content: ''; position: absolute; left: -60px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--mist) 30%, transparent), transparent 70%); }
.newsletter__title     { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: var(--bg); margin-bottom: 0.5rem; position: relative; }
.newsletter__desc      { font-size: 0.89rem; color: color-mix(in srgb, var(--bg) 65%, transparent); position: relative; max-width: 46ch; }
.newsletter__form      { display: flex; gap: 8px; white-space: nowrap; position: relative; }
.newsletter__input     { padding: 0.75rem 1rem; border-radius: var(--r-sm); border: 1px solid color-mix(in srgb, var(--bg) 25%, transparent); background: color-mix(in srgb, var(--bg) 10%, transparent); color: var(--bg); font-family: var(--sans); font-size: 0.87rem; width: 230px; outline: none; transition: border-color var(--transition); }
.newsletter__input::placeholder { color: color-mix(in srgb, var(--bg) 45%, transparent); }
.newsletter__input:focus { border-color: var(--mist); }
.newsletter__fine      { font-size: 0.7rem; color: color-mix(in srgb, var(--bg) 45%, transparent); margin-top: 8px; text-align: right; position: relative; }
.newsletter__fine a    { text-decoration: underline; }

/* ================================================
   FOOTER
   ================================================ */
.footer                { background: var(--ink); color: color-mix(in srgb, var(--bg) 62%, transparent); padding: 3rem 0 1.5rem; }
.footer__inner         { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.25rem; }
.footer__brand-name    { font-family: var(--serif); font-size: 1.15rem; color: var(--bg); margin-bottom: 0.5rem; }
.footer__brand-desc    { font-size: 0.8rem; line-height: 1.6; margin-bottom: 1rem; }
.footer__disclaimer    { font-size: 0.72rem; line-height: 1.6; color: color-mix(in srgb, var(--bg) 40%, transparent); background: color-mix(in srgb, var(--bg) 6%, transparent); padding: 0.75rem 1rem; border-radius: var(--r-sm); }
.footer__col-title     { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--bg); margin-bottom: 0.875rem; }
.footer__links         { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a       { font-size: 0.8rem; transition: color var(--transition); }
.footer__links a:hover { color: var(--mist); }
.footer__bottom        { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--bg) 12%, transparent); font-size: 0.75rem; }

/* ================================================
   SCHEDA PRODOTTO — HERO
   ================================================ */
.product-hero          { background: var(--surface); border-bottom: 1px solid var(--line); padding: 2.25rem 0 0; }
.product-hero__inner   { display: grid; grid-template-columns: 1fr 380px; gap: 3.5rem; align-items: start; }
.product-hero__meta    { display: flex; align-items: center; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.product-hero__brand   { font-size: 0.75rem; color: var(--ink-light); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.product-hero__title   { font-family: var(--serif); font-size: clamp(1.55rem, 3.4vw, 2.5rem); font-weight: 600; line-height: 1.14; letter-spacing: -0.01em; margin-bottom: 0.75rem; text-wrap: balance; }
.product-hero__subtitle { font-size: 1rem; color: var(--ink-mid); margin-bottom: 1.25rem; line-height: 1.6; max-width: 56ch; }
.product-hero__rating  { display: flex; align-items: center; gap: 10px; margin-bottom: 1.5rem; flex-wrap: wrap; }
.stars                 { color: var(--honey); letter-spacing: 1px; }
.rating-value          { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; }
.rating-count          { font-size: 0.8rem; color: var(--ink-light); }
.rating-source         { font-size: 0.73rem; color: var(--mist-deep); background: var(--mist-pale); padding: 3px 9px; border-radius: 99px; font-weight: 600; }

/* Verdict */
.verdict               { background: var(--mist-pale); border-radius: var(--r-lg); padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.verdict__label        { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--mist-deep); margin-bottom: 0.4rem; }
.verdict__text         { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.65; }
.verdict__text strong  { color: var(--ink); font-weight: 700; }

/* Spec strip */
.spec-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }

/* Author strip */
.author-strip          { display: flex; align-items: center; gap: 12px; padding: 1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 1.5rem 0; flex-wrap: wrap; }
.author-avatar         { width: 42px; height: 42px; border-radius: 50%; background: var(--mist-pale); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 0.95rem; font-weight: 600; color: var(--mist-deep); flex-shrink: 0; }
.author-info           { flex: 1; min-width: 180px; }
.author-name           { font-size: 0.85rem; font-weight: 600; }
.author-role           { font-size: 0.75rem; color: var(--ink-light); }
.author-date           { font-size: 0.75rem; color: var(--ink-light); }
.author-basis          { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--mist-deep); font-weight: 600; margin-top: 2px; }
.author-basis .ic      { width: 12px; height: 12px; }
.author-basis .ic use  { stroke: var(--mist-deep); stroke-width: 2; }

/* Image panel */
.product-img-panel     { position: sticky; top: 80px; }
.product-img-main      { background: var(--surface-2); border-radius: var(--r-lg); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; height: 280px; margin-bottom: 0.75rem; overflow: hidden; }
.product-img-main img  { max-height: 260px; object-fit: contain; }
.product-img-main .ic  { width: 88px; height: 88px; }
.product-img-main .ic use { stroke: var(--mist-deep); stroke-width: 1.1; }
.product-img-thumbs    { display: flex; gap: 8px; }
.product-img-thumb     { width: 60px; height: 60px; background: var(--surface-2); border-radius: var(--r-sm); border: 2px solid var(--line); cursor: pointer; display: flex; align-items: center; justify-content: center; overflow: hidden; transition: border-color var(--transition); }
.product-img-thumb img { max-height: 50px; object-fit: contain; }
.product-img-thumb .ic { width: 24px; height: 24px; }
.product-img-thumb .ic use { stroke: var(--ink-light); stroke-width: 1.5; }
.product-img-thumb.active,
.product-img-thumb:hover { border-color: var(--mist); }
.product-img-thumb.active .ic use { stroke: var(--mist-deep); }
.img-caption            { font-size: 0.68rem; color: var(--ink-light); text-align: center; margin-top: 0.6rem; }

.product-img-main img.is-zoomable { cursor: zoom-in; }

/* Lightbox (click-to-enlarge product image) */
.lightbox-overlay      { position: fixed; inset: 0; z-index: 500; background: rgba(20,15,10,0.88); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 5vh 5vw; opacity: 0; visibility: hidden; transition: opacity var(--transition); }
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }
.lightbox-img           { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--r-lg); box-shadow: var(--shadow-lift); background: var(--surface); }
.lightbox-close         { position: absolute; top: 20px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--surface); color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-rest); transition: transform var(--transition); }
.lightbox-close:hover   { transform: scale(1.08); }
body.lightbox-open      { overflow: hidden; }

/* ================================================
   BUY BOX
   ================================================ */
.buy-box               { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem; margin-top: 1.25rem; box-shadow: var(--shadow-rest); }
.buy-box__price-row    { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; flex-wrap: wrap; }
.buy-box__price        { font-family: var(--serif); font-size: 2rem; font-weight: 600; color: var(--ink); line-height: 1; }
.buy-box__price-orig   { font-size: 1rem; color: var(--ink-light); text-decoration: line-through; }
.buy-box__discount     { font-size: 0.8rem; font-weight: 700; color: var(--moss); background: var(--moss-pale); padding: 2px 8px; border-radius: 99px; }
.buy-box__updated      { font-size: 0.72rem; color: var(--ink-light); margin-bottom: 1rem; }
.buy-box__cta-stack    { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.buy-box__retailer     { display: flex; align-items: center; justify-content: space-between; padding: 0.7rem 1rem; border-radius: var(--r-sm); border: 1px solid var(--line); font-size: 0.85rem; transition: border-color var(--transition); text-decoration: none; color: inherit; }
.buy-box__retailer:hover { border-color: var(--mist); }
.buy-box__retailer-name  { font-weight: 600; color: var(--ink); }
.buy-box__retailer-price { font-weight: 600; color: var(--mist-deep); font-variant-numeric: tabular-nums; }
.buy-box__retailer-badge { font-size: 0.63rem; font-weight: 700; background: var(--moss); color: var(--mist-ink); padding: 2px 7px; border-radius: 99px; }
.buy-box__note         { font-size: 0.72rem; color: var(--ink-light); text-align: center; line-height: 1.5; margin-top: 8px; }
.buy-box__note a       { color: var(--mist-deep); font-weight: 600; }

/* ================================================
   PAGE LAYOUT (scheda prodotto / pagine con sidebar)
   ================================================ */
.page-layout           { display: grid; grid-template-columns: 1fr 320px; gap: 3.5rem; align-items: start; padding: 3rem 0 4rem; }
.page-content           { min-width: 0; }
.page-sidebar           { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 1.5rem; }

/* Content sections */
.content-section       { margin-bottom: 3rem; }
.content-section h2    { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--line); }
.content-section h3    { font-size: 1rem; font-weight: 700; margin: 1.25rem 0 0.5rem; color: var(--ink); }
.content-section p     { font-size: 0.925rem; color: var(--ink-mid); line-height: 1.75; }
.sec-sub               { font-size: 0.875rem; color: var(--ink-mid); margin-bottom: 1.25rem; line-height: 1.6; }

/* Score overview */
.score-overview        { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; margin-bottom: 1.5rem; }
.score-big              { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.score-big__number      { font-family: var(--serif); font-size: 3.4rem; font-weight: 600; color: var(--mist-deep); line-height: 1; }
.score-big__stars       { font-size: 1.1rem; color: var(--honey); letter-spacing: 2px; }
.score-big__verdict     { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.55; flex: 1; min-width: 220px; }
.score-bars             { display: flex; flex-direction: column; gap: 0.6rem; }
.score-bar              { display: grid; grid-template-columns: 120px 1fr 32px; align-items: center; gap: 10px; font-size: 0.8rem; }
.score-bar__label       { color: var(--ink-mid); }
.score-bar__track       { height: 6px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 99px; overflow: hidden; }
.score-bar__fill        { height: 100%; background: var(--mist); border-radius: 99px; transition: width 0.8s cubic-bezier(.22,1,.36,1); }
.score-bar__fill--warn  { background: var(--honey); }
.score-bar__val         { font-weight: 700; text-align: right; color: var(--ink); font-variant-numeric: tabular-nums; }

/* Pro/Contro */
.pro-con               { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.pro-list, .con-list   { background: var(--surface); border-radius: var(--r-md); padding: 1.25rem; border: 1px solid var(--line); }
.pro-list              { border-top: 3px solid var(--moss); }
.con-list              { border-top: 3px solid var(--clay); }
.pro-list__title       { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--moss); margin-bottom: 0.75rem; }
.con-list__title       { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--clay); margin-bottom: 0.75rem; }
.pro-list ul, .con-list ul { display: flex; flex-direction: column; gap: 0.55rem; }
.pro-list li, .con-list li { font-size: 0.84rem; color: var(--ink-mid); display: flex; gap: 8px; line-height: 1.45; }
.pro-list li .ic, .con-list li .ic { width: 15px; height: 15px; margin-top: 2px; }
.pro-list li .ic use   { stroke: var(--moss); stroke-width: 2.4; }
.con-list li .ic use   { stroke: var(--clay); stroke-width: 2.4; }

/* Per chi è */
.for-whom               { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.for-card               { background: var(--surface); border-radius: var(--r-md); padding: 1.25rem; border: 1px solid var(--line); }
.for-card--yes          { border-top: 3px solid var(--mist); }
.for-card--no           { border-top: 3px solid var(--ink-light); }
.for-card__title        { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.75rem; }
.for-card--yes .for-card__title { color: var(--mist-deep); }
.for-card--no  .for-card__title { color: var(--ink-light); }
.for-card ul             { display: flex; flex-direction: column; gap: 0.55rem; }
.for-card li             { font-size: 0.82rem; color: var(--ink-mid); display: flex; gap: 8px; line-height: 1.45; }
.for-card li::before     { content: '→'; flex-shrink: 0; }
.for-card--yes li::before { color: var(--mist-deep); }
.for-card--no  li::before { color: var(--ink-light); }

/* Data table (specifiche spiegate: SOLO dichiarato + contesto, mai "misurato da noi" inventato) */
.data-table             { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-bottom: 0.5rem; }
.data-table th           { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-light); padding: 0.6rem 0.75rem; text-align: left; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.data-table td           { padding: 0.7rem 0.75rem; border-bottom: 1px solid var(--line); color: var(--ink-mid); vertical-align: top; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td  { background: var(--surface-2); }
.td-label                { font-weight: 600; color: var(--ink); white-space: nowrap; }
.td-declared             { font-family: var(--serif); font-weight: 600; color: var(--mist-deep); font-size: 0.95rem; white-space: nowrap; }
.td-context              { font-size: 0.82rem; line-height: 1.5; }
.source-note              { font-size: 0.75rem; color: var(--ink-light); margin-top: 0.5rem; }
.source-note a            { color: var(--mist-deep); font-weight: 600; }

/* Source links (external_sources) */
.sources               { display: flex; flex-direction: column; gap: 6px; }
.source-link            { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--ink-mid); padding: 0.5rem 0.75rem; background: var(--surface-2); border-radius: 8px; border: 1px solid var(--line); }
.source-link span        { flex: 1; }
.source-link a           { color: var(--mist-deep); font-weight: 600; white-space: nowrap; }

/* Pullquote */
.pullquote              { border-left: 3px solid var(--mist); margin: 1.5rem 0; padding: 0.75rem 1.25rem; }
.pullquote p             { font-family: var(--serif); font-size: 1.03rem; font-style: italic; color: var(--ink-mid); margin: 0; line-height: 1.7; }
.pullquote cite          { display: block; font-family: var(--sans); font-style: normal; font-size: 0.75rem; color: var(--ink-light); margin-top: 0.5rem; }

/* FAQ */
.faq-item               { border-bottom: 1px solid var(--line); }
.faq-item:first-child    { border-top: 1px solid var(--line); }
.faq-btn                 { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.05rem 0; background: none; border: none; cursor: pointer; font-family: var(--sans); font-size: 0.94rem; font-weight: 600; color: var(--ink); text-align: left; gap: 1rem; }
.faq-icon                { width: 22px; height: 22px; flex-shrink: 0; background: var(--mist-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s, background 0.2s; }
.faq-icon .ic             { width: 11px; height: 11px; }
.faq-icon .ic use         { stroke: var(--mist-deep); stroke-width: 2.2; }
.faq-item.open .faq-icon { background: var(--mist); transform: rotate(180deg); }
.faq-item.open .faq-icon .ic use { stroke: var(--mist-ink); }
.faq-answer               { font-size: 0.875rem; color: var(--ink-mid); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.open .faq-answer { max-height: 320px; padding-bottom: 1rem; }

/* ================================================
   SIDEBAR
   ================================================ */
.sidebar-box            { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem; }
.sidebar-box__title      { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-light); margin-bottom: 1rem; }
.sidebar-score           { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--mist-deep); text-align: center; line-height: 1; }
.sidebar-score__label    { text-align: center; font-size: 0.75rem; color: var(--ink-light); margin-bottom: 1.25rem; }

.toc                    { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.25rem; }
.toc__title              { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-light); margin-bottom: 0.75rem; }
.toc__list                { display: flex; flex-direction: column; gap: 0.45rem; }
.toc__list a               { font-size: 0.82rem; color: var(--ink-mid); transition: color var(--transition); display: flex; gap: 7px; align-items: baseline; }
.toc__list a:hover         { color: var(--mist-deep); }
.toc__list a::before       { content: '—'; font-size: 0.7rem; color: var(--line-strong); flex-shrink: 0; }
.toc__list a.is-active     { color: var(--mist-deep); font-weight: 600; }

/* Alternative sidebar */
.alt-card               { display: flex; gap: 0.75rem; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--line); transition: opacity var(--transition); }
.alt-card:last-child     { border-bottom: none; padding-bottom: 0; }
.alt-card:hover          { opacity: 0.72; }
.alt-card__img           { width: 42px; height: 42px; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.alt-card__img img        { max-height: 36px; object-fit: contain; }
.alt-card__img .ic        { width: 19px; height: 19px; }
.alt-card__img .ic use    { stroke: var(--ink-light); stroke-width: 1.5; }
.alt-card__info           { flex: 1; min-width: 0; }
.alt-card__name           { font-size: 0.8rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.alt-card__sub            { font-size: 0.72rem; color: var(--ink-light); }
.alt-card__price          { font-size: 0.85rem; font-weight: 600; color: var(--ink); flex-shrink: 0; font-variant-numeric: tabular-nums; }

.disclosure-box          { font-size: 0.72rem; color: var(--ink-light); line-height: 1.6; padding: 0.85rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm); }
.disclosure-box strong    { color: var(--ink-mid); }

/* ================================================
   PAGINA CATEGORIA — hero + alert contestuale
   ================================================ */
.category-hero          { padding: 3rem 0 2.5rem; }
.category-hero__eyebrow  { margin-bottom: 0.75rem; }
.category-hero__title    { margin-bottom: 0.9rem; }
.category-hero__specs    { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.25rem; }

/* ================================================
   PAGINA GUIDA — articolo editoriale
   ================================================ */
.article-hero            { padding: 2.5rem 0 1rem; }
.article-hero__tag       { margin-bottom: 0.75rem; }
.article-hero__title     { margin-bottom: 0.9rem; }
.article-hero__meta      { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--ink-light); flex-wrap: wrap; }
.article-hero__meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--line-strong); }

.article-body              { font-size: 1rem; line-height: 1.85; color: var(--ink-mid); max-width: 68ch; }
.article-body h2            { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); margin: 2.25rem 0 1rem; text-wrap: balance; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3            { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 1.5rem 0 0.6rem; }
.article-body p             { margin-bottom: 1.1em; }
.article-body ul, .article-body ol { margin: 0 0 1.1em 1.25em; }
.article-body ul             { list-style: disc; }
.article-body ol             { list-style: decimal; }
.article-body li             { margin-bottom: 0.4em; }
.article-body strong          { color: var(--ink); font-weight: 700; }
.article-body a               { color: var(--mist-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* CTA box inline nella guida (plugin ProductCta) */
.product-cta              { border: 1px solid var(--line); border-radius: var(--r-md); margin: 1.75rem 0; background: var(--surface); }
.product-cta--compact      { display: flex; align-items: center; gap: 0.9rem; padding: 0.9rem 1.1rem; flex-wrap: wrap; }
.product-cta--compact .product-cta__label { font-size: 0.72rem; font-weight: 700; color: var(--mist-deep); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.product-cta--compact .product-cta__name  { font-family: var(--serif); font-weight: 600; flex: 1; }
.product-cta--full         { padding: 1.25rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.product-cta--full .product-cta__img { width: 64px; height: 64px; border-radius: var(--r-sm); background: var(--surface-2); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.product-cta--full .product-cta__img .ic { width: 30px; height: 30px; }
.product-cta--full .product-cta__img .ic use { stroke: var(--mist-deep); stroke-width: 1.3; }
.product-cta--full .product-cta__img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-cta__img img  { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-cta__body         { flex: 1; min-width: 200px; }
.product-cta__name         { font-family: var(--serif); font-weight: 600; font-size: 1rem; }
.product-cta__specs        { display: flex; flex-wrap: wrap; gap: 6px; margin: 0.5rem 0; }

/* ================================================
   PAGINA COMPARATIVO — verdetto duale + score affiancati
   ================================================ */
.compare-hero              { padding: 3rem 0 2rem; text-align: center; }
.compare-hero__title       { margin-bottom: 0.5rem; }
.compare-hero__updated     { font-size: 0.8rem; color: var(--ink-light); }

.verdict-dual               { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }
.verdict-dual__box           { border-radius: var(--r-lg); padding: 1.5rem; }
.verdict-dual__box--a         { background: var(--mist-pale); }
.verdict-dual__box--b         { background: var(--honey-pale); }
.verdict-dual__label          { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.verdict-dual__box--a .verdict-dual__label { color: var(--mist-deep); }
.verdict-dual__box--b .verdict-dual__label { color: var(--honey-ink); }
.verdict-dual__text          { font-size: 0.88rem; line-height: 1.6; color: var(--ink-mid); }

.score-compare               { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 1.5rem 0; }
.score-compare__col          { display: flex; flex-direction: column; gap: 0.7rem; }
.score-compare__name          { font-family: var(--serif); font-weight: 600; text-align: center; margin-bottom: 0.5rem; }

/* ================================================
   PAGINE STATICHE / LEGALI (Chi siamo, Privacy, Cookie, Metodologia, FAQ, Glossario)
   ================================================ */
.static-hero                { padding: 3rem 0 1.5rem; }
.static-hero__updated        { font-size: 0.8rem; color: var(--ink-light); margin-top: 0.5rem; }
.static-body                 { font-size: 0.98rem; line-height: 1.85; color: var(--ink-mid); max-width: 72ch; margin: 0 auto; padding-bottom: 4rem; }
.static-body h2               { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--ink); margin: 2rem 0 0.9rem; }
.static-body h2:first-child   { margin-top: 0; }
.static-body h3               { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 1.4rem 0 0.5rem; }
.static-body p                 { margin-bottom: 1.05em; }
.static-body ul                 { margin: 0 0 1.05em 1.25em; list-style: disc; }
.static-body li                  { margin-bottom: 0.4em; }
.static-body a                    { color: var(--mist-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.static-toc                    { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.25rem; margin-bottom: 2rem; }

/* Team / autore card (Chi siamo) */
.team-card                { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 1rem; flex-wrap: wrap; }
.team-card__avatar         { width: 52px; height: 52px; border-radius: 50%; background: var(--mist-pale); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 600; color: var(--mist-deep); flex-shrink: 0; }
.team-card__name            { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; }
.team-card__role             { font-size: 0.8rem; color: var(--ink-light); margin-bottom: 0.5rem; }
.team-card__bio               { font-size: 0.87rem; color: var(--ink-mid); line-height: 1.6; }

/* Metodologia — griglia criteri */
.criteria-grid              { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin: 1.5rem 0 2rem; }
.criteria-card                { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.1rem 1.25rem; }
.criteria-card__title          { font-family: var(--serif); font-weight: 600; font-size: 0.98rem; margin-bottom: 0.35rem; display: flex; align-items: center; gap: 8px; }
.criteria-card__title .ic       { width: 17px; height: 17px; }
.criteria-card__title .ic use   { stroke: var(--mist-deep); stroke-width: 1.7; }
.criteria-card__desc            { font-size: 0.82rem; color: var(--ink-light); line-height: 1.5; }

/* Glossario */
.glossary-letter        { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--mist-deep); margin: 2.25rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--line); }
.glossary-letter:first-child { margin-top: 0; }
.glossary-term           { margin-bottom: 1.4rem; }
.glossary-term dt         { font-family: var(--serif); font-weight: 600; font-size: 1.02rem; color: var(--ink); margin-bottom: 0.3rem; }
.glossary-term dd         { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.65; }
.glossary-jump           { display: flex; flex-wrap: wrap; gap: 6px; }
.glossary-jump a          { font-size: 0.78rem; font-weight: 700; color: var(--mist-deep); background: var(--surface-2); border: 1px solid var(--line); border-radius: 6px; padding: 4px 9px; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .page-layout { grid-template-columns: 1fr 280px; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .hero__inner            { grid-template-columns: 1fr; }
  .hero__visual           { display: none; }
  .hero__fog              { width: 420px; height: 420px; right: -100px; top: -100px; }
  .product-hero__inner    { grid-template-columns: 1fr; }
  .product-img-panel      { position: static; }
  .page-layout            { grid-template-columns: 1fr; }
  .page-sidebar           { position: static; }
  .pro-con, .for-whom     { grid-template-columns: 1fr; }
  .verdict-dual, .score-compare { grid-template-columns: 1fr; }
  .criteria-grid           { grid-template-columns: 1fr; }
  .grid-3                 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-4                 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .newsletter              { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__inner           { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .product-list-item       { grid-template-columns: 36px 70px 1fr; }
  .product-list-item__cta  { display: none; }
  .navbar__nav             { display: none; }
  .navbar__burger          { display: flex; }
  .navbar__cta .btn        { display: none; }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer__inner            { grid-template-columns: 1fr; }
  .newsletter__form          { flex-direction: column; }
  .newsletter__input          { width: 100%; }
  .stats-bar__inner            { flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; }
  .stat-sep                     { display: none; }
  .score-bar                     { grid-template-columns: 100px 1fr 30px; }
  .product-list-item              { grid-template-columns: 36px 1fr; }
  .product-list-item__img          { display: none; }
}

@media (max-width: 400px) {
  .buy-box__price-row      { flex-direction: column; gap: 4px; }
  .author-strip             { flex-direction: column; align-items: flex-start; }
}

/* Banner consenso cookie (markup iniettato da initCookieConsent in ariadicasa.js) */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, calc(100% + 1.5rem));
  width: min(calc(100% - 2rem), 680px);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(36, 28, 21, 0.18);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
}
.cookie-banner.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.cookie-banner__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--ink-mid);
  margin: 0;
  flex: 1;
  min-width: 0;
}
.cookie-banner__text a {
  color: var(--mist-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.cookie-banner__actions .btn { font-size: 0.82rem; padding: 0.55rem 1rem; }

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-banner__actions { justify-content: flex-end; }
}
