/* UI Kit shared styles — Italian Life Style Shopify */
@import url('../../colors_and_type.css');

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: #fff; color: var(--fg); font-family: var(--font-body); }

/* ============ HEADER (LIFE Science Hub–aligned) ============
   Three bands:
   1. Top utility strip: dark green, small secondary nav right, tools right
   2. Hero band: dark green, logo tile left, brand lockup, cart/user right
   3. Search bar: large white pill with green 'Cerca' button
   Main category nav appears on a lighter green strip BELOW search.
*/
.announce-bar {
  background: var(--verde-900); color: rgba(255,255,255,.92); text-align: center;
  padding: 9px 16px; font-size: 12px; letter-spacing: .06em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.announce-bar b { color: #fff; font-weight: 600; }

.header { position: sticky; top: 0; z-index: 50; }

/* Band 1: utility nav (mirrors Hub's top strip) */
.header-utility {
  background: var(--verde-600);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}
.header-utility-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 42px;
  font-family: var(--font-display); font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase;
}
.header-utility-nav { display: flex; gap: 26px; }
.header-utility-nav a {
  color: rgba(255,255,255,.88); text-decoration: none;
  padding: 12px 0; border-bottom: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
}
.header-utility-nav a:hover { color: #fff; border-color: rgba(255,255,255,.5); }
.header-utility-tools { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.88); }
.header-utility-tools a { color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.header-utility-tools a:hover { color: #fff; }
.header-utility-tools .hu-divider { width: 1px; height: 14px; background: rgba(255,255,255,.2); }

/* Band 2: brand bar with background image, logo tile, brand lockup */
.header-brand {
  background: var(--ils-verde);
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,0) 50%),
    radial-gradient(ellipse at 80% 40%, rgba(255,255,255,.12), transparent 60%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.header-brand::after {
  /* subtle microscope/science-y decoration on the right like LIFE Hub */
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 92% 55%, rgba(255,255,255,.18) 0 2px, transparent 3px),
              radial-gradient(circle at 85% 30%, rgba(255,255,255,.1) 0 1.5px, transparent 2.5px),
              radial-gradient(circle at 78% 70%, rgba(255,255,255,.08) 0 1px, transparent 2px);
  pointer-events: none;
}
.header-brand-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 20px 24px; position: relative; z-index: 1;
}
.header-brand .logo-tile {
  flex: 0 0 auto;
  border-radius: 6px;
  overflow: hidden;
  width: 88px; height: 88px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.header-brand .logo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.header-brand .logo-tile svg { width: 100%; height: 100%; display: block; }

/* Inline search bar inside the brand band (desktop) */
.header-brand .header-search-bar {
  flex: 1; min-width: 0;
  display: flex; align-items: stretch;
  background: #fff; border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  height: 48px;
  max-width: 760px;
}
.header-brand .header-search-bar input {
  flex: 1; min-width: 0; border: none; outline: none;
  padding: 0 18px; font-size: 15px; font-family: var(--font-body);
  background: #fff; color: var(--fg);
}
.header-brand .header-search-bar input::placeholder { color: var(--grigio-500); }
.header-brand .header-search-bar .search-scope {
  border: none; outline: none; background: var(--grigio-50);
  border-right: 1px solid var(--border);
  padding: 0 14px; font-family: var(--font-body); font-size: 14px;
  color: var(--fg-muted); cursor: pointer;
}
.header-brand .header-search-bar button.search-submit {
  background: var(--verde-500); color: #fff;
  border: none; padding: 0 28px;
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: background var(--dur-fast);
  border-radius: 0 6px 6px 0;
}
.header-brand .header-search-bar button.search-submit:hover { background: var(--verde-400); }

.header-brand .brand-tools { display: flex; align-items: center; gap: 14px; color: #fff; flex: 0 0 auto; }
.header-brand .brand-tools .icon-btn {
  background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.18);
  width: 42px; height: 42px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; transition: all var(--dur-fast);
}
.header-brand .brand-tools .icon-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.35); color: #fff; }

/* Band 3: large search bar (Amazon-style) */
.header-search {
  background: var(--verde-600);
  background-image: linear-gradient(90deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.08) 100%);
  padding: 0 0 22px;
}
.header-search-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
}
.header-search-bar {
  display: flex; align-items: stretch;
  background: #fff; border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  height: 52px;
}
.header-search-bar input {
  flex: 1; border: none; outline: none;
  padding: 0 22px; font-size: 15px; font-family: var(--font-body);
  background: #fff; color: var(--fg);
}
.header-search-bar input::placeholder { color: var(--grigio-500); }
.header-search-bar .search-scope {
  border: none; outline: none; background: var(--grigio-50);
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  padding: 0 16px; font-family: var(--font-body); font-size: 14px;
  color: var(--fg-muted); cursor: pointer;
}
.header-search-bar button.search-submit {
  background: var(--verde-500); color: #fff;
  border: none; padding: 0 38px;
  font-family: var(--font-display); font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: background var(--dur-fast);
  border-radius: 0 6px 6px 0;
}
.header-search-bar button.search-submit:hover { background: var(--verde-400); }

/* Band 4: main category nav */
.header-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.header-nav-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 30px;
  padding: 0 24px; height: 52px;
  overflow-x: auto;
}
.header-nav a {
  font-family: var(--font-display); font-size: 12.5px;
  letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
  color: var(--fg); text-decoration: none; font-weight: 400;
  padding: 16px 0; border-bottom: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease-out);
}
.header-nav a:hover, .header-nav a.active { color: var(--ils-verde); border-color: var(--ils-verde); }
.header-nav .header-nav-right { margin-left: auto; display: flex; gap: 20px; font-size: 12px; }
.header-nav .header-nav-right a { color: var(--fg-muted); letter-spacing: .1em; }

/* Shared icon-btn (dark contexts override) */
.icon-btn {
  background: none; border: none; padding: 6px; cursor: pointer;
  color: var(--fg); display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-family: inherit;
}
.icon-btn:hover { color: var(--ils-verde); }

/* Mobile/desktop visibility helpers (mobile media query flips them) */
.m-only { display: none !important; }
.m-only-block { display: none !important; }
.d-only { display: inline-flex; }
.m-search-row { display: none; }
.cart-badge {
  background: var(--ils-rosso); color: #fff; font-size: 10px;
  min-width: 18px; height: 18px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; padding: 0 4px;
  position: absolute; top: -4px; right: -4px;
  border: 2px solid var(--verde-700);
}

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font-display); letter-spacing: .14em;
  text-transform: uppercase; font-weight: 400;
  font-size: 13px; padding: 14px 26px;
  border-radius: 2px; border: 1.5px solid transparent;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: all var(--dur-fast) var(--ease-out);
}
.btn-primary { background: var(--ils-verde); color: #fff; border-color: var(--ils-verde); }
.btn-primary:hover { background: var(--verde-700); border-color: var(--verde-700); }
.btn-secondary { background: #fff; color: var(--ils-verde); border-color: var(--ils-verde); }
.btn-secondary:hover { background: var(--verde-50); }
.btn-dark { background: #1A1A1A; color: #fff; border-color: #1A1A1A; }
.btn-dark:hover { background: #000; }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--fg); }
.btn-lg { padding: 18px 34px; font-size: 14px; }
.btn-sm { padding: 9px 16px; font-size: 11px; }
.btn-block { display: flex; width: 100%; justify-content: center; }

/* ============ BADGES ============ */
.badge {
  font-family: var(--font-display); letter-spacing: .14em;
  text-transform: uppercase; font-size: 10px; font-weight: 400;
  padding: 5px 10px; border-radius: 2px; display: inline-block;
}
.badge-sale { background: var(--ils-rosso); color: #fff; }
.badge-new { background: var(--ils-verde); color: #fff; }
.badge-best { background: #1A1A1A; color: #fff; }
.badge-soft { background: var(--verde-50); color: var(--verde-700); }
.badge-outline { background: #fff; color: var(--fg); border: 1px solid var(--border); }

.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border: 1px solid var(--border);
  border-radius: 999px; font-size: 12px; color: var(--fg-muted);
  background: #fff; white-space: nowrap;
}

/* ============ RATING ============ */
.rating { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--fg-muted); }
.stars { color: #E6A500; letter-spacing: 1px; }

/* ============ PRICE ============ */
.price { display: flex; align-items: baseline; gap: 10px; }
.price-old { text-decoration: line-through; color: var(--grigio-400); font-size: 14px; }
.price-now { color: var(--ils-rosso); font-weight: 700; font-size: 22px; }
.price-single { color: var(--fg); font-weight: 700; font-size: 22px; }

/* ============ SECTION ============ */
.section { padding: 80px 24px; }
.section-sm { padding: 48px 24px; }
.section-dark { background: var(--grigio-25); }
.section-brand { background: var(--verde-50); }
.section-inner { max-width: var(--container); margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .eyebrow { display: block; margin-bottom: 10px; }
.section-title h2 { margin: 0 auto; max-width: 720px; }
.section-title p { margin: 14px auto 0; max-width: 640px; color: var(--fg-muted); font-size: 16px; }

/* ============ GREEN FOOTER (LIFE Science Hub–aligned) ============ */
.footer {
  background: var(--ils-verde);
  color: #fff;
  padding: 56px 24px 0;
}
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 40px; }
.footer h4 {
  font-family: var(--font-display); font-size: 14px;
  letter-spacing: .18em; text-transform: uppercase; color: #fff;
  margin: 0 0 18px; font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; transition: color var(--dur-fast); }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer p { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.7; margin: 0 0 14px; }

/* Brand lockup in footer — mirrors LIFE Science Hub's bottom-left block */
.footer-brand { color: #fff; }
.footer-brand-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.footer-brand-head .footer-logo-tile {
  width: 52px; height: 52px;
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.footer-brand-head .footer-logo-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.footer-brand-head .footer-logo-tile svg { width: 100%; height: 100%; }
.footer-brand-head .footer-brand-title {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: .08em; text-transform: uppercase;
  color: #fff; font-weight: 500; line-height: 1;
}
.footer-brand-head .footer-brand-sub {
  font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  font-family: var(--font-body); margin-top: 4px;
}
.footer-social { display: flex; gap: 18px; margin-top: 18px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 6px;
  background: rgba(255,255,255,.08); color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  transition: all var(--dur-fast);
}
.footer-social a:hover { background: rgba(255,255,255,.18); text-decoration: none; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  padding: 20px 0; display: flex; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,.7); letter-spacing: .06em;
  gap: 20px; flex-wrap: wrap;
}
.footer-bottom .footer-pays { display: flex; gap: 14px; }
.footer-bottom .footer-pays span {
  background: rgba(255,255,255,.1); padding: 4px 10px; border-radius: 3px;
  font-family: var(--font-display); letter-spacing: .08em;
}

/* ============ WHATSAPP FAB ============ */
.wa-fab {
  position: fixed; left: 20px; bottom: 20px; z-index: 100;
  width: 56px; height: 56px; border-radius: 999px;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25); cursor: pointer;
  border: none; font-size: 28px;
}

/* ============ PRODUCT CARD ============ */
.product-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden; text-decoration: none;
  color: inherit; display: flex; flex-direction: column;
  transition: all var(--dur-med) var(--ease-out);
}
.product-card:hover { border-color: var(--grigio-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.product-card-img { aspect-ratio: 1; background: var(--grigio-50); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.product-card-img.has-image { /* bg applied via inline style */ }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img .badge { position: absolute; top: 12px; left: 12px; }
.product-card-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card-cat {
  font-family: var(--font-display); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grigio-500);
}
.product-card-name { font-size: 15px; font-weight: 600; line-height: 1.35; color: var(--fg); margin: 0; }
.product-card-price { margin-top: auto; padding-top: 6px; }

/* ============ INPUTS ============ */
.field { margin-bottom: 16px; }
.field label {
  font-family: var(--font-display); letter-spacing: .14em;
  text-transform: uppercase; font-size: 11px; color: var(--fg-muted);
  display: block; margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: inherit; font-size: 14px; background: #fff;
  transition: border-color var(--dur-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ils-verde);
  box-shadow: 0 0 0 3px rgba(0,150,64,.12);
}

/* Quantity stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.qty button { background: #fff; border: none; width: 40px; height: 44px; font-size: 18px; cursor: pointer; color: var(--fg); }
.qty button:hover { background: var(--grigio-50); }
.qty input { border: none; text-align: center; width: 48px; height: 44px; font-size: 15px; font-weight: 600; }

/* ============ BREADCRUMBS ============ */
.breadcrumbs { padding: 16px 0; font-size: 13px; color: var(--fg-muted); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs a { color: var(--fg-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ils-verde); }
.breadcrumbs span { color: var(--grigio-400); }

/* ============ USVS THEM ============ */
.uvt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 900px; margin: 0 auto; }
.uvt-col { padding: 28px; border-radius: 8px; }
.uvt-us { background: #fff; border: 2px solid var(--ils-verde); }
.uvt-them { background: var(--grigio-50); border: 1px solid var(--border); }
.uvt-col h3 { font-family: var(--font-display); letter-spacing: .14em; font-size: 18px; margin: 0 0 18px; text-transform: uppercase; }
.uvt-us h3 { color: var(--ils-verde); }
.uvt-them h3 { color: var(--grigio-500); }
.uvt-item { display: flex; gap: 12px; padding: 10px 0; font-size: 15px; border-top: 1px solid rgba(0,0,0,.05); }
.uvt-item:first-of-type { border-top: none; }
.uvt-us .uvt-item b { color: var(--ils-verde); font-size: 18px; flex: 0 0 auto; }
.uvt-them .uvt-item b { color: var(--ils-rosso); font-size: 18px; flex: 0 0 auto; }
.uvt-them .uvt-item { color: var(--fg-muted); }

/* ============ FAQ ============ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 16px; color: var(--fg);
}
.faq-q .chev { color: var(--ils-verde); font-size: 22px; transition: transform .2s; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; color: var(--fg-muted); line-height: 1.7; font-size: 15px; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ============ REVIEWS ============ */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: 6px; padding: 24px; }
.review-card .stars { font-size: 16px; margin-bottom: 10px; display: block; }
.review-card blockquote { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: var(--fg); }
.review-card cite { font-style: normal; font-size: 13px; color: var(--fg-muted); display: flex; align-items: center; gap: 10px; }
.review-card .avatar { width: 32px; height: 32px; border-radius: 999px; background: var(--verde-100); color: var(--verde-700); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; }

/* ============ PLACEHOLDER IMAGERY ============ */
.ph {
  background: linear-gradient(135deg, #E6F5EC 0%, #F5F5F5 60%, #FAFAFA 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--grigio-400); font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase;
}
.ph-food { background: linear-gradient(135deg, #E6F5EC 0%, #C8E6D4 50%, #F5F5F5 100%); }
.ph-supp { background: linear-gradient(135deg, #FDE7E8 0%, #F5F5F5 60%, #FAFAFA 100%); }
.ph-lifestyle { background: linear-gradient(135deg, #FFF8E8 0%, #F5EEDD 50%, #F5F5F5 100%); }

/* ============ CATEGORIES (homepage) ============ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.cat-grid-5 .cat-tile { aspect-ratio: .85; }
.cat-tile-img { width: 100%; height: 100%; background-color: #f2eee6; background-size: 75%; background-position: center 35%; background-repeat: no-repeat; }
.cat-tile { position: relative; aspect-ratio: 1.3; border-radius: 8px; overflow: hidden; text-decoration: none; color: #fff; }
.cat-tile .ph { width: 100%; height: 100%; }
.cat-tile-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, transparent 80%); }
.cat-grid-5 .cat-tile-content { padding: 16px; }
.cat-grid-5 .cat-tile h3 { font-size: 17px; }
.cat-grid-5 .cat-tile p { font-size: 12px; line-height: 1.4; }
.cat-tile h3 { font-family: var(--font-display); letter-spacing: .14em; font-size: 24px; color: #fff; margin: 0 0 6px; text-transform: uppercase; }
.cat-tile p { color: rgba(255,255,255,.9); margin: 0; font-size: 14px; }

/* ============ PRINCIPLES (3-column) ============ */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.principle { text-align: center; padding: 16px; }
.principle-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--verde-50); color: var(--ils-verde);
  border-radius: 999px; display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.principle h3 { font-family: var(--font-display); font-size: 15px; letter-spacing: .14em; margin-bottom: 10px; text-transform: uppercase; }
.principle p { color: var(--fg-muted); font-size: 14px; line-height: 1.6; }

/* ============ HERO ============ */
.hero {
  min-height: 560px; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; max-width: var(--container); margin: 0 auto;
  padding: 60px 24px; gap: 48px;
}
.hero-copy .eyebrow { display: block; margin-bottom: 14px; }
.hero-copy h1 { font-size: 56px; line-height: 1.05; letter-spacing: .06em; margin-bottom: 20px; }
.hero-copy h1 em { font-style: normal; color: var(--ils-verde); }
.hero-copy p { font-size: 17px; line-height: 1.7; color: var(--fg-muted); max-width: 520px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-img { aspect-ratio: 1; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-lg); }

/* ============ FILTERS (collection) ============ */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.filter-chip {
  padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px;
  background: #fff; font-size: 13px; cursor: pointer; display: inline-flex; gap: 6px; align-items: center;
}
.filter-chip.active { background: var(--ils-verde); color: #fff; border-color: var(--ils-verde); }
.filter-chip:hover:not(.active) { border-color: var(--fg); }

/* ============ NEWSLETTER ============ */
.newsletter {
  background: var(--verde-50); padding: 56px 24px; text-align: center;
}
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { color: var(--fg-muted); max-width: 560px; margin: 0 auto 24px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; gap: 8px; }
.newsletter-form input { flex: 1; padding: 14px 16px; border: 1px solid var(--border); border-radius: 4px; font-size: 14px; font-family: inherit; background: #fff; }


/* ============ TWEAKS (vibe + accent) ============ */
:root { --brand-accent: var(--ils-verde); }

/* Accent variants — swap the green where it really matters */
html[data-accent="rosso"] .nav a:hover,
html[data-accent="rosso"] .nav a.active { color: var(--ils-rosso); border-color: var(--ils-rosso); }
html[data-accent="rosso"] .announce-bar b { color: var(--ils-rosso); }
html[data-accent="rosso"] .btn-primary { background: var(--ils-rosso); border-color: var(--ils-rosso); }
html[data-accent="rosso"] .btn-primary:hover { background: #c7001f; border-color: #c7001f; }
html[data-accent="rosso"] .price-now { color: var(--ils-rosso); }

html[data-accent="tricolore"] .btn-primary {
  background: linear-gradient(90deg, var(--ils-verde) 0 33%, #fff 33% 66%, var(--ils-rosso) 66% 100%);
  color: var(--fg); border: 1px solid var(--border);
  text-shadow: 0 1px 0 rgba(255,255,255,.6);
}
html[data-accent="tricolore"] .announce-bar b {
  background: linear-gradient(90deg, var(--ils-verde), #fff, var(--ils-rosso));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
html[data-accent="tricolore"] .logo-block::after {
  content:''; display:block; width:54px; height:3px;
  background: linear-gradient(90deg, var(--ils-verde) 0 33%, #fff 33% 66%, var(--ils-rosso) 66% 100%);
  margin-left: 8px; align-self: center;
}

/* Vibe variants */
html[data-vibe="warm"] body { background: #FBF6EE; }
html[data-vibe="warm"] .section { background: #FBF6EE; }
html[data-vibe="warm"] .section-dark { background: #F3ECDD; }
html[data-vibe="warm"] .cat-tile-img { background-color: #F3ECDD; }
html[data-vibe="warm"] .product-card { background: #FFFDF8; }

html[data-vibe="clean"] body { background: #ffffff; }
html[data-vibe="clean"] .section-dark { background: #FAFAFA; }
html[data-vibe="clean"] .hero { background: #ffffff; }
html[data-vibe="clean"] .cat-tile-img { background-color: #F5F5F5; }


/* ============ HOMEPAGE HERO (Hub-style large green panel) ============ */
.hp-hero {
  background: var(--ils-verde);
  background-image:
    linear-gradient(110deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.05) 50%, rgba(0,0,0,0) 100%),
    radial-gradient(ellipse at 85% 30%, rgba(255,255,255,.12), transparent 55%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hp-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(255,255,255,.06) 0 2px, transparent 3px),
    radial-gradient(circle at 8% 30%, rgba(255,255,255,.08) 0 1.5px, transparent 2.5px);
  pointer-events: none;
}
.hp-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hp-hero-copy { color: #fff; }
.hp-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px; letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.24);
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hp-hero-copy h1 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 62px; line-height: 1.02;
  letter-spacing: .04em;
  font-weight: 400;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hp-hero-copy h1 em {
  font-style: italic;
  font-family: var(--font-serif, Georgia, serif);
  font-weight: 400;
  color: #B8E6C8;
}
.hp-hero-copy p {
  font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,.88);
  margin: 0 0 30px;
  max-width: 520px;
}
.hp-hero-copy p strong { color: #fff; font-weight: 600; }
.hp-hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.hp-hero-ctas .btn-primary {
  background: #fff; color: var(--ils-verde);
  border-color: #fff;
}
.hp-hero-ctas .btn-primary:hover { background: #E8F5EE; border-color: #E8F5EE; color: var(--verde-800); }
.btn-ghost-light {
  color: #fff; text-decoration: none;
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase;
  border-bottom: 1.5px solid rgba(255,255,255,.5);
  padding-bottom: 4px;
  transition: border-color var(--dur-fast);
}
.btn-ghost-light:hover { border-color: #fff; }
.hp-hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.9); }
.hp-hero-trust > div { display: inline-flex; align-items: center; gap: 8px; }

.hp-hero-media {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 440px;
}
.hp-hero-media img {
  max-width: 100%; max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.35));
}
.hp-hero-media-badge {
  position: absolute; top: 20px; right: 10px;
  background: #fff; color: var(--fg);
  padding: 12px 18px; border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  display: flex; flex-direction: column; gap: 2px;
  transform: rotate(4deg);
}
.hp-hero-media-badge-label {
  font-family: var(--font-display);
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ils-rosso);
  font-weight: 600;
}
.hp-hero-media-badge-rating { font-size: 14px; font-weight: 700; color: var(--fg); }

/* Hero variant: institutional method image (no product) */
.hp-hero-media-method {
  border-radius: 12px;
  overflow: hidden;
  min-height: 440px;
  align-items: stretch; justify-content: stretch;
  padding: 0;
}
.hp-hero-media-method img {
  width: 100%; height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}
.hp-hero-media-ph {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 32px;
  color: rgba(255,255,255,.7);
  font-family: var(--font-mono); font-size: 12px;
  text-align: center; line-height: 1.5; letter-spacing: .08em; text-transform: uppercase;
}

/* Soft section background (crema) */
.section-soft { background: var(--crema-100, #FBF6EE); }

/* Principles as horizontal banners (cliccabili) */
.principles-banners { grid-template-columns: repeat(3, 1fr); gap: 24px; }
.principle-banner {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--grigio-100, #ECECEC);
  border-radius: 10px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align: left; padding: 0;
}
.principle-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
  border-color: var(--ils-verde);
}
.principle-banner-img {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
}
.principle-banner-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.principle-banner-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--ils-verde); color: #fff;
  font-family: var(--font-display); letter-spacing: .14em; font-size: 12px;
  padding: 6px 10px; border-radius: 4px;
  font-weight: 700;
}
.principle-banner-body { padding: 22px 22px 24px; }
.principle-banner-body h3 {
  font-family: var(--font-display); letter-spacing: .04em;
  font-size: 22px; margin: 0 0 10px; color: var(--fg);
}
.principle-banner-body p {
  font-size: 14px; line-height: 1.6; color: var(--fg-muted); margin: 0 0 14px;
}
.principle-banner-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--ils-verde); letter-spacing: .04em;
}

/* Cat grid 3 cols */
.cat-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cat-grid-3 .cat-tile { aspect-ratio: 1.1; }

/* Featured products grid (homepage) */
.hp-featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 960px) { .hp-featured-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .hp-featured-grid { gap: 12px; } }

@media (max-width: 768px) {
  .hp-hero-media-method { min-height: 220px; }
  .principles-banners { grid-template-columns: 1fr; gap: 14px; }
  .cat-grid-3 { grid-template-columns: 1fr; gap: 12px; }
}

/* ============ LEVE DIFFERENZIANTI ============ */
.leve-section { padding: 60px 0 20px; }
.leve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.leva-card {
  background: var(--verde-50);
  border-radius: 14px;
  padding: 28px 24px 26px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.02);
}
.leva-card-icon {
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.leva-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.45;
  margin: 0;
  max-width: 240px;
}
@media (max-width: 900px) {
  .leve-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .leve-grid { grid-template-columns: 1fr; }
}

/* ============ CHI SIAMO TEASER (homepage) ============ */
.hp-chisiamo {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hp-chisiamo-img {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--crema-100, #FBF6EE);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.hp-chisiamo-img img {
  width: 100%; height: 100%;
  object-fit: contain; display: block;
}
.hp-chisiamo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
}
.hp-chisiamo-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hp-chisiamo-stats strong {
  font-family: var(--font-display);
  font-size: 28px; color: var(--ils-verde);
  letter-spacing: .02em;
  font-weight: 500;
}
.hp-chisiamo-stats span { font-size: 12px; color: var(--fg-muted); letter-spacing: .04em; }

/* ============ PRINCIPLE ICON LARGE ============ */
.principle-icon-lg {
  width: 72px; height: 72px; margin: 0 auto 18px;
  background: var(--verde-50);
  border: 1px solid rgba(0,100,43,.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

/* ============ JUDGE.ME WIDGET MOCK ============ */
.jm-block {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 34px;
  max-width: 1100px;
  margin: 0 auto;
}
.jm-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.jm-avg { display: flex; align-items: center; gap: 18px; }
.jm-avg-num {
  font-family: var(--font-display);
  font-size: 54px; line-height: 1;
  color: var(--fg); font-weight: 500;
  letter-spacing: .02em;
}
.jm-avg-stars { color: #E6A500; font-size: 22px; letter-spacing: 2px; }
.jm-avg-count { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }

.jm-dist { display: flex; flex-direction: column; gap: 6px; min-width: 260px; }
.jm-dist-row { display: grid; grid-template-columns: 48px 1fr 70px; align-items: center; gap: 12px; font-size: 13px; }
.jm-dist-label { color: var(--fg-muted); display: inline-flex; align-items: center; gap: 4px; }
.jm-dist-label span { color: #E6A500; }
.jm-dist-bar { background: var(--grigio-50); height: 8px; border-radius: 999px; overflow: hidden; border: 1px solid var(--border); }
.jm-dist-bar > div { height: 100%; background: #E6A500; border-radius: 999px; transition: width .4s; }
.jm-dist-n { color: var(--fg-muted); font-size: 12px; text-align: right; }

.jm-verified { display: flex; align-items: center; gap: 12px; max-width: 240px; }
.jm-verified-badge {
  width: 48px; height: 48px; flex: 0 0 auto;
  background: var(--verde-50);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.jm-verified-title { font-family: var(--font-display); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 2px; color: var(--fg); }
.jm-verified-sub { font-size: 12px; color: var(--fg-muted); margin: 0; line-height: 1.4; }

.jm-filters {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--fg-muted);
}
.jm-filter-spacer { flex: 1; }
.jm-sort {
  padding: 8px 14px; border: 1px solid var(--border);
  border-radius: 999px; background: #fff; font-size: 13px;
  font-family: inherit; color: var(--fg); cursor: pointer;
}

.jm-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 28px 0;
}
.jm-review { display: flex; flex-direction: column; gap: 10px; }
.jm-review header { display: flex; align-items: center; gap: 12px; }
.jm-avatar {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--verde-100);
  color: var(--verde-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500; font-size: 16px;
  flex: 0 0 auto;
}
.jm-review-name { font-size: 14px; font-weight: 600; margin: 0; color: var(--fg); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.jm-review-date { font-size: 12px; color: var(--fg-muted); margin: 2px 0 0; }
.jm-review-stars { color: #E6A500; font-size: 14px; letter-spacing: 1px; }
.jm-verified-chip {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--ils-verde); color: #fff;
  font-size: 10px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  letter-spacing: .04em; text-transform: uppercase;
}
.jm-review-title { font-size: 14px; font-weight: 600; color: var(--fg); margin: 2px 0 0; }
.jm-review-body { font-size: 14px; line-height: 1.6; color: var(--fg); margin: 0; }
.jm-review-product { font-size: 12px; color: var(--fg-muted); margin: 4px 0 0; }

.jm-footer { text-align: center; padding-top: 24px; border-top: 1px solid var(--border); }

@media (max-width: 960px) {
  .hp-hero-inner { grid-template-columns: 1fr; }
  .hp-hero-copy h1 { font-size: 42px; }
  .leve-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hp-chisiamo { grid-template-columns: 1fr; gap: 32px; }
  .jm-header { grid-template-columns: 1fr; gap: 24px; }
  .jm-reviews { grid-template-columns: 1fr; }
}

/* ============ EDITORIAL PHOTO PLACEHOLDER ============ */
.ph-photo {
  position: relative;
  width: 100%; height: 100%;
  min-height: 280px;
  background:
    linear-gradient(135deg, #E6F5EC 0%, #C8E6D4 40%, #F5EEDD 100%);
  border-radius: 10px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 22px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.04);
}
.ph-photo::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.4), transparent 60%),
    radial-gradient(circle at 75% 75%, rgba(0,100,43,.15), transparent 60%);
}
.ph-photo::after {
  content: ''; position: absolute;
  top: 14px; left: 14px;
  width: 22px; height: 22px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23009640' stroke-width='1.5'><rect x='3' y='3' width='18' height='18' rx='2'/><circle cx='9' cy='9' r='2'/><path d='M21 15l-3.5-3.5-9 9'/></svg>") center/contain no-repeat;
  opacity: .5;
}
.ph-photo-subject {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em;
  color: rgba(0,0,0,.55);
  background: rgba(255,255,255,.75);
  padding: 6px 10px;
  border-radius: 4px;
  max-width: 85%;
  line-height: 1.4;
}
.ph-photo-portrait { aspect-ratio: 4/5; }
.ph-photo-square { aspect-ratio: 1; }

/* ============ CHI SIAMO — HERO ============ */
.cs-hero {
  background: linear-gradient(180deg, var(--verde-50) 0%, #fff 100%);
  padding: 60px 0 80px;
}
.cs-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cs-hero-copy h1 {
  font-family: var(--font-display);
  font-size: 68px; line-height: 1.02;
  letter-spacing: .04em; font-weight: 400;
  color: var(--fg);
  margin: 18px 0 26px;
  text-wrap: balance;
}
.cs-hero-copy h1 em {
  font-family: var(--font-serif, Georgia, serif);
  font-style: italic; font-weight: 400;
  color: var(--ils-verde);
}
.cs-hero-copy p {
  font-size: 17px; line-height: 1.7;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 0 32px;
}
.cs-hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 540px;
}
.cs-hero-meta > div { display: flex; flex-direction: column; gap: 4px; }
.cs-hero-meta strong {
  font-family: var(--font-display);
  font-size: 30px; letter-spacing: .02em;
  color: var(--ils-verde); font-weight: 500;
}
.cs-hero-meta span { font-size: 12px; color: var(--fg-muted); }
.cs-hero-media { margin: 0; aspect-ratio: 4/5; border-radius: 6px; overflow: hidden; }

/* ============ CHI SIAMO — MISSION ============ */
.cs-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cs-mission-body p {
  font-size: 16px; line-height: 1.8;
  color: var(--fg); margin: 0 0 20px;
}
.cs-mission-body p:last-child { margin-bottom: 0; }
.cs-mission-body p strong { color: var(--ils-verde); font-weight: 600; }

/* ============ CHI SIAMO — MANIFESTO ============ */
.cs-manifesto {
  background: var(--ils-verde);
  background-image:
    linear-gradient(120deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.08) 50%, rgba(0,0,0,0) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.1), transparent 60%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cs-manifesto::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.08) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,.06) 0 1.5px, transparent 2.5px);
  pointer-events: none;
}
.cs-manifesto > .section-inner { position: relative; z-index: 1; text-align: center; max-width: 900px; }
.cs-manifesto h2 { color: #fff; font-weight: 400; text-wrap: balance; letter-spacing: .03em; }
.cs-manifesto h2 em {
  font-family: var(--font-serif, Georgia, serif);
  font-style: italic; color: #B8E6C8;
}
.cs-manifesto-lines {
  display: flex; flex-direction: column;
  gap: 18px;
  max-width: 760px;
  margin: 20px auto 40px;
  text-align: left;
}
.cs-manifesto-lines p {
  color: rgba(255,255,255,.92);
  font-size: 18px; line-height: 1.7;
  margin: 0; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
  display: flex; gap: 18px; align-items: baseline;
}
.cs-manifesto-lines p:last-child { border-bottom: none; }
.cs-manifesto-lines p span {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .16em;
  color: #B8E6C8;
  flex: 0 0 auto;
  min-width: 24px;
}
.cs-manifesto-lines p strong { color: #fff; font-weight: 600; }
.cs-manifesto-claim {
  font-family: var(--font-display);
  font-size: 28px; letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.2);
  margin: 0 auto;
  max-width: 640px;
  font-weight: 500;
}

/* ============ CHI SIAMO — TIMELINE ============ */
.cs-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.cs-timeline::before {
  content: ''; position: absolute;
  top: 26px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--ils-verde) 0%, rgba(0,150,64,.3) 100%);
  z-index: 0;
}
.cs-timeline-item {
  position: relative;
  padding: 58px 14px 0;
  text-align: center;
}
.cs-timeline-item::before {
  content: ''; position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--ils-verde);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--ils-verde);
  z-index: 1;
}
.cs-timeline-year {
  display: block;
  font-family: var(--font-display);
  font-size: 20px; letter-spacing: .08em;
  color: var(--ils-verde);
  font-weight: 500;
  margin-bottom: 6px;
}
.cs-timeline-item h3 {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--fg);
}
.cs-timeline-item p {
  font-size: 13.5px; line-height: 1.6;
  color: var(--fg-muted); margin: 0;
}
.cs-timeline-item p em { font-style: italic; color: var(--ils-verde); }

/* ============ CHI SIAMO — TARGET ============ */
.cs-target {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.cs-target-media { margin: 0; aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; }

/* ============ CHI SIAMO — TEAM ============ */
.cs-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cs-team-member figure { margin: 0 0 16px; }
.cs-team-member h3 {
  font-size: 17px; font-weight: 600;
  margin: 4px 0; color: var(--fg);
}
.cs-team-member p {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}

/* ============ CHI SIAMO — CERTIFICATIONS ============ */
.cs-certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cs-cert {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--dur-fast);
}
.cs-cert:hover { border-color: var(--verde-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cs-cert-icon {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--verde-50);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.cs-cert h3 {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0; color: var(--fg);
  font-weight: 500;
}
.cs-cert p {
  font-size: 13.5px; line-height: 1.6;
  color: var(--fg-muted); margin: 0;
}

/* ============ CHI SIAMO — CTA ============ */
.cs-cta {
  background: var(--ils-verde);
  background-image:
    linear-gradient(110deg, rgba(0,0,0,.12), rgba(0,0,0,0));
  color: #fff;
  padding: 80px 24px;
}
.cs-cta h2 { color: #fff; letter-spacing: .04em; }

@media (max-width: 960px) {
  .cs-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .cs-hero-copy h1 { font-size: 48px; }
  .cs-mission { grid-template-columns: 1fr; gap: 24px; }
  .cs-manifesto h2 { font-size: 32px; }
  .cs-manifesto-lines p { font-size: 16px; }
  .cs-timeline { grid-template-columns: 1fr; gap: 24px; }
  .cs-timeline::before { display: none; }
  .cs-target { grid-template-columns: 1fr; gap: 32px; }
  .cs-team { grid-template-columns: repeat(2, 1fr); }
  .cs-certs { grid-template-columns: 1fr; }
}

/* ============ PDP EXTENDED DESCRIPTION ============ */
.pdp-desc { background: #fff; }
.pdp-desc-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 72px;
  max-width: 1180px;
  margin: 0 auto;
}
.pdp-desc-nav {
  position: sticky; top: 120px; align-self: start;
}
.pdp-desc-nav h4 {
  font-family: var(--font-display);
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 14px; font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.pdp-desc-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.pdp-desc-nav a {
  display: block;
  font-size: 14px; color: var(--fg-muted);
  text-decoration: none;
  padding: 8px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -12px;
  transition: all var(--dur-fast);
}
.pdp-desc-nav a:hover { color: var(--ils-verde); border-color: var(--verde-100); }

.pdp-desc-body { min-width: 0; }
.pdp-desc-block { margin-bottom: 72px; scroll-margin-top: 120px; }
.pdp-desc-block:last-child { margin-bottom: 0; }
.pdp-desc-block h2 {
  font-family: var(--font-display);
  font-size: 36px; line-height: 1.15;
  letter-spacing: .03em;
  margin: 14px 0 22px;
  font-weight: 400;
  color: var(--fg);
}
.pdp-desc-block p {
  font-size: 16px; line-height: 1.8;
  color: var(--fg);
  margin: 0 0 18px;
}
.pdp-desc-block p strong { color: var(--fg); font-weight: 600; }
.pdp-desc-lead {
  font-size: 18px !important;
  color: var(--fg) !important;
}

.pdp-desc-note {
  font-size: 13px !important;
  color: var(--fg-muted) !important;
  font-style: italic;
  padding-left: 14px;
  border-left: 2px solid var(--verde-100);
  margin-top: 10px !important;
}

/* Benefici grid */
.pdp-benefici {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}
.pdp-beneficio {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px;
  background: var(--verde-50);
  border: 1px solid rgba(0,100,43,.08);
  border-radius: 8px;
}
.pdp-beneficio-icon {
  width: 40px; height: 40px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(0,100,43,.15);
  display: flex; align-items: center; justify-content: center;
}
.pdp-beneficio h4 {
  font-family: var(--font-display);
  font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase;
  margin: 2px 0 6px;
  color: var(--fg);
  font-weight: 500;
}
.pdp-beneficio p {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  color: var(--fg-muted) !important;
  margin: 0 !important;
}

/* Modo d'uso steps */
.pdp-uso-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.pdp-uso-step {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}
.pdp-uso-n {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ils-verde);
  font-weight: 500;
  letter-spacing: .02em;
  display: block;
  margin-bottom: 10px;
}
.pdp-uso-step h4 {
  font-family: var(--font-display);
  font-size: 14px; letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--fg);
}
.pdp-uso-step p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--fg-muted) !important;
  margin: 0 !important;
}

/* Check list */
.pdp-check-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.pdp-check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg);
}
.pdp-check-list li svg { flex: 0 0 auto; margin-top: 2px; }
.pdp-check-list li strong { color: var(--ils-verde); display: inline; font-weight: 600; }

/* Research refs */
.pdp-research-refs {
  margin-top: 26px;
  padding: 20px 24px;
  background: var(--grigio-25, var(--grigio-50));
  border: 1px solid var(--border);
  border-radius: 8px;
}
.pdp-research-refs ol {
  margin: 8px 0 0; padding-left: 18px;
  font-size: 13px; color: var(--fg-muted);
  line-height: 1.7;
}
.pdp-research-refs ol li { margin-bottom: 4px; }

/* ============ PDP CROSS-SELL ============ */
.pdp-cross-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pdp-bundle {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: var(--verde-50);
  border: 1.5px solid var(--ils-verde);
  border-radius: 10px;
}
.pdp-bundle-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0,100,43,.15);
  display: flex; align-items: center; justify-content: center;
}
.pdp-bundle-copy h3 {
  font-family: var(--font-display);
  font-size: 19px; letter-spacing: .04em;
  margin: 6px 0 8px;
  font-weight: 500;
  color: var(--fg);
}
.pdp-bundle-copy p {
  font-size: 14px; line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 640px;
}
.pdp-bundle-price {
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}

/* ============ PDP SHARED — description blocks (testo + immagine alternati) ============ */
.pdp-desc-block-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.pdp-desc-block-row:last-child { border-bottom: none; }
.pdp-desc-block-row-rev { direction: rtl; }
.pdp-desc-block-row-rev > * { direction: ltr; }
.pdp-desc-block-text h3 {
  font-size: 26px; font-family: var(--font-display);
  letter-spacing: .03em; font-weight: 700;
  margin: 0 0 16px; color: var(--fg);
}
.pdp-desc-block-text p {
  font-size: 15px; line-height: 1.8;
  color: var(--fg-muted); margin: 0;
}
.pdp-desc-block-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
}
.pdp-desc-block-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #fff;
  display: block;
}

.coll-filter-bar.d-only { display: flex !important; }
.coll-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.coll-hero-img {
  position: relative;
  aspect-ratio: 21/6;
  min-height: 220px;
}
.coll-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.72);
}
.coll-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,100,43,.7) 0%, rgba(0,80,35,.2) 60%, transparent 100%);
  display: flex; align-items: center;
}
.coll-hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
@media (max-width: 768px) {
  .coll-hero-img { aspect-ratio: 16/7; }
  .coll-hero-content h1 { font-size: 28px !important; }
}

/* Reviews 3-col on PDP */
.pdp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .pdp-desc-block-row { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; direction: ltr; }
  .pdp-desc-block-row-rev { direction: ltr; }
  .pdp-reviews-grid { grid-template-columns: 1fr; }
  .pdp-desc-block-text h3 { font-size: 20px; }
}
@media (min-width: 769px) and (max-width: 960px) {
  .pdp-desc-block-row { gap: 32px; }
  .pdp-reviews-grid { grid-template-columns: 1fr 1fr; }
}
  .pdp-desc-nav { position: static; }
  .pdp-desc-block h2 { font-size: 28px; }
  .pdp-benefici { grid-template-columns: 1fr; }
  .pdp-uso-steps { grid-template-columns: 1fr; }
  .pdp-cross-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp-bundle { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .pdp-bundle-price { align-items: flex-start; flex-direction: row; gap: 20px; flex-wrap: wrap; }
}

/* ============ INGREDIENT CONSTELLATION (Orac Spice PDP) ============ */
.constellation {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 680px;
}
.constellation-ring,
.constellation-ring-2 {
  position: absolute;
  top: 50%; left: 50%;
  width: 520px; height: 520px;
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.constellation-ring-2 {
  width: 340px; height: 340px;
  border-color: rgba(255,255,255,.4);
  border-style: dotted;
}
.constellation-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 340px 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-areas:
    "tl  bottle tr"
    "ml  bottle mr"
    "bl  bottle br";
  gap: 24px 24px;
  min-height: 680px;
  align-items: center;
}
.constellation-bottle {
  grid-area: bottle;
  grid-row: 1 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 100%;
}
.constellation-bottle img {
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
  mix-blend-mode: multiply;
}
.cn-cell { display: flex; }

/* Spice cards */
.spice-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 14px 20px;
  border-radius: 10px;
  color: #fff;
  text-align: left;
  transition: transform .25s var(--ease-out), background .25s;
  max-width: 280px;
}
.spice-card:hover { transform: translateY(-2px); background: rgba(255,255,255,.14); }
.spice-right { flex-direction: row-reverse; text-align: right; }
.spice-right .spice-body { text-align: right; }
.spice-dot {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.spice-name {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 2px;
}
.spice-role {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.4;
}

/* Responsive — stack on narrow viewports */
@media (max-width: 900px) {
  .constellation-ring, .constellation-ring-2 { display: none; }
  .constellation { aspect-ratio: auto; }
  .constellation-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "bottle" "tl" "tr" "ml" "mr" "bl";
  }
  .constellation-bottle img { max-width: 220px; }
  .spice-card { flex-direction: row !important; text-align: left !important; max-width: none; width: 100%; }
  .spice-right .spice-body { text-align: left; }
}

/* ============================================================
   MOBILE LAYER — phones (≤ 768px)
   Strategy: keep the same files, override desktop chrome.
   Adds: mobile header with hamburger, drawer, bottom tab nav,
         sticky PDP add-to-cart, single-col grids, larger tap targets.
   ============================================================ */

/* ---- Mobile header (only on small screens) ---- */
.m-header { display: none; }
.m-bottom-nav { display: none; }
.m-cta-bar { display: none; }

/* Mobile drawer + backdrop: hidden by default on all viewports.
   The mobile media query positions and reveals them. */
.m-drawer,
.m-drawer-backdrop { display: none; }
/* Same for filter bottom-sheet */
.m-sheet,
.m-sheet-backdrop { display: none; }

@media (max-width: 768px) {
  .m-drawer { display: flex; }
  .m-drawer-backdrop { display: block; }
  /* Filter sheet shows on mobile */
  .m-sheet { display: flex; }
  .m-sheet-backdrop { display: block; }
  /* Hide desktop bands; expose mobile header */
  .header-utility,
  .header-search,
  .header-nav { display: none; }
  .header { position: sticky; top: 0; z-index: 50; }
  .announce-bar { font-size: 11px; padding: 7px 12px; letter-spacing: .04em; }
  .announce-bar b { display: inline; }

  /* Toggle visibility helpers */
  .m-only { display: inline-flex !important; }
  .m-only-block { display: flex !important; }
  .d-only { display: none !important; }
  .m-search-row { display: block; }

  /* Collection grid → 2 columns on mobile */
  .collection-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; padding: 0 4px; }

  /* Hamburger button styling on mobile */
  .m-hamburger {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 6px;
    color: #fff;
    display: inline-flex !important;
    align-items: center; justify-content: center;
    flex: 0 0 auto;
  }

  /* Compact brand band (Band 2) */
  .header-brand-inner {
    padding: 12px 14px;
    gap: 10px;
    align-items: center;
  }
  .header-brand .logo-tile { width: 44px; height: 44px; border-radius: 4px; }
  /* Hide desktop inline search inside brand band on mobile (mobile uses .m-search-row instead) */
  .header-brand .header-search-bar { display: none; }
  /* Show ITALIAN LIFE STYLE wordmark in place on mobile */
  .header-brand-inner::before {
    content: 'ITALIAN LIFE STYLE';
    flex: 1;
    font-family: var(--font-display);
    font-size: 14px; letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
  }
  .header-brand .brand-tools { gap: 6px; }
  .header-brand .brand-tools .icon-btn {
    width: 38px; height: 38px;
  }
  .header-brand::after { display: none; } /* drop the dotted decoration */

  /* Compact in-page mobile search row, below brand band */
  .m-search-row {
    background: var(--verde-600);
    padding: 0 14px 12px;
  }
  .m-search-row .m-search {
    display: flex; align-items: center; gap: 8px;
    background: #fff; border-radius: 6px; padding: 10px 14px;
    height: 42px;
  }
  .m-search-row .m-search input {
    flex: 1; border: none; outline: none; background: transparent;
    font-size: 14px; font-family: var(--font-body);
  }

  /* Body padding to account for sticky bottom nav */
  body { padding-bottom: 64px; }

  /* ============ DRAWER ============ */
  .m-drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99;
    opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease-out);
  }
  .m-drawer-backdrop.open { opacity: 1; pointer-events: auto; }
  .m-drawer {
    position: fixed; top: 0; left: 0; bottom: 0;
    width: 86%; max-width: 360px;
    background: #fff;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform .3s var(--ease-out);
    display: flex; flex-direction: column;
    overflow: hidden;
  }
  .m-drawer.open { transform: translateX(0); }
  .m-drawer-head {
    background: var(--ils-verde);
    color: #fff;
    padding: 18px 18px 22px;
    display: flex; align-items: center; gap: 12px;
  }
  .m-drawer-head .m-drawer-logo { width: 44px; height: 44px; border-radius: 4px; overflow: hidden; flex: 0 0 auto; }
  .m-drawer-head .m-drawer-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .m-drawer-head .m-drawer-title {
    font-family: var(--font-display); font-size: 14px;
    letter-spacing: .14em; text-transform: uppercase;
    line-height: 1.3;
  }
  .m-drawer-head .m-drawer-title small {
    display: block; font-size: 11px; letter-spacing: .04em;
    color: rgba(255,255,255,.8); text-transform: none;
    margin-top: 2px;
  }
  .m-drawer-close {
    margin-left: auto;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    width: 36px; height: 36px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }
  .m-drawer-section {
    padding: 18px 6px 6px;
    border-bottom: 1px solid var(--border);
  }
  .m-drawer-section:last-child { border-bottom: none; }
  .m-drawer-section h5 {
    font-family: var(--font-display);
    font-size: 11px; letter-spacing: .18em;
    text-transform: uppercase; color: var(--fg-muted);
    margin: 0 0 6px; padding: 0 14px; font-weight: 500;
  }
  .m-drawer-list { list-style: none; padding: 0; margin: 0; }
  .m-drawer-list a {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px;
    color: var(--fg); text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
  }
  .m-drawer-list a:hover { background: var(--verde-50); color: var(--ils-verde); }
  .m-drawer-list a .chev { margin-left: auto; color: var(--grigio-400); }
  .m-drawer-list a.featured { color: var(--ils-rosso); font-weight: 600; }
  .m-drawer-body { flex: 1; overflow-y: auto; padding-bottom: 24px; }
  .m-drawer-foot {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    background: var(--verde-50);
    display: flex; gap: 12px; justify-content: space-between;
    font-size: 12px; color: var(--fg-muted);
  }
  .m-drawer-foot a { color: var(--fg-muted); text-decoration: none; }

  /* ============ BOTTOM NAV ============ */
  .m-bottom-nav {
    display: flex !important;
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 60;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 10px rgba(0,0,0,.04);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
  }
  .m-bottom-nav a {
    flex: 1;
    display: flex; flex-direction: column;
    align-items: center; gap: 3px;
    padding: 6px 4px;
    text-decoration: none;
    color: var(--grigio-500);
    font-family: var(--font-display);
    font-size: 9.5px; letter-spacing: .12em;
    text-transform: uppercase;
    position: relative;
    min-height: 52px;
    justify-content: center;
  }
  .m-bottom-nav a.active {
    color: var(--ils-verde);
  }
  .m-bottom-nav a .nav-badge {
    position: absolute;
    top: 4px; right: calc(50% - 18px);
    background: var(--ils-rosso); color: #fff;
    font-size: 9px; min-width: 16px; height: 16px;
    border-radius: 999px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; padding: 0 4px;
    border: 1.5px solid #fff;
  }

  /* ============ ANNOUNCE / FOOTER / SECTIONS ============ */
  .section { padding: 44px 16px; }
  .section-sm { padding: 32px 16px; }
  .section-title { margin-bottom: 28px; }
  .section-title h2 { font-size: 26px; letter-spacing: .03em; line-height: 1.15; }
  .section-title p { font-size: 14px; }

  /* Hero homepage */
  .hp-hero-inner {
    grid-template-columns: 1fr;
    padding: 36px 18px 40px;
    gap: 24px;
    text-align: left;
  }
  .hp-hero-copy h1 { font-size: 34px; line-height: 1.08; letter-spacing: .02em; }
  .hp-hero-copy p { font-size: 15px; }
  .hp-hero-eyebrow { font-size: 10px; padding: 5px 10px; }
  .hp-hero-ctas { gap: 12px; }
  .hp-hero-ctas .btn { width: 100%; justify-content: center; }
  .hp-hero-trust { font-size: 12px; gap: 14px; }
  .hp-hero-media { min-height: 300px; order: -1; }
  .hp-hero-media img { max-height: 280px; }
  .hp-hero-media-badge {
    transform: rotate(4deg) scale(.85);
    top: 8px; right: -4px;
    padding: 8px 12px;
  }

  /* Leve cards — single col, tighter */
  .leve-section { padding: 32px 0 8px; }
  .leve-grid { gap: 12px; padding: 0 16px; }
  .leva-card { min-height: 0; padding: 18px 16px; flex-direction: row; text-align: left; gap: 14px; }
  .leva-card-icon { width: 44px; height: 44px; }
  .leva-card-title { font-size: 14px; max-width: none; }

  /* Chi siamo teaser */
  .hp-chisiamo { grid-template-columns: 1fr; gap: 28px; padding: 0 16px; }
  .hp-chisiamo-img { aspect-ratio: 1/1; padding: 16px; }
  .hp-chisiamo-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 24px; padding-top: 20px; }
  .hp-chisiamo-stats strong { font-size: 22px; }
  .hp-chisiamo-stats span { font-size: 11px; }

  /* Categories */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cat-tile h3 { font-size: 16px; letter-spacing: .08em; }
  .cat-tile p { font-size: 12px; }
  .cat-grid-5 .cat-tile-content { padding: 12px; }
  .cat-grid-5 .cat-tile h3 { font-size: 14px; }

  /* Product cards — 2 cols on mobile */
  .product-card-name { font-size: 14px; }
  .price-now, .price-single { font-size: 18px; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 28px;
    min-height: 0;
  }
  .hero-copy h1 { font-size: 34px; letter-spacing: .03em; }
  .hero-copy p { font-size: 15px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }

  /* US vs them */
  .uvt-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Reviews */
  .review-card { padding: 18px; }

  /* Newsletter */
  .newsletter { padding: 36px 18px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer { padding: 36px 18px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer h4 { margin-bottom: 12px; font-size: 12px; }
  .footer-bottom { flex-direction: column; gap: 10px; font-size: 11px; padding: 16px 0 24px; }
  .footer-bottom .footer-pays { flex-wrap: wrap; }

  /* Hide WhatsApp FAB on mobile (user has app installed) */
  .wa-fab { left: 14px; bottom: 76px; width: 48px; height: 48px; }

  /* ============ PDP MOBILE ============ */
  .pdp-desc-grid { grid-template-columns: 1fr; gap: 24px; padding: 0 16px; }
  .pdp-desc-nav { display: none; } /* hide sidebar nav, sections still scroll */
  .pdp-desc-block h2 { font-size: 22px; letter-spacing: .02em; }
  .pdp-desc-block p { font-size: 15px; }
  .pdp-benefici { grid-template-columns: 1fr; }
  .pdp-uso-steps { grid-template-columns: 1fr; }
  .pdp-cross-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .pdp-bundle { grid-template-columns: 1fr; gap: 12px; padding: 18px; }

  /* PDP top section: gallery first, info below */
  .pdp-top-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 16px !important;
  }
  .pdp-top-grid h1 { font-size: 26px !important; }
  .pdp-top-grid .qty { width: 100%; justify-content: center; }
  .pdp-top-grid .btn-lg { width: 100%; justify-content: center; }

  /* Sticky CTA bar */
  .m-cta-bar {
    display: flex !important;
    position: fixed; left: 0; right: 0;
    bottom: calc(64px + env(safe-area-inset-bottom));
    z-index: 55;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 14px;
    gap: 10px; align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,.06);
  }
  .m-cta-bar .m-cta-price {
    display: flex; flex-direction: column;
    line-height: 1.1; min-width: 0;
  }
  .m-cta-bar .m-cta-price .m-cta-name {
    font-size: 11px; color: var(--fg-muted);
    letter-spacing: .04em;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    max-width: 110px;
  }
  .m-cta-bar .m-cta-price .m-cta-amount {
    font-size: 18px; font-weight: 700;
    color: var(--fg);
  }
  .m-cta-bar .btn { flex: 1; justify-content: center; padding: 14px 16px; }

  /* ============ COLLECTION MOBILE ============ */
  .filter-bar { gap: 8px; padding: 12px 0; overflow-x: auto; flex-wrap: nowrap; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-chip { white-space: nowrap; flex: 0 0 auto; }
  .m-filter-trigger {
    position: sticky; top: 0; z-index: 5;
    background: #fff;
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    display: flex; gap: 10px; align-items: center;
  }
  .m-filter-trigger button {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border); border-radius: 6px;
    background: #fff; font-family: inherit; font-size: 13px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer;
  }

  /* Filter bottom-sheet */
  .m-sheet-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99;
    opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease-out);
  }
  .m-sheet-backdrop.open { opacity: 1; pointer-events: auto; }
  .m-sheet {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 100;
    background: #fff;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    transition: transform .3s var(--ease-out);
    max-height: 85vh;
    display: flex; flex-direction: column;
  }
  .m-sheet.open { transform: translateY(0); }
  .m-sheet-handle {
    width: 38px; height: 4px;
    background: var(--grigio-300); border-radius: 999px;
    margin: 10px auto 0;
  }
  .m-sheet-head {
    padding: 14px 18px 12px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }
  .m-sheet-head h3 {
    font-family: var(--font-display);
    font-size: 14px; letter-spacing: .14em;
    text-transform: uppercase; margin: 0;
  }
  .m-sheet-body { flex: 1; overflow-y: auto; padding: 14px 18px; }
  .m-sheet-foot {
    padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--border);
    display: flex; gap: 10px;
  }
  .m-sheet-foot .btn { flex: 1; justify-content: center; }

  /* Breadcrumbs */
  .breadcrumbs { padding: 12px 16px; font-size: 12px; }

  /* Buttons general */
  .btn { padding: 13px 20px; }
  .btn-lg { padding: 16px 24px; font-size: 13px; }

  /* Headings cap */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }

  /* Manifesto */
  .cs-manifesto-lines p { font-size: 15px; padding: 12px 0; flex-direction: column; gap: 6px; }
  .cs-hero { padding: 32px 16px 40px; }
  .cs-hero-inner { grid-template-columns: 1fr; gap: 28px; padding: 0; }
  .cs-hero-copy h1 { font-size: 36px; }
  .cs-mission { grid-template-columns: 1fr; gap: 24px; }

  /* Judge.me */
  .jm-block { padding: 20px 16px; }
  .jm-header { grid-template-columns: 1fr; gap: 18px; }
  .jm-reviews { grid-template-columns: 1fr; gap: 16px; padding: 18px 0; }
  .jm-avg-num { font-size: 42px; }
  .jm-dist { min-width: 0; }

  /* Hide tweaks panel toggle on mobile? keep but smaller */
}

/* ---- Tablets (769–960) — moderate adjustments ---- */
@media (min-width: 769px) and (max-width: 960px) {
  .header-nav-inner { gap: 18px; padding: 0 16px; }
  .header-nav a { font-size: 11px; letter-spacing: .12em; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
