/** Shopify CDN: Minification failed

Line 269:119 Unexpected "/"
Line 466:119 Unexpected "/"
Line 818:22 Expected identifier but found whitespace
Line 1101:143 Unexpected "/"

**/

/* ── GazeboPro Theme CSS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg: #ffffff;
  --color-dark: #0d2137;
  --color-accent: #e8a800;
  --color-text: #333333;
  --color-muted: #666666;
  --color-light: #f5f7fa;
  --color-border: #e0e0e0;
  --font-main: 'Helvetica Neue', Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --max-width: 1280px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-main); color: var(--color-text); background: var(--color-bg); line-height: 1.6; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { line-height: 1.2; color: var(--color-dark); font-weight: 700; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { font-weight: 700; }

/* ── LAYOUT ── */
.page-width { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section { padding: 60px 0; }
.section--dark { background: var(--color-dark); color: #fff; }
.section--light { background: var(--color-light); }

/* ── HEADER ── */
.site-header {
  background: var(--color-dark);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; max-width: var(--max-width); margin: 0 auto;
}
.site-header__logo { display: flex; align-items: center; gap: 8px; text-decoration: none; margin-right: 32px; }
.site-header__logo-text { font-size: 1.6rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.site-header__logo-text span { color: var(--color-accent); }
.site-header__nav { display: flex; align-items: center; gap: 32px; }
.site-header__nav a { color: rgba(255,255,255,0.85); font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.site-header__nav a:hover { color: var(--color-accent); text-decoration: none; }
.site-header__cta {
  background: var(--color-accent); color: var(--color-dark) !important;
  padding: 10px 22px; border-radius: 50px; font-weight: 700 !important;
  font-size: 0.9rem !important; transition: background 0.2s, transform 0.2s;
}
.site-header__cta:hover { background: #ffc107; transform: translateY(-1px); text-decoration: none !important; }
.site-header__hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.site-header__hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: all 0.3s; }

@media (max-width: 768px) {
  .site-header__nav { display: none; }
  .site-header__hamburger { display: block; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #1a3a5c 100%);
  color: #fff; padding: 80px 20px; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content { position: relative; max-width: 800px; margin: 0 auto; }
.hero__badge {
  display: inline-block; background: var(--color-accent); color: var(--color-dark);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; border: none; transition: all 0.2s; text-decoration: none;
}
.btn--primary { background: var(--color-accent); color: var(--color-dark); }
.btn--primary:hover { background: #ffc107; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,168,0,0.4); text-decoration: none; color: var(--color-dark); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); text-decoration: none; color: #fff; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--color-accent); padding: 14px 20px; }
.trust-bar__inner { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; max-width: var(--max-width); margin: 0 auto; }
.trust-bar__item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 700; color: var(--color-dark); }

/* ── COLLECTION GRID ── */
.collections-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.collection-card {
  background: var(--color-light); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: block; border: 1px solid var(--color-border);
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); text-decoration: none; }
.collection-card__image { width: 100%; height: 200px; object-fit: cover; background: #dde4ec; display: flex; align-items: center; justify-content: center; }
.collection-card__image-placeholder { font-size: 3rem; }
.collection-card__body { padding: 20px; }
.collection-card__title { font-size: 1.05rem; font-weight: 700; color: var(--color-dark); margin-bottom: 6px; }
.collection-card__desc { font-size: 0.88rem; color: var(--color-muted); margin: 0; line-height: 1.5; }

/* ── PRODUCT GRID ── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--color-border); transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.product-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-accent); color: var(--color-dark);
  padding: 4px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700;
}
.product-card__body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-card__title { font-size: 0.95rem; font-weight: 700; color: var(--color-dark); margin-bottom: 8px; line-height: 1.3; }
.product-card__price { font-size: 1.1rem; font-weight: 700; color: var(--color-accent); margin-top: auto; padding-top: 12px; }
.product-card__cta {
  display: block; text-align: center; background: var(--color-dark); color: #fff;
  padding: 10px; border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem; font-weight: 600; transition: background 0.2s; text-decoration: none;
}
.product-card__cta:hover { background: #1a3a5c; text-decoration: none; color: #fff; }

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 40px; }
.section-header__label {
  display: inline-block; color: var(--color-accent); font-size: 0.8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--color-muted); max-width: 600px; margin: 0 auto; font-size: 1rem; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
.feature-item { text-align: center; padding: 30px 20px; }
.feature-item__icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.feature-item h3 { font-size: 1rem; margin-bottom: 8px; color: var(--color-dark); }
.feature-item p { font-size: 0.9rem; color: var(--color-muted); margin: 0; }

/* ── SEO TEXT ── */
.seo-text { max-width: 960px; margin: 0 auto; }
.seo-text h2 { margin-bottom: 16px; }
.seo-text p { color: var(--color-muted); line-height: 1.8; margin-bottom: 16px; }
.seo-text ul { padding-left: 20px; margin-bottom: 16px; }
.seo-text ul li { color: var(--color-muted); line-height: 1.8; margin-bottom: 8px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item summary {
  padding: 18px 0; cursor: pointer; font-size: 1rem; font-weight: 600;
  color: var(--color-dark); list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--color-accent); }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 18px; color: var(--color-muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* ── PRODUCT PAGE ── */
.product-page { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; padding: 60px 20px; max-width: var(--max-width); margin: 0 auto; }
@media (max-width: 900px) { .product-page { grid-template-columns: 1fr; gap: 30px; } }
.product-gallery__main { width: 100%; border-radius: var(--radius); overflow: hidden; background: var(--color-light); }
.product-gallery__main img { width: 100%; height: 500px; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-gallery__thumb { width: 80px; height: 80px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.product-gallery__thumb:hover { border-color: var(--color-accent); }
.product-info__breadcrumb { font-size: 0.85rem; color: var(--color-muted); margin-bottom: 16px; }
.product-info__breadcrumb a { color: var(--color-muted); }
.product-info__title { margin-bottom: 12px; font-size: clamp(1.4rem, 3vw, 2rem); }
.product-info__badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.badge { padding: 5px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.badge--green { background: #e6f4ea; color: #2d7a4f; }
.badge--blue { background: #e3edf8; color: #1a5276; }
.badge--yellow { background: #fef9e7; color: #9a6c00; }
.product-info__price { font-size: 1.8rem; font-weight: 900; color: var(--color-accent); margin-bottom: 24px; }
.product-info__price span { font-size: 1rem; font-weight: 400; color: var(--color-muted); }
.variant-label { font-size: 0.9rem; font-weight: 700; color: var(--color-dark); margin-bottom: 8px; display: block; }
.variant-select { width: 100%; padding: 12px 16px; border: 2px solid var(--color-border); border-radius: var(--radius); font-size: 0.95rem; margin-bottom: 20px; background: #fff; cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.variant-select:focus { outline: none; border-color: var(--color-accent); }
.product-info__add-btn {
  width: 100%; padding: 16px; background: var(--color-accent); color: var(--color-dark);
  border: none; border-radius: 50px; font-size: 1.05rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s, transform 0.2s; margin-bottom: 12px;
}
.product-info__add-btn:hover { background: #ffc107; transform: translateY(-2px); }
.product-info__quote-btn {
  width: 100%; padding: 14px; background: transparent; color: var(--color-dark);
  border: 2px solid var(--color-dark); border-radius: 50px; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s; text-align: center; display: block; text-decoration: none;
}
.product-info__quote-btn:hover { background: var(--color-dark); color: #fff; text-decoration: none; }
.product-info__meta { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--color-border); }
.product-info__meta-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; }
.product-info__meta-icon { font-size: 1.1rem; flex-shrink: 0; }
.product-desc { margin-top: 40px; }
.product-desc h2 { font-size: 1.3rem; margin-bottom: 16px; }
.product-desc__content { font-size: 0.95rem; line-height: 1.8; color: var(--color-muted); }
.product-desc__content h3 { color: var(--color-dark); font-size: 1.05rem; margin: 20px 0 8px; }

/* ── COLLECTION PAGE ── */
.collection-header { background: var(--color-dark); color: #fff; padding: 50px 20px; text-align: center; }
.collection-header h1 { color: #fff; margin-bottom: 12px; }
.collection-header p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.collection-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-btn { padding: 8px 18px; border-radius: 50px; border: 2px solid var(--color-border); background: #fff; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--color-dark); }
.filter-btn:hover, .filter-btn.active { border-color: var(--color-accent); background: var(--color-accent); color: var(--color-dark); }
.collection-seo-text { background: var(--color-light); padding: 40px 20px; margin-top: 40px; }
.collection-seo-text .page-width { max-width: 960px; }
.collection-seo-text h2 { font-size: 1.3rem; margin-bottom: 12px; }
.collection-seo-text p { font-size: 0.93rem; color: var(--color-muted); line-height: 1.8; }

/* ── FOOTER ── */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,0.8); padding: 60px 20px 30px; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: var(--max-width); margin: 0 auto 40px; }
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer__grid { grid-template-columns: 1fr; } }
.footer-brand__logo { font-size: 1.5rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.footer-brand__logo span { color: var(--color-accent); }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; color: rgba(255,255,255,0.6); }
.footer-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 8px; text-decoration: none; }
.footer-contact a:hover { color: var(--color-accent); text-decoration: none; }
.footer-col h4 { color: #fff; font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--color-accent); text-decoration: none; }
.site-footer__bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.site-footer__bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.site-footer__bottom a { color: rgba(255,255,255,0.4); font-size: 0.82rem; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 12px 20px; background: var(--color-light); font-size: 0.85rem; color: var(--color-muted); }
.breadcrumb a { color: var(--color-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb span { margin: 0 6px; }

/* ── UTILS ── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

   ══════════════════════════════════════ */

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 40px 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .product-page { grid-template-columns: 1fr; gap: 24px; }
}

/* Gallery */
/* gallery-main fixed */
.product-main-img {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 70px; height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  transition: border-color 0.2s;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: #e8a800; }

/* Badges */
.product-info__badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.badge--steel { background: #e8f0fe; color: #1a3a6b; }
.badge--blue  { background: #e3f2fd; color: #0d47a1; }
.badge--green { background: #e8f5e9; color: #2e7d32; }

/* Titolo */
.product-info__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0d2137;
  line-height: 1.25;
  margin: 0 0 12px;
}
.product-info__intro {
  color: #555;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* CTA */
.product-info__cta-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.btn--preventivo {
  display: block;
  background: #e8a800;
  color: #0d2137 !important;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none !important;
  transition: background 0.2s;
}
.btn--preventivo:hover { background: #ffc107; }
.btn--whatsapp {
  display: block;
  background: #25d366;
  color: #fff !important;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none !important;
}
.btn--whatsapp:hover { background: #1ebe5a; }
.btn--tel {
  display: block;
  background: transparent;
  color: #0d2137 !important;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  border: 2px solid #0d2137;
  text-decoration: none !important;
}
.btn--tel:hover { background: #0d2137; color: #fff !important; }

/* Varianti */
.variant-group {
  margin-bottom: 20px;
}
.variant-group__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.variant-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.variant-btn {
  padding: 8px 14px;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: #fff;
  color: #0d2137;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
}
.variant-btn:hover {
  border-color: #e8a800;
  color: #e8a800;
}
.variant-btn.active {
  background: #0d2137;
  border-color: #0d2137;
  color: #fff;
  font-weight: 700;
}

/* Trust list */
.product-info__trust {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.product-info__trust li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}

/* Descrizione */
.product-description {
  padding: 40px 20px;
  border-top: 1px solid #eee;
  margin-top: 0;
}
.product-description h2 {
  font-size: 1.3rem;
  color: #0d2137;
  margin-bottom: 20px;
}
.product-description h3 {
  font-size: 1.1rem;
  color: #0d2137;
  margin: 20px 0 10px;
}
.product-description ul {
  padding-left: 20px;
}
.product-description li {
  margin-bottom: 6px;
  color: #444;
}

/* Nascondi prezzi e carrello */
.product-info__price,
.price, [class*="price--"],
.product-form__buttons,
.shopify-payment-button { display: none !important; }

   ══════════════════════════════════════ */

/* Trust bar */
.product-trust-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e8e8e8;
  padding: 12px 0;
}
.product-trust-bar__items {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.product-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}
.product-trust-bar__item strong { display: block; color: #0d2137; }
.product-trust-bar__item span:last-child { color: #666; font-size: 0.78rem; }
.product-trust-bar__icon { font-size: 1.3rem; }

/* Layout principale */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 32px 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-main { grid-template-columns: 1fr; gap: 24px; }
}

/* Badge gallery */
.product-gallery-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px;
}
.pgbadge {
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}
.pgbadge--steel { background: #e8f0fe; color: #1a3a6b; }
.pgbadge--blue  { background: #e3f2fd; color: #0d47a1; }
.pgbadge--cert  { background: #e8f5e9; color: #2e7d32; }

/* Gallery */
/* gallery-main fixed */
/* gallery-img fixed */
.product-gallery__placeholder {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: #f5f7fa;
}
.product-gallery__thumbs {
  display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 68px; height: 68px; object-fit: cover;
  border-radius: 6px; cursor: pointer;
  border: 2px solid #e0e0e0; transition: border-color 0.2s;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: #e8a800; }

/* Quick benefits */
.product-quick-benefits {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px;
}
.product-quick-benefits__item {
  display: flex; align-items: center; gap: 6px;
  background: #f8f9fa; border-radius: 6px;
  padding: 6px 12px; font-size: 0.8rem; color: #444;
}

/* Made in Italy / Material */
.product-made-in {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px;
}
.made-in-badge {
  background: #0d2137; color: #fff;
  padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.material-badge {
  background: #e8f0fe; color: #1a3a6b;
  padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

/* Titolo prodotto */
.product-title {
  font-size: 1.55rem; font-weight: 700;
  color: #0d2137; line-height: 1.2; margin: 0 0 10px;
}
.product-subtitle {
  color: #555; font-size: 0.95rem; margin-bottom: 20px; line-height: 1.5;
}

/* Varianti */
.product-variants { margin-bottom: 20px; }
.variant-group { margin-bottom: 14px; }
.variant-group__label {
  font-size: 0.72rem; font-weight: 700; color: #999;
  letter-spacing: 0.08em; margin: 0 0 8px;
}
.variant-group__options { display: flex; flex-wrap: wrap; gap: 6px; }
.variant-btn {
  padding: 7px 13px; border: 2px solid #ddd;
  border-radius: 6px; background: #fff; color: #0d2137;
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all 0.15s;
}
.variant-btn:hover { border-color: #e8a800; color: #e8a800; }
.variant-btn.active {
  background: #0d2137; border-color: #0d2137;
  color: #fff; font-weight: 700;
}

/* Box preventivo */
.preventivo-box {
  background: #fff;
  border: 2px solid #e8a800;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.preventivo-box__tag {
  background: #e8a800; color: #0d2137;
  padding: 3px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}
.preventivo-box__title {
  font-size: 1.1rem; font-weight: 700;
  color: #0d2137; margin: 10px 0 6px;
}
.preventivo-box__desc { font-size: 0.85rem; color: #666; margin-bottom: 16px; }

/* Form */
.preventivo-form input,
.preventivo-form select,
.preventivo-form textarea {
  width: 100%; padding: 10px 12px;
  border: 1px solid #ddd; border-radius: 6px;
  font-size: 0.88rem; color: #333;
  background: #fafafa; margin-bottom: 10px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
.preventivo-form input:focus,
.preventivo-form select:focus,
.preventivo-form textarea:focus {
  outline: none; border-color: #e8a800; background: #fff;
}
.preventivo-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
@media (max-width: 480px) {
  .preventivo-form__row { grid-template-columns: 1fr; }
}
.btn-preventivo-submit {
  display: block; width: 100%;
  background: #e8a800; color: #0d2137 !important;
  padding: 14px; border-radius: 8px;
  font-size: 1rem; font-weight: 700;
  text-align: center; border: none; cursor: pointer;
  transition: background 0.2s; text-decoration: none !important;
  margin-bottom: 10px;
}
.btn-preventivo-submit:hover { background: #ffc107; }
.btn-whatsapp-submit {
  display: block; width: 100%;
  background: #25d366; color: #fff !important;
  padding: 12px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600;
  text-align: center; text-decoration: none !important;
  transition: background 0.2s; margin-bottom: 12px;
}
.btn-whatsapp-submit:hover { background: #1ebe5a; }
.preventivo-form__trust {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 0.75rem; color: #555; margin-bottom: 8px;
}
.preventivo-form__trust span::before { content: ''; }
.preventivo-form__privacy { font-size: 0.72rem; color: #999; }

/* Success state */
.preventivo-success {
  text-align: center; padding: 20px;
}
.preventivo-success div { font-size: 3rem; margin-bottom: 12px; }
.preventivo-success h3 { color: #2e7d32; margin-bottom: 8px; }

/* Sezioni */
.section-title {
  font-size: 1.3rem; font-weight: 700;
  color: #0d2137; margin: 0 0 24px;
  padding-bottom: 10px;
  border-bottom: 3px solid #e8a800;
  display: inline-block;
}
.product-benefits,
.product-usecases,
.product-description-full,
.product-why,
.product-faq,
.product-related {
  padding: 48px 20px;
  border-top: 1px solid #eee;
}

/* Vantaggi */
.product-benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) {
  .product-benefits__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .product-benefits__grid { grid-template-columns: 1fr; }
}
.benefit-card { padding: 20px; background: #f8f9fa; border-radius: 10px; }
.benefit-card__icon { font-size: 1.8rem; display: block; margin-bottom: 10px; }
.benefit-card h3 { font-size: 0.95rem; color: #0d2137; margin: 0 0 8px; }
.benefit-card p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; }

/* Use cases */
.product-usecases__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 768px) {
  .product-usecases__grid { grid-template-columns: repeat(2, 1fr); }
}
.usecase-card {
  padding: 16px; background: #f8f9fa; border-radius: 8px;
  border-left: 3px solid #e8a800;
}
.usecase-card span { font-size: 1.5rem; display: block; margin-bottom: 6px; }
.usecase-card strong { font-size: 0.88rem; color: #0d2137; display: block; margin-bottom: 4px; }
.usecase-card p { font-size: 0.8rem; color: #666; margin: 0; }

/* Descrizione */
.product-description-full__content h2 { font-size: 1.3rem; color: #0d2137; margin: 24px 0 10px; }
.product-description-full__content h3 { font-size: 1.05rem; color: #0d2137; margin: 16px 0 8px; }
.product-description-full__content ul { padding-left: 20px; }
.product-description-full__content li { margin-bottom: 6px; color: #444; font-size: 0.92rem; }
.product-description-full__content p { color: #444; line-height: 1.6; }

/* Perché */
.product-why__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 768px) {
  .product-why__grid { grid-template-columns: 1fr; }
}
.why-card { padding: 20px; border: 1px solid #e0e0e0; border-radius: 8px; }
.why-card h3 { font-size: 0.95rem; color: #0d2137; margin: 0 0 8px; }
.why-card p { font-size: 0.85rem; color: #666; margin: 0; line-height: 1.5; }

/* FAQ */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item__question {
  width: 100%; text-align: left;
  padding: 16px 0; background: none; border: none;
  font-size: 0.95rem; font-weight: 600; color: #0d2137;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.faq-item__icon { font-size: 1.2rem; color: #e8a800; transition: transform 0.2s; }
.faq-item__answer { display: none; padding: 0 0 16px; }
.faq-item__answer p { font-size: 0.88rem; color: #555; margin: 0; line-height: 1.6; }
.faq-item.open .faq-item__answer { display: block; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

/* Sticky bar */
.product-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0d2137; color: #fff;
  padding: 14px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.product-sticky-bar.visible { transform: translateY(0); }
.product-sticky-bar__content {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.product-sticky-bar p { font-size: 0.85rem; margin: 0; }
.product-sticky-bar small { color: #aaa; }
.product-sticky-bar__btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-sticky-preventivo {
  background: #e8a800; color: #0d2137 !important;
  padding: 10px 20px; border-radius: 6px;
  font-weight: 700; text-decoration: none !important; font-size: 0.88rem;
  white-space: nowrap;
}
.btn-sticky-wa {
  background: #25d366; color: #fff !important;
  padding: 10px 20px; border-radius: 6px;
  font-weight: 600; text-decoration: none !important; font-size: 0.88rem;
  white-space: nowrap;
}

/* Nascondi prezzi Shopify */
.product-single__price,
.price, [class*="price--"],
.shopify-payment-button,
.product-form__cart-submit { display: none !important; }

.variant-group__label { color: #555 !important; }
.preventivo-form__privacy { color: #555 !important; }
.product-trust-bar__item span:last-child { color: #555 !important; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Sticky bar nascosta di default */
.product-sticky-bar { display: none; }
@media (max-width: 900px) {
  .product-sticky-bar { display: block; }
}

@media (max-width: 768px) {
  /* Riduci complessità layout su mobile */
  .product-trust-bar__items { gap: 10px; }
  .product-trust-bar__item span:last-child { display: none; }
  .product-benefits__grid { grid-template-columns: 1fr; }
  .product-usecases__grid { grid-template-columns: repeat(2, 1fr); }
  .product-why__grid { grid-template-columns: 1fr; }
  .preventivo-form__row { grid-template-columns: 1fr; }
  
  /* Riduci padding su mobile */
  .product-benefits,
  .product-usecases,
  .product-description-full,
  .product-why,
  .product-faq,
  .product-related { padding: 28px 16px; }
  
  /* Font size ottimizzato mobile */
  .product-title { font-size: 1.25rem; }
  .preventivo-box { padding: 16px; }
}

   Gallery + Form SX | Info + Varianti DX
   ═════════════════════════════���════════ */

.product-main {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 40px;
  padding: 32px 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .product-main { grid-template-columns: 1fr; gap: 24px; }
}

/* Colonna sinistra: gallery quadrata */
/* gallery-main fixed */
/* gallery-img fixed */
.product-gallery__placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: #f5f7fa;
}
.product-gallery__thumbs {
  display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 68px; height: 68px; object-fit: cover;
  border-radius: 6px; cursor: pointer;
  border: 2px solid #e0e0e0; transition: border-color 0.2s;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: #e8a800; }

/* Quick benefits */
.product-quick-benefits {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0;
}
.product-quick-benefits__item {
  display: flex; align-items: center; gap: 6px;
  background: #f8f9fa; border-radius: 6px;
  padding: 5px 10px; font-size: 0.8rem; color: #444;
}

/* Box preventivo sotto gallery */
.preventivo-box {
  background: #fff;
  border: 2px solid #e8a800;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-top: 4px;
}
.preventivo-box__tag {
  display: inline-block;
  background: #e8a800; color: #0d2137;
  padding: 3px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; margin-bottom: 8px;
}
.preventivo-box__title {
  font-size: 1rem; font-weight: 700;
  color: #0d2137; margin: 0 0 4px;
}
.preventivo-box__desc { font-size: 0.82rem; color: #666; margin-bottom: 14px; }

/* Form */
.preventivo-form input,
.preventivo-form select,
.preventivo-form textarea {
  width: 100%; padding: 9px 12px;
  border: 1px solid #ddd; border-radius: 6px;
  font-size: 0.85rem; color: #333; background: #fafafa;
  margin-bottom: 8px; box-sizing: border-box;
  transition: border-color 0.2s;
}
.preventivo-form input:focus,
.preventivo-form select:focus,
.preventivo-form textarea:focus {
  outline: none; border-color: #e8a800; background: #fff;
}
.preventivo-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
@media (max-width: 600px) {
  .preventivo-form__row { grid-template-columns: 1fr; }
}
.btn-preventivo-submit {
  display: block; width: 100%;
  background: #e8a800; color: #0d2137 !important;
  padding: 13px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  text-align: center; border: none; cursor: pointer;
  transition: background 0.2s; text-decoration: none !important;
  margin-bottom: 8px;
}
.btn-preventivo-submit:hover { background: #ffc107; }
.btn-whatsapp-submit {
  display: block; width: 100%;
  background: #25d366; color: #fff !important;
  padding: 11px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  text-align: center; text-decoration: none !important;
  transition: background 0.2s; margin-bottom: 10px;
}
.btn-whatsapp-submit:hover { background: #1ebe5a; }
.preventivo-form__trust {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 0.72rem; color: #555; margin-bottom: 6px;
}
.preventivo-form__privacy { font-size: 0.7rem; color: #888; }
.preventivo-success { text-align: center; padding: 20px; }
.preventivo-success div { font-size: 3rem; margin-bottom: 10px; }
.preventivo-success h3 { color: #2e7d32; margin-bottom: 8px; }

/* Colonna destra: badge + titolo + varianti */
.product-gallery-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px;
}
.pgbadge {
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}
.pgbadge--steel { background: #e8f0fe; color: #1a3a6b; }
.pgbadge--blue  { background: #e3f2fd; color: #0d47a1; }
.pgbadge--cert  { background: #e8f5e9; color: #2e7d32; }

.product-made-in { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.made-in-badge {
  background: #0d2137; color: #fff;
  padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.material-badge {
  background: #e8f0fe; color: #1a3a6b;
  padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}

.product-title {
  font-size: 1.55rem; font-weight: 700;
  color: #0d2137; line-height: 1.2; margin: 0 0 10px;
}
.product-subtitle { color: #555; font-size: 0.92rem; margin-bottom: 18px; line-height: 1.5; }

/* Varianti */
.product-variants { margin-bottom: 20px; }
.variant-group { margin-bottom: 14px; }
.variant-group__label {
  font-size: 0.72rem; font-weight: 700; color: #555;
  letter-spacing: 0.08em; margin: 0 0 8px;
}
.variant-group__options { display: flex; flex-wrap: wrap; gap: 6px; }
.variant-btn {
  padding: 7px 13px; border: 2px solid #ddd;
  border-radius: 6px; background: #fff; color: #0d2137;
  font-size: 0.82rem; font-weight: 500; cursor: pointer;
  transition: all 0.15s;
}
.variant-btn:hover { border-color: #e8a800; color: #e8a800; }
.variant-btn.active {
  background: #0d2137; border-color: #0d2137;
  color: #fff; font-weight: 700;
}

/* Trust list */
.product-info__trust {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid #eee; padding-top: 14px;
}
.product-info__trust li {
  padding: 6px 0; font-size: 0.88rem; color: #444;
  border-bottom: 1px solid #f5f5f5;
}

/* Sezioni inferiori */
.section-title {
  font-size: 1.25rem; font-weight: 700; color: #0d2137;
  margin: 0 0 22px; padding-bottom: 10px;
  border-bottom: 3px solid #e8a800; display: inline-block;
}
.product-benefits, .product-usecases,
.product-description-full, .product-why,
.product-faq, .product-related {
  padding: 44px 20px; border-top: 1px solid #eee;
}

/* Vantaggi 3x2 */
.product-benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 768px) { .product-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-benefits__grid { grid-template-columns: 1fr; } }
.benefit-card { padding: 18px; background: #f8f9fa; border-radius: 10px; }
.benefit-card__icon { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.benefit-card h3 { font-size: 0.92rem; color: #0d2137; margin: 0 0 6px; }
.benefit-card p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.5; }

/* Use cases */
.product-usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 768px) { .product-usecases__grid { grid-template-columns: repeat(2, 1fr); } }
.usecase-card { padding: 14px; background: #f8f9fa; border-radius: 8px; border-left: 3px solid #e8a800; }
.usecase-card span { font-size: 1.4rem; display: block; margin-bottom: 5px; }
.usecase-card strong { font-size: 0.85rem; color: #0d2137; display: block; margin-bottom: 3px; }
.usecase-card p { font-size: 0.78rem; color: #666; margin: 0; }

/* Descrizione */
.product-description-full__content h2 { font-size: 1.2rem; color: #0d2137; margin: 20px 0 8px; }
.product-description-full__content h3 { font-size: 1rem; color: #0d2137; margin: 14px 0 6px; }
.product-description-full__content ul { padding-left: 18px; }
.product-description-full__content li { margin-bottom: 5px; color: #444; font-size: 0.9rem; }
.product-description-full__content p { color: #444; line-height: 1.6; font-size: 0.9rem; }

/* Perché */
.product-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 768px) { .product-why__grid { grid-template-columns: 1fr; } }
.why-card { padding: 18px; border: 1px solid #e0e0e0; border-radius: 8px; }
.why-card h3 { font-size: 0.92rem; color: #0d2137; margin: 0 0 6px; }
.why-card p { font-size: 0.82rem; color: #666; margin: 0; line-height: 1.5; }

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item__question {
  width: 100%; text-align: left; padding: 14px 0;
  background: none; border: none; font-size: 0.92rem;
  font-weight: 600; color: #0d2137; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item__icon { font-size: 1.2rem; color: #e8a800; transition: transform 0.2s; flex-shrink: 0; }
.faq-item__answer { display: none; padding: 0 0 14px; }
.faq-item__answer p { font-size: 0.86rem; color: #555; margin: 0; line-height: 1.6; }
.faq-item.open .faq-item__answer { display: block; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

/* Sticky bar */
.product-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0d2137; color: #fff;
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}
@media (max-width: 900px) { .product-sticky-bar { display: block; } }
.product-sticky-bar.visible { transform: translateY(0); }
.product-sticky-bar__content {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.product-sticky-bar p { font-size: 0.82rem; margin: 0; }
.product-sticky-bar small { color: #aaa; }
.product-sticky-bar__btns { display: flex; gap: 8px; flex-shrink: 0; }
.btn-sticky-preventivo {
  background: #e8a800; color: #0d2137 !important;
  padding: 9px 18px; border-radius: 6px;
  font-weight: 700; text-decoration: none !important; font-size: 0.85rem;
}
.btn-sticky-wa {
  background: #25d366; color: #fff !important;
  padding: 9px 18px; border-radius: 6px;
  font-weight: 600; text-decoration: none !important; font-size: 0.85rem;
}

/* Nascondi prezzi Shopify */
.product-single__price, .price,
[class*="price--"], .shopify-payment-button,
.product-form__cart-submit { display: none !important; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .product-benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .product-trust-bar__item span:last-child { display: none; }
  .product-benefits, .product-usecases,
  .product-description-full, .product-why,
  .product-faq, .product-related { padding: 28px 14px; }
}

   ══════════════════════════════════════════════ */

/* Layout 2 colonne */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 28px 20px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .product-main { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Gallery quadrata 600x600 ── */
.product-gallery-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px;
}
.pgbadge {
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}
.pgbadge--steel { background: #e8f0fe; color: #1a3a6b; }
.pgbadge--blue  { background: #e3f2fd; color: #0d47a1; }
.pgbadge--cert  { background: #e8f5e9; color: #2e7d32; }

/* gallery-main fixed */
/* gallery-img fixed */
.product-gallery__placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: #f5f7fa;
}

/* Thumbnails */
.product-gallery__thumbs {
  display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 6px; cursor: pointer;
  border: 2px solid #e0e0e0; transition: border-color 0.2s;
  flex-shrink: 0;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: #e8a800; }

/* Quick benefits */
.product-quick-benefits {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 14px;
}
.product-quick-benefits__item {
  display: flex; align-items: center; gap: 5px;
  background: #f8f9fa; border-radius: 6px;
  padding: 5px 10px; font-size: 0.78rem; color: #444;
}

/* ── Box preventivo ── */
.preventivo-box {
  background: #fff;
  border: 2px solid #e8a800;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
}
.preventivo-box__tag {
  display: inline-block;
  background: #e8a800; color: #0d2137;
  padding: 2px 10px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; margin-bottom: 7px;
}
.preventivo-box__title {
  font-size: 0.95rem; font-weight: 700;
  color: #0d2137; margin: 0 0 3px; line-height: 1.3;
}
.preventivo-box__desc { font-size: 0.8rem; color: #666; margin-bottom: 12px; }

/* Campi form */
.preventivo-form input,
.preventivo-form select,
.preventivo-form textarea {
  width: 100%; padding: 9px 11px;
  border: 1px solid #ddd; border-radius: 6px;
  font-size: 0.84rem; color: #333; background: #fafafa;
  margin-bottom: 7px; box-sizing: border-box;
  transition: border-color 0.2s; font-family: inherit;
}
.preventivo-form input:focus,
.preventivo-form select:focus,
.preventivo-form textarea:focus {
  outline: none; border-color: #e8a800; background: #fff;
}
.preventivo-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px;
}
@media (max-width: 600px) {
  .preventivo-form__row { grid-template-columns: 1fr; gap: 0; }
}

/* Bottoni */
.btn-preventivo-submit {
  display: block; width: 100%;
  background: #e8a800; color: #0d2137 !important;
  padding: 13px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  text-align: center; border: none; cursor: pointer;
  transition: background 0.2s; text-decoration: none !important;
  margin-bottom: 8px; font-family: inherit;
}
.btn-preventivo-submit:hover { background: #ffc107; }
.btn-whatsapp-submit {
  display: block; width: 100%;
  background: #25d366; color: #fff !important;
  padding: 11px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  text-align: center; text-decoration: none !important;
  transition: background 0.2s; margin-bottom: 10px;
}
.btn-whatsapp-submit:hover { background: #1ebe5a; }
.preventivo-form__trust {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 0.71rem; color: #555; margin-bottom: 5px;
}
.preventivo-form__privacy { font-size: 0.69rem; color: #888; }
.preventivo-success { text-align: center; padding: 16px; }
.preventivo-success div { font-size: 2.5rem; margin-bottom: 8px; }
.preventivo-success h3 { color: #2e7d32; margin-bottom: 6px; font-size: 1rem; }

/* ── Colonna destra ── */
.product-made-in { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.made-in-badge {
  background: #0d2137; color: #fff;
  padding: 4px 12px; border-radius: 50px; font-size: 0.76rem; font-weight: 600;
}
.material-badge {
  background: #e8f0fe; color: #1a3a6b;
  padding: 4px 12px; border-radius: 50px; font-size: 0.76rem; font-weight: 600;
}
.product-title {
  font-size: 1.5rem; font-weight: 700;
  color: #0d2137; line-height: 1.2; margin: 0 0 10px;
}
.product-subtitle {
  color: #555; font-size: 0.9rem; margin-bottom: 16px; line-height: 1.55;
}

/* Varianti */
.product-variants { margin-bottom: 18px; }
.variant-group { margin-bottom: 13px; }
.variant-group__label {
  font-size: 0.71rem; font-weight: 700; color: #555;
  letter-spacing: 0.08em; margin: 0 0 7px; display: block;
}
.variant-group__options { display: flex; flex-wrap: wrap; gap: 6px; }
.variant-btn {
  padding: 6px 12px; border: 2px solid #ddd;
  border-radius: 6px; background: #fff; color: #0d2137;
  font-size: 0.81rem; font-weight: 500; cursor: pointer;
  transition: all 0.15s; font-family: inherit;
}
.variant-btn:hover { border-color: #e8a800; color: #e8a800; }
.variant-btn.active {
  background: #0d2137; border-color: #0d2137;
  color: #fff; font-weight: 700;
}

/* Trust list */
.product-info__trust {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid #eee; padding-top: 14px;
}
.product-info__trust li {
  padding: 6px 0; font-size: 0.86rem; color: #444;
  border-bottom: 1px solid #f5f5f5;
}

/* ── Sezioni inferiori ── */
.section-title {
  font-size: 1.2rem; font-weight: 700; color: #0d2137;
  margin: 0 0 20px; padding-bottom: 8px;
  border-bottom: 3px solid #e8a800; display: inline-block;
}
.product-benefits, .product-usecases,
.product-description-full, .product-why,
.product-faq, .product-related {
  padding: 40px 20px; border-top: 1px solid #eee;
  max-width: 1200px; margin: 0 auto;
}
.product-benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 768px) { .product-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-benefits__grid { grid-template-columns: 1fr; } }
.benefit-card { padding: 16px; background: #f8f9fa; border-radius: 10px; }
.benefit-card__icon { font-size: 1.5rem; display: block; margin-bottom: 7px; }
.benefit-card h3 { font-size: 0.9rem; color: #0d2137; margin: 0 0 5px; }
.benefit-card p { font-size: 0.81rem; color: #666; margin: 0; line-height: 1.5; }

.product-usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .product-usecases__grid { grid-template-columns: repeat(2, 1fr); } }
.usecase-card { padding: 13px; background: #f8f9fa; border-radius: 8px; border-left: 3px solid #e8a800; }
.usecase-card span { font-size: 1.3rem; display: block; margin-bottom: 4px; }
.usecase-card strong { font-size: 0.83rem; color: #0d2137; display: block; margin-bottom: 3px; }
.usecase-card p { font-size: 0.77rem; color: #666; margin: 0; }

.product-description-full__content h2 { font-size: 1.15rem; color: #0d2137; margin: 18px 0 7px; }
.product-description-full__content h3 { font-size: 0.98rem; color: #0d2137; margin: 13px 0 5px; }
.product-description-full__content ul { padding-left: 18px; }
.product-description-full__content li { margin-bottom: 4px; color: #444; font-size: 0.88rem; }
.product-description-full__content p { color: #444; line-height: 1.6; font-size: 0.88rem; }

.product-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .product-why__grid { grid-template-columns: 1fr; } }
.why-card { padding: 16px; border: 1px solid #e0e0e0; border-radius: 8px; }
.why-card h3 { font-size: 0.9rem; color: #0d2137; margin: 0 0 5px; }
.why-card p { font-size: 0.81rem; color: #666; margin: 0; line-height: 1.5; }

.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item__question {
  width: 100%; text-align: left; padding: 13px 0;
  background: none; border: none; font-size: 0.9rem;
  font-weight: 600; color: #0d2137; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-item__icon { font-size: 1.1rem; color: #e8a800; transition: transform 0.2s; flex-shrink: 0; margin-left: 10px; }
.faq-item__answer { display: none; padding: 0 0 13px; }
.faq-item__answer p { font-size: 0.84rem; color: #555; margin: 0; line-height: 1.6; }
.faq-item.open .faq-item__answer { display: block; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

/* Prodotti correlati */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #eee; }

.product-card__body { padding: 10px 12px 4px; }
.product-card__title { font-size: 0.84rem; margin: 0; line-height: 1.3; }
.product-card__title a { color: #0d2137; text-decoration: none; }
.product-card__title a:hover { color: #e8a800; }
.product-card__cta {
  display: block; text-align: center;
  padding: 9px; background: #0d2137; color: #fff !important;
  font-size: 0.8rem; font-weight: 600; text-decoration: none !important;
  transition: background 0.2s; margin: 8px 0 0;
}
.product-card__cta:hover { background: #e8a800; color: #0d2137 !important; }

/* Sticky bar mobile */
.product-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0d2137; color: #fff;
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.2);
  display: none;
}
@media (max-width: 900px) { .product-sticky-bar { display: block; } }
.product-sticky-bar.visible { transform: translateY(0); }
.product-sticky-bar__content {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.product-sticky-bar p { font-size: 0.8rem; margin: 0; }
.product-sticky-bar small { color: #aaa; }
.product-sticky-bar__btns { display: flex; gap: 7px; flex-shrink: 0; }
.btn-sticky-preventivo {
  background: #e8a800; color: #0d2137 !important;
  padding: 8px 16px; border-radius: 6px;
  font-weight: 700; text-decoration: none !important; font-size: 0.82rem; white-space: nowrap;
}
.btn-sticky-wa {
  background: #25d366; color: #fff !important;
  padding: 8px 16px; border-radius: 6px;
  font-weight: 600; text-decoration: none !important; font-size: 0.82rem; white-space: nowrap;
}

/* Nascondi prezzi */
.product-single__price, .price,
[class*="price--"], .shopify-payment-button,
.product-form__cart-submit { display: none !important; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* === PRODUCT PAGE CUSTOM CSS START === */
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â���â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PRODUCT PAGE v3 â€” Gallery+Form SX | Info DX
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Layout 2 colonne */
.product-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 28px 20px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .product-main { grid-template-columns: 1fr; gap: 20px; }
}

/* â”€â”€ Gallery quadrata 600x600 â”€â”€ */
.product-gallery-badges {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px;
}
.pgbadge {
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
}
.pgbadge--steel { background: #e8f0fe; color: #1a3a6b; }
.pgbadge--blue  { background: #e3f2fd; color: #0d47a1; }
.pgbadge--cert  { background: #e8f5e9; color: #2e7d32; }

/* gallery-main fixed */
/* gallery-img fixed */
.product-gallery__placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; background: #f5f7fa;
}

/* Thumbnails */
.product-gallery__thumbs {
  display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 64px; height: 64px; object-fit: cover;
  border-radius: 6px; cursor: pointer;
  border: 2px solid #e0e0e0; transition: border-color 0.2s;
  flex-shrink: 0;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: #e8a800; }

/* Quick benefits */
.product-quick-benefits {
  display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 14px;
}
.product-quick-benefits__item {
  display: flex; align-items: center; gap: 5px;
  background: #f8f9fa; border-radius: 6px;
  padding: 5px 10px; font-size: 0.78rem; color: #444;
}

/* â”€â”€ Box preventivo â”€â”€ */
.preventivo-box {
  background: #fff;
  border: 2px solid #e8a800;
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
}
.preventivo-box__tag {
  display: inline-block;
  background: #e8a800; color: #0d2137;
  padding: 2px 10px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700; margin-bottom: 7px;
}
.preventivo-box__title {
  font-size: 0.95rem; font-weight: 700;
  color: #0d2137; margin: 0 0 3px; line-height: 1.3;
}
.preventivo-box__desc { font-size: 0.8rem; color: #666; margin-bottom: 12px; }

/* Campi form */
.preventivo-form input,
.preventivo-form select,
.preventivo-form textarea {
  width: 100%; padding: 9px 11px;
  border: 1px solid #ddd; border-radius: 6px;
  font-size: 0.84rem; color: #333; background: #fafafa;
  margin-bottom: 7px; box-sizing: border-box;
  transition: border-color 0.2s; font-family: inherit;
}
.preventivo-form input:focus,
.preventivo-form select:focus,
.preventivo-form textarea:focus {
  outline: none; border-color: #e8a800; background: #fff;
}
.preventivo-form__row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 7px;
}
@media (max-width: 600px) {
  .preventivo-form__row { grid-template-columns: 1fr; gap: 0; }
}

/* Bottoni */
.btn-preventivo-submit {
  display: block; width: 100%;
  background: #e8a800; color: #0d2137 !important;
  padding: 13px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 700;
  text-align: center; border: none; cursor: pointer;
  transition: background 0.2s; text-decoration: none !important;
  margin-bottom: 8px; font-family: inherit;
}
.btn-preventivo-submit:hover { background: #ffc107; }
.btn-whatsapp-submit {
  display: block; width: 100%;
  background: #25d366; color: #fff !important;
  padding: 11px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 600;
  text-align: center; text-decoration: none !important;
  transition: background 0.2s; margin-bottom: 10px;
}
.btn-whatsapp-submit:hover { background: #1ebe5a; }
.preventivo-form__trust {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-size: 0.71rem; color: #555; margin-bottom: 5px;
}
.preventivo-form__privacy { font-size: 0.69rem; color: #888; }
.preventivo-success { text-align: center; padding: 16px; }
.preventivo-success div { font-size: 2.5rem; margin-bottom: 8px; }
.preventivo-success h3 { color: #2e7d32; margin-bottom: 6px; font-size: 1rem; }

/* â”€â”€ Colonna destra â”€â”€ */
.product-made-in { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.made-in-badge {
  background: #0d2137; color: #fff;
  padding: 4px 12px; border-radius: 50px; font-size: 0.76rem; font-weight: 600;
}
.material-badge {
  background: #e8f0fe; color: #1a3a6b;
  padding: 4px 12px; border-radius: 50px; font-size: 0.76rem; font-weight: 600;
}
.product-title {
  font-size: 1.5rem; font-weight: 700;
  color: #0d2137; line-height: 1.2; margin: 0 0 10px;
}
.product-subtitle {
  color: #555; font-size: 0.9rem; margin-bottom: 16px; line-height: 1.55;
}

/* Varianti */
.product-variants { margin-bottom: 18px; }
.variant-group { margin-bottom: 13px; }
.variant-group__label {
  font-size: 0.71rem; font-weight: 700; color: #555;
  letter-spacing: 0.08em; margin: 0 0 7px; display: block;
}
.variant-group__options { display: flex; flex-wrap: wrap; gap: 6px; }
.variant-btn {
  padding: 6px 12px; border: 2px solid #ddd;
  border-radius: 6px; background: #fff; color: #0d2137;
  font-size: 0.81rem; font-weight: 500; cursor: pointer;
  transition: all 0.15s; font-family: inherit;
}
.variant-btn:hover { border-color: #e8a800; color: #e8a800; }
.variant-btn.active {
  background: #0d2137; border-color: #0d2137;
  color: #fff; font-weight: 700;
}

/* Trust list */
.product-info__trust {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid #eee; padding-top: 14px;
}
.product-info__trust li {
  padding: 6px 0; font-size: 0.86rem; color: #444;
  border-bottom: 1px solid #f5f5f5;
}

/* â”€â”€ Sezioni inferiori â”€â”€ */
.section-title {
  font-size: 1.2rem; font-weight: 700; color: #0d2137;
  margin: 0 0 20px; padding-bottom: 8px;
  border-bottom: 3px solid #e8a800; display: inline-block;
}
.product-benefits, .product-usecases,
.product-description-full, .product-why,
.product-faq, .product-related {
  padding: 40px 20px; border-top: 1px solid #eee;
  max-width: 1200px; margin: 0 auto;
}
.product-benefits__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 768px) { .product-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-benefits__grid { grid-template-columns: 1fr; } }
.benefit-card { padding: 16px; background: #f8f9fa; border-radius: 10px; }
.benefit-card__icon { font-size: 1.5rem; display: block; margin-bottom: 7px; }
.benefit-card h3 { font-size: 0.9rem; color: #0d2137; margin: 0 0 5px; }
.benefit-card p { font-size: 0.81rem; color: #666; margin: 0; line-height: 1.5; }

.product-usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .product-usecases__grid { grid-template-columns: repeat(2, 1fr); } }
.usecase-card { padding: 13px; background: #f8f9fa; border-radius: 8px; border-left: 3px solid #e8a800; }
.usecase-card span { font-size: 1.3rem; display: block; margin-bottom: 4px; }
.usecase-card strong { font-size: 0.83rem; color: #0d2137; display: block; margin-bottom: 3px; }
.usecase-card p { font-size: 0.77rem; color: #666; margin: 0; }

.product-description-full__content h2 { font-size: 1.15rem; color: #0d2137; margin: 18px 0 7px; }
.product-description-full__content h3 { font-size: 0.98rem; color: #0d2137; margin: 13px 0 5px; }
.product-description-full__content ul { padding-left: 18px; }
.product-description-full__content li { margin-bottom: 4px; color: #444; font-size: 0.88rem; }
.product-description-full__content p { color: #444; line-height: 1.6; font-size: 0.88rem; }

.product-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 768px) { .product-why__grid { grid-template-columns: 1fr; } }
.why-card { padding: 16px; border: 1px solid #e0e0e0; border-radius: 8px; }
.why-card h3 { font-size: 0.9rem; color: #0d2137; margin: 0 0 5px; }
.why-card p { font-size: 0.81rem; color: #666; margin: 0; line-height: 1.5; }

.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item__question {
  width: 100%; text-align: left; padding: 13px 0;
  background: none; border: none; font-size: 0.9rem;
  font-weight: 600; color: #0d2137; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-item__icon { font-size: 1.1rem; color: #e8a800; transition: transform 0.2s; flex-shrink: 0; margin-left: 10px; }
.faq-item__answer { display: none; padding: 0 0 13px; }
.faq-item__answer p { font-size: 0.84rem; color: #555; margin: 0; line-height: 1.6; }
.faq-item.open .faq-item__answer { display: block; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }

/* Prodotti correlati */
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #eee; }

.product-card__body { padding: 10px 12px 4px; }
.product-card__title { font-size: 0.84rem; margin: 0; line-height: 1.3; }
.product-card__title a { color: #0d2137; text-decoration: none; }
.product-card__title a:hover { color: #e8a800; }
.product-card__cta {
  display: block; text-align: center;
  padding: 9px; background: #0d2137; color: #fff !important;
  font-size: 0.8rem; font-weight: 600; text-decoration: none !important;
  transition: background 0.2s; margin: 8px 0 0;
}
.product-card__cta:hover { background: #e8a800; color: #0d2137 !important; }

/* Sticky bar mobile */
.product-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0d2137; color: #fff;
  padding: 10px 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.2);
  display: none;
}
@media (max-width: 900px) { .product-sticky-bar { display: block; } }
.product-sticky-bar.visible { transform: translateY(0); }
.product-sticky-bar__content {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.product-sticky-bar p { font-size: 0.8rem; margin: 0; }
.product-sticky-bar small { color: #aaa; }
.product-sticky-bar__btns { display: flex; gap: 7px; flex-shrink: 0; }
.btn-sticky-preventivo {
  background: #e8a800; color: #0d2137 !important;
  padding: 8px 16px; border-radius: 6px;
  font-weight: 700; text-decoration: none !important; font-size: 0.82rem; white-space: nowrap;
}
.btn-sticky-wa {
  background: #25d366; color: #fff !important;
  padding: 8px 16px; border-radius: 6px;
  font-weight: 600; text-decoration: none !important; font-size: 0.82rem; white-space: nowrap;
}

/* Nascondi prezzi */
.product-single__price, .price,
[class*='price--'], .shopify-payment-button,
.product-form__cart-submit { display: none !important; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* === PRODUCT PAGE CUSTOM CSS END === */

/* Riga form + colori: stessa altezza, scrollabile se colori più alti */
.preventivo-colors-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch; /* entrambe le colonne stessa altezza */
}
@media (max-width: 900px) {
  .preventivo-colors-row { grid-template-columns: 1fr; }
}

/* La colonna del form occupa tutta l'altezza disponibile */
.preventivo-colors-row > div:first-child {
  display: flex;
  flex-direction: column;
}
.preventivo-colors-row > div:first-child .preventivo-box {
  flex: 1; /* si espande per riempire l'altezza */
}

/* Pannello colori: scrollabile se serve */
.colors-panel {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px;
  background: #fafafa;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  max-height: 620px; /* scroll se i colori sono troppi */
}
.colors-panel__header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px; padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.colors-panel__icon { font-size: 1.3rem; }
.colors-panel__header strong { display: block; font-size: 0.86rem; color: #0d2137; }
.colors-panel__header span { font-size: 0.73rem; color: #888; }

/* Tab switcher */
.colors-tabs {
  display: flex; gap: 6px; margin-bottom: 10px;
}
.colors-tab {
  flex: 1; padding: 6px 8px; border-radius: 6px;
  border: 1px solid #ddd; background: #fff;
  font-size: 0.76rem; font-weight: 600; cursor: pointer;
  color: #666; transition: all 0.15s; font-family: inherit;
}
.colors-tab.active {
  background: #0d2137; border-color: #0d2137; color: #fff;
}

/* Sezione label */
.colors-section-label {
  font-size: 0.7rem; font-weight: 700; color: #555;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin: 10px 0 6px; display: flex; align-items: center; gap: 6px;
}
.colors-count {
  background: #e8f0fe; color: #1a3a6b;
  padding: 1px 6px; border-radius: 50px;
  font-size: 0.66rem; font-weight: 700; text-transform: none;
}
.colors-badge {
  background: #fff3cd; color: #856404;
  padding: 1px 6px; border-radius: 50px;
  font-size: 0.66rem; font-weight: 700; text-transform: none;
}

/* Griglia cerchietti */

.color-dot {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: default; position: relative;
  transition: transform 0.15s; flex-shrink: 0;
}
.color-dot:hover { transform: scale(1.25); z-index: 2; }
.color-dot span {
  font-size: 0.5rem; font-weight: 700;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 0 3px rgba(0,0,0,0.7);
  text-align: center; line-height: 1.1; pointer-events: none;
}
.color-dot--goffrato { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25); }
.color-dot--special  { box-shadow: 0 0 0 2px #aaa; }
.color-dot--wood     { border-radius: 5px; }
.color-dot--lucido   { box-shadow: inset 0 2px 3px rgba(255,255,255,0.4); }

/* Tooltip */
.color-dot[title]:hover::after {
  content: attr(title);
  position: absolute; bottom: 115%; left: 50%;
  transform: translateX(-50%);
  background: #0d2137; color: #fff;
  padding: 3px 7px; border-radius: 4px;
  font-size: 0.63rem; white-space: nowrap;
  pointer-events: none; z-index: 10;
}

.colors-note {
  font-size: 0.66rem; color: #aaa; margin-top: 8px;
  line-height: 1.4; font-style: italic;
}

.colors-panel {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 16px;
  background: #fafafa;
  height: fit-content;
}
.colors-panel__header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.colors-panel__icon { font-size: 1.4rem; }
.colors-panel__header strong { display: block; font-size: 0.88rem; color: #0d2137; }
.colors-panel__header span { font-size: 0.75rem; color: #888; }

/* Tab switcher */
.colors-tabs {
  display: flex; gap: 6px; margin-bottom: 12px;
}
.colors-tab {
  flex: 1; padding: 7px 10px; border-radius: 6px;
  border: 1px solid #ddd; background: #fff;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  color: #666; transition: all 0.15s; font-family: inherit;
}
.colors-tab.active {
  background: #0d2137; border-color: #0d2137;
  color: #fff;
}

/* Sezione label */
.colors-section-label {
  font-size: 0.72rem; font-weight: 700; color: #555;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin: 10px 0 7px; display: flex; align-items: center; gap: 6px;
}
.colors-count {
  background: #e8f0fe; color: #1a3a6b;
  padding: 1px 7px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; text-transform: none;
}
.colors-badge {
  background: #fff3cd; color: #856404;
  padding: 1px 7px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; text-transform: none;
}

/* Griglia cerchietti */

.color-dot {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: default; position: relative;
  transition: transform 0.15s;
  flex-shrink: 0;
}
.color-dot:hover { transform: scale(1.2); z-index: 2; }
.color-dot span {
  font-size: 0.52rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 0 3px rgba(0,0,0,0.6);
  text-align: center; line-height: 1.1;
  pointer-events: none;
}
/* Varianti visive */
.color-dot--goffrato { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.3); }
.color-dot--special  { box-shadow: 0 0 0 2px #999; }
.color-dot--wood     { border-radius: 6px; }
.color-dot--lucido   { box-shadow: inset 0 2px 4px rgba(255,255,255,0.4); }

/* Tooltip on hover */
.color-dot[title]:hover::after {
  content: attr(title);
  position: absolute; bottom: 110%; left: 50%;
  transform: translateX(-50%);
  background: #0d2137; color: #fff;
  padding: 3px 8px; border-radius: 4px;
  font-size: 0.65rem; white-space: nowrap;
  pointer-events: none; z-index: 10;
}

.colors-note {
  font-size: 0.68rem; color: #999; margin-top: 8px;
  line-height: 1.4; font-style: italic;
}

/* Layout form + colori affiancati */
.preventivo-colors-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) {
  .preventivo-colors-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   PRODUCT PAGE — GRIGLIA 4 QUADRANTI
   ══════════════════════════════════════════════ */

/* Griglia 3 colonne: gallery | info+colori | form */
.product-grid3 {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 16px;
  padding: 24px 20px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 1024px) {
  .product-grid3 {
    grid-template-columns: 1fr 1fr;
  }
  .product-grid3__cell--form {
    grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
  .product-grid3 {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }
  .product-grid3__cell--gallery .product-gallery__main img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
  .product-grid3__cell {
    padding: 14px;
  }
}

/* Celle */
.product-grid3__cell {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  box-sizing: border-box;
}

/* Col 1 Gallery */
.product-grid3__cell--gallery {}
.product-grid3__cell--gallery /* gallery-main fixed */
.product-grid3__cell--gallery .product-gallery__main img {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  max-width: 600px;
  object-fit: cover !important;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* Col 2 Info + Colori */
.product-grid3__cell--info {}

/* Col 3 Form */
.product-grid3__cell--form {
  border: 2px solid #e8a800;
}
.product-grid3__cell--form .preventivo-box {
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Pannello colori inline nel blocco info */
.colors-panel--inline {
  margin-top: 20px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px;
  background: #f9f9f9;
  max-height: 420px;
  overflow-y: auto;
}

/* Trust bar */
.product-trust-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 0;
}
.product-trust-bar__items {
  display: flex; gap: 20px; flex-wrap: wrap; justify-content: center;
}
.product-trust-bar__item {
  display: flex; align-items: center; gap: 8px; font-size: 0.8rem;
}
.product-trust-bar__item strong { display: block; color: #0d2137; font-size: 0.78rem; }
.product-trust-bar__item span:last-child { color: #666; font-size: 0.74rem; }
@media (max-width: 768px) {
  .product-trust-bar__item span:last-child { display: none; }
}

/* Gallery */
.product-gallery-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.pgbadge { padding: 3px 10px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.pgbadge--steel { background: #e8f0fe; color: #1a3a6b; }
.pgbadge--blue  { background: #e3f2fd; color: #0d47a1; }

.product-gallery__main {
  width: 100%;
  border-radius: 8px;
  background: #f5f7fa;
  overflow: hidden;
}
.product-gallery__main img {
  width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 8px;
}
.product-gallery__placeholder {
  width: 100%; height: 300px;
  display: flex; align-items: center; justify-content: center; font-size: 4rem;
}
.product-gallery__thumbs { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.product-gallery__thumb {
  width: 58px; height: 58px; object-fit: cover;
  border-radius: 5px; cursor: pointer; border: 2px solid #e0e0e0; transition: border-color 0.2s;
}
.product-gallery__thumb.active,
.product-gallery__thumb:hover { border-color: #e8a800; }

/* Quick benefits */
.product-quick-benefits { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.product-quick-benefits__item {
  display: flex; align-items: center; gap: 5px;
  background: #f8f9fa; border-radius: 5px; padding: 4px 9px; font-size: 0.76rem; color: #444;
}

/* Info colonna */
.product-made-in { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 8px; }
.made-in-badge { background: #0d2137; color: #fff; padding: 3px 10px; border-radius: 50px; font-size: 0.74rem; font-weight: 600; }
.material-badge { background: #e8f0fe; color: #1a3a6b; padding: 3px 10px; border-radius: 50px; font-size: 0.74rem; font-weight: 600; }
.product-title { font-size: 1.4rem; font-weight: 700; color: #0d2137; line-height: 1.2; margin: 0 0 8px; }
.product-subtitle { color: #555; font-size: 0.88rem; margin-bottom: 14px; line-height: 1.5; }

/* Varianti */
.product-variants { margin-bottom: 16px; }
.variant-group { margin-bottom: 12px; }
.variant-group__label { font-size: 0.7rem; font-weight: 700; color: #555; letter-spacing: 0.08em; margin: 0 0 6px; display: block; }
.variant-group__options { display: flex; flex-wrap: wrap; gap: 5px; }
.variant-btn {
  padding: 5px 11px; border: 2px solid #ddd; border-radius: 5px;
  background: #fff; color: #0d2137; font-size: 0.79rem; font-weight: 500;
  cursor: pointer; transition: all 0.15s; font-family: inherit;
}
.variant-btn:hover { border-color: #e8a800; color: #e8a800; }
.variant-btn.active { background: #0d2137; border-color: #0d2137; color: #fff; font-weight: 700; }

.product-info__trust { list-style: none; padding: 0; margin: 0; border-top: 1px solid #eee; padding-top: 12px; }
.product-info__trust li { padding: 5px 0; font-size: 0.84rem; color: #444; border-bottom: 1px solid #f5f5f5; }

/* Form */
.preventivo-box__tag { display: inline-block; background: #e8a800; color: #0d2137; padding: 2px 10px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; margin-bottom: 6px; }
.preventivo-box__title { font-size: 0.92rem; font-weight: 700; color: #0d2137; margin: 0 0 3px; line-height: 1.3; }
.preventivo-box__desc { font-size: 0.78rem; color: #666; margin-bottom: 10px; }
.preventivo-form input,
.preventivo-form select,
.preventivo-form textarea {
  width: 100%; padding: 8px 10px; border: 1px solid #ddd; border-radius: 5px;
  font-size: 0.82rem; color: #333; background: #fafafa; margin-bottom: 6px;
  box-sizing: border-box; transition: border-color 0.2s; font-family: inherit;
}
.preventivo-form input:focus,
.preventivo-form select:focus,
.preventivo-form textarea:focus { outline: none; border-color: #e8a800; background: #fff; }
.preventivo-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
@media (max-width: 480px) { .preventivo-form__row { grid-template-columns: 1fr; } }
.btn-preventivo-submit {
  display: block; width: 100%; background: #e8a800; color: #0d2137 !important;
  padding: 12px; border-radius: 7px; font-size: 0.92rem; font-weight: 700;
  text-align: center; border: none; cursor: pointer; transition: background 0.2s;
  text-decoration: none !important; margin-bottom: 7px; font-family: inherit;
}
.btn-preventivo-submit:hover { background: #ffc107; }
.btn-whatsapp-submit {
  display: block; width: 100%; background: #25d366; color: #fff !important;
  padding: 10px; border-radius: 7px; font-size: 0.88rem; font-weight: 600;
  text-align: center; text-decoration: none !important; transition: background 0.2s; margin-bottom: 9px;
}
.btn-whatsapp-submit:hover { background: #1ebe5a; }
.preventivo-form__trust { display: flex; flex-wrap: wrap; gap: 5px; font-size: 0.7rem; color: #555; margin-bottom: 4px; }
.preventivo-form__privacy { font-size: 0.67rem; color: #999; }
.preventivo-success { text-align: center; padding: 14px; }
.preventivo-success div { font-size: 2.5rem; margin-bottom: 8px; }
.preventivo-success h3 { color: #2e7d32; margin-bottom: 6px; }

/* Colori */
.colors-panel__header { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid #eee; }
.colors-panel__icon { font-size: 1.2rem; }
.colors-panel__header strong { display: block; font-size: 0.84rem; color: #0d2137; }
.colors-panel__header span { font-size: 0.71rem; color: #888; }
.colors-tabs { display: flex; gap: 5px; margin-bottom: 10px; }
.colors-tab {
  flex: 1; padding: 6px 8px; border-radius: 5px; border: 1px solid #ddd;
  background: #fff; font-size: 0.74rem; font-weight: 600; cursor: pointer;
  color: #666; transition: all 0.15s; font-family: inherit;
}
.colors-tab.active { background: #0d2137; border-color: #0d2137; color: #fff; }
.colors-section-label {
  font-size: 0.68rem; font-weight: 700; color: #555; text-transform: uppercase;
  letter-spacing: 0.05em; margin: 8px 0 5px; display: flex; align-items: center; gap: 5px;
}
.colors-count { background: #e8f0fe; color: #1a3a6b; padding: 1px 5px; border-radius: 50px; font-size: 0.64rem; font-weight: 700; text-transform: none; }
.colors-badge { background: #fff3cd; color: #856404; padding: 1px 5px; border-radius: 50px; font-size: 0.64rem; font-weight: 700; text-transform: none; }

.color-dot {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: default; position: relative; transition: transform 0.15s; flex-shrink: 0;
}
.color-dot:hover { transform: scale(1.3); z-index: 2; }
.color-dot span { font-size: 0.46rem; font-weight: 700; color: rgba(255,255,255,0.92); text-shadow: 0 0 3px rgba(0,0,0,0.7); text-align: center; line-height: 1.1; pointer-events: none; }
.color-dot--goffrato { box-shadow: inset 0 0 0 2px rgba(255,255,255,0.25); }
.color-dot--special  { box-shadow: 0 0 0 2px #999; }
.color-dot--wood     { border-radius: 4px; }
.color-dot--lucido   { box-shadow: inset 0 2px 3px rgba(255,255,255,0.4); }
.color-dot[title]:hover::after {
  content: attr(title); position: absolute; bottom: 115%; left: 50%;
  transform: translateX(-50%); background: #0d2137; color: #fff;
  padding: 3px 7px; border-radius: 4px; font-size: 0.62rem; white-space: nowrap;
  pointer-events: none; z-index: 10;
}
.colors-note { font-size: 0.64rem; color: #aaa; margin-top: 6px; line-height: 1.4; font-style: italic; }

/* Sezioni inferiori */
.section-title { font-size: 1.2rem; font-weight: 700; color: #0d2137; margin: 0 0 20px; padding-bottom: 8px; border-bottom: 3px solid #e8a800; display: inline-block; }
.product-benefits, .product-usecases, .product-description-full, .product-why, .product-faq, .product-related {
  padding: 36px 20px; border-top: 1px solid #eee; max-width: 1200px; margin: 0 auto;
}
.product-benefits__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 768px) { .product-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-benefits__grid { grid-template-columns: 1fr; } }
.benefit-card { padding: 14px; background: #f8f9fa; border-radius: 9px; }
.benefit-card__icon { font-size: 1.4rem; display: block; margin-bottom: 6px; }
.benefit-card h3 { font-size: 0.88rem; color: #0d2137; margin: 0 0 5px; }
.benefit-card p { font-size: 0.8rem; color: #666; margin: 0; line-height: 1.5; }
.product-usecases__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 768px) { .product-usecases__grid { grid-template-columns: repeat(2, 1fr); } }
.usecase-card { padding: 12px; background: #f8f9fa; border-radius: 7px; border-left: 3px solid #e8a800; }
.usecase-card span { font-size: 1.2rem; display: block; margin-bottom: 3px; }
.usecase-card strong { font-size: 0.82rem; color: #0d2137; display: block; margin-bottom: 2px; }
.usecase-card p { font-size: 0.76rem; color: #666; margin: 0; }
.product-description-full__content h2 { font-size: 1.1rem; color: #0d2137; margin: 16px 0 6px; }
.product-description-full__content h3 { font-size: 0.96rem; color: #0d2137; margin: 12px 0 4px; }
.product-description-full__content ul { padding-left: 16px; }
.product-description-full__content li { margin-bottom: 4px; color: #444; font-size: 0.86rem; }
.product-description-full__content p { color: #444; line-height: 1.6; font-size: 0.86rem; }
.product-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 768px) { .product-why__grid { grid-template-columns: 1fr; } }
.why-card { padding: 14px; border: 1px solid #e0e0e0; border-radius: 7px; }
.why-card h3 { font-size: 0.88rem; color: #0d2137; margin: 0 0 5px; }
.why-card p { font-size: 0.8rem; color: #666; margin: 0; line-height: 1.5; }
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-item__question {
  width: 100%; text-align: left; padding: 12px 0; background: none; border: none;
  font-size: 0.88rem; font-weight: 600; color: #0d2137; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; font-family: inherit;
}
.faq-item__icon { font-size: 1.1rem; color: #e8a800; transition: transform 0.2s; flex-shrink: 0; margin-left: 8px; }
.faq-item__answer { display: none; padding: 0 0 12px; }
.faq-item__answer p { font-size: 0.82rem; color: #555; margin: 0; line-height: 1.6; }
.faq-item.open .faq-item__answer { display: block; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
.product-card { background: #fff; border-radius: 9px; overflow: hidden; border: 1px solid #eee; }

.product-card__body { padding: 9px 10px 3px; }
.product-card__title { font-size: 0.82rem; margin: 0; line-height: 1.3; }
.product-card__title a { color: #0d2137; text-decoration: none; }
.product-card__title a:hover { color: #e8a800; }
.product-card__cta { display: block; text-align: center; padding: 8px; background: #0d2137; color: #fff !important; font-size: 0.78rem; font-weight: 600; text-decoration: none !important; transition: background 0.2s; }
.product-card__cta:hover { background: #e8a800; color: #0d2137 !important; }
.product-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #0d2137; color: #fff; padding: 10px 16px; transform: translateY(100%); transition: transform 0.3s ease; z-index: 999; box-shadow: 0 -3px 14px rgba(0,0,0,0.2); display: none; }
@media (max-width: 900px) { .product-sticky-bar { display: block; } }
.product-sticky-bar.visible { transform: translateY(0); }
.product-sticky-bar__content { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.product-sticky-bar p { font-size: 0.79rem; margin: 0; }
.product-sticky-bar small { color: #aaa; }
.product-sticky-bar__btns { display: flex; gap: 7px; flex-shrink: 0; }
.btn-sticky-preventivo { background: #e8a800; color: #0d2137 !important; padding: 8px 14px; border-radius: 5px; font-weight: 700; text-decoration: none !important; font-size: 0.8rem; white-space: nowrap; }
.btn-sticky-wa { background: #25d366; color: #fff !important; padding: 8px 14px; border-radius: 5px; font-weight: 600; text-decoration: none !important; font-size: 0.8rem; white-space: nowrap; }
.product-single__price, .price, [class*="price--"], .shopify-payment-button, .product-form__cart-submit { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ── COLOR PREVIEW BOX ── */
.color-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8f9fa;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 10px;
  min-height: 52px;
  transition: all 0.2s;
}
.color-preview.has-selection {
  background: #fff;
  border-color: #e8a800;
  box-shadow: 0 2px 8px rgba(232,168,0,0.15);
}
.color-preview__swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  flex-shrink: 0;
  background: #e8e8e8;
  transition: all 0.2s;
}
.color-preview.has-selection .color-preview__swatch {
  border-color: transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.color-preview__info {
  flex: 1;
  min-width: 0;
}
.color-preview__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d2137;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.color-preview:not(.has-selection) .color-preview__label {
  color: #aaa;
  font-weight: 400;
  font-style: italic;
}
.color-preview__sub {
  display: block;
  font-size: 0.7rem;
  color: #888;
  margin-top: 1px;
}
.color-preview__clear {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: none;
  background: #eee;
  color: #666;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}
.color-preview__clear:hover { background: #ddd; color: #333; }

/* Dot selezionato */
.color-dot {
  cursor: pointer !important;
  transition: transform 0.15s, box-shadow 0.15s;
}
.color-dot.selected {
  transform: scale(1.25) !important;
  box-shadow: 0 0 0 3px #e8a800, 0 0 0 5px rgba(232,168,0,0.3) !important;
  z-index: 3;
}
.color-dot:hover:not(.selected) {
  transform: scale(1.15);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Nascondi testo dentro i color dot */
.color-dot span { display: none !important; }

/* ── Color dots: no tooltip, no text, selection ring ── */
.color-dot span { display: none !important; }
.color-dot[title]:hover::after { display: none !important; }
.color-dot { cursor: pointer; transition: transform 0.15s; }
.color-dot:hover { transform: scale(1.15); }
.color-dot.selected {
  transform: scale(1.3) !important;
  box-shadow: 0 0 0 3px #e8a800, 0 0 0 5px rgba(232,168,0,0.3) !important;
  z-index: 5 !important;
  position: relative;
}
/* Preview box */
.color-preview {
  display: flex; align-items: center; gap: 10px;
  background: #f8f9fa; border: 1.5px solid #e8e8e8;
  border-radius: 8px; padding: 9px 12px;
  margin-bottom: 10px; min-height: 52px; transition: all 0.2s;
}
.color-preview.active { background:#fff; border-color:#e8a800; box-shadow:0 2px 8px rgba(232,168,0,.15); }
.color-preview__info { flex:1; min-width:0; }
.color-preview__label { display:block; font-size:0.84rem; font-weight:600; color:#aaa; font-style:italic; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.color-preview.active .color-preview__label { color:#0d2137; font-style:normal; }
.color-preview__sub { display:block; font-size:0.7rem; color:#888; margin-top:2px; }
.color-preview__clear { width:20px; height:20px; border-radius:50%; border:none; background:#eee; color:#666; font-size:0.7rem; cursor:pointer; display:flex; align-items:center; justify-content:center; flex-shrink:0; padding:0; }
.color-preview__clear:hover { background:#ddd; }

/* ── Colors panel alignment fix ── */
.color-dot { cursor:pointer; position:relative; transition:transform .15s,box-shadow .15s; }
.color-dot span { display:none !important; }
.color-dot[title]:hover::after { display:none !important; }
.color-dot:hover:not(.selected) { transform:scale(1.12); }
.color-dot.selected { transform:scale(1.28) !important; box-shadow:0 0 0 3px #e8a800,0 0 0 5px rgba(232,168,0,.25) !important; z-index:5 !important; }
.color-dot--special { box-shadow:0 0 0 2px #999; }
.color-dot--special.selected { box-shadow:0 0 0 3px #e8a800,0 0 0 5px rgba(232,168,0,.25) !important; }

.color-dot { cursor:pointer;position:relative;transition:transform .15s,box-shadow .15s;flex-shrink:0; }
.color-dot span { display:none!important; }
.color-dot[title]:hover::after { display:none!important; }
.color-dot:hover:not(.selected) { transform:scale(1.12); }
.color-dot.selected { transform:scale(1.28)!important;box-shadow:0 0 0 3px #e8a800,0 0 0 5px rgba(232,168,0,.25)!important;z-index:5!important; }
.color-dot--special { box-shadow:0 0 0 2px #999; }
.color-dot--special.selected { box-shadow:0 0 0 3px #e8a800,0 0 0 5px rgba(232,168,0,.25)!important; }

/* ── dots spacing fix ── */
.colors-panel { padding: 16px !important; }
.colors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 6px;
  padding: 4px 0 4px 4px;
}
.color-dot {
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  cursor: pointer !important;
  position: relative !important;
  transition: transform .15s, box-shadow .15s !important;
}
.color-dot span { display: none !important; }
.color-dot:hover:not(.selected) { transform: scale(1.12) !important; }
.color-dot.selected {
  transform: scale(1.28) !important;
  box-shadow: 0 0 0 3px #e8a800, 0 0 0 5px rgba(232,168,0,.25) !important;
  z-index: 5 !important;
}

/* ── Colors panel: no scrollbar, zinco box ── */
.colors-panel--inline { overflow:visible!important; max-height:none!important; }
.colors-grid { display:flex;flex-wrap:wrap;gap:6px;margin-bottom:4px; }
.color-dot { cursor:pointer;position:relative;width:28px;height:28px;border-radius:50%;flex-shrink:0;transition:transform .15s,box-shadow .15s; }
.color-dot span { display:none!important; }
.color-dot[title]:hover::after { display:none!important; }
.color-dot:hover:not(.selected) { transform:scale(1.12); }
.color-dot.selected { transform:scale(1.28)!important;box-shadow:0 0 0 3px #e8a800,0 0 0 5px rgba(232,168,0,.25)!important;z-index:5!important; }
.color-dot--special { box-shadow:0 0 0 2px #999; }
.color-dot--special.selected { box-shadow:0 0 0 3px #e8a800,0 0 0 5px rgba(232,168,0,.25)!important; }
.color-dot--wood { border-radius:5px; }
/* Zinco box */
.zinco-box { display:flex;align-items:center;gap:10px;background:#f0f2f4;border:1.5px solid #c8d0d8;border-radius:8px;padding:10px 12px;margin-bottom:10px; }
.zinco-dot { width:36px;height:36px;border-radius:50%;flex-shrink:0;box-shadow:0 2px 6px rgba(0,0,0,.2); }
.zinco-info strong { display:block;font-size:.84rem;color:#0d2137; }
.zinco-info span { font-size:.72rem;color:#888; }
/* Preview */
.color-preview { display:flex;align-items:center;gap:10px;background:#f8f9fa;border:1.5px solid #e8e8e8;border-radius:8px;padding:9px 12px;margin-bottom:10px;min-height:52px; }
.color-preview__swatch { width:34px;height:34px;border-radius:50%;flex-shrink:0;background:#e0e0e0;border:2px solid #ddd; }
.color-preview__info { flex:1;min-width:0; }
.color-preview__label { display:block;font-size:.84rem;color:#aaa;font-style:italic;white-space:nowrap;overflow:hidden;text-overflow:ellipsis; }
.color-preview__sub { display:block;font-size:.7rem;color:#888;margin-top:2px; }
.color-preview__clear { width:20px;height:20px;border-radius:50%;border:none;background:#eee;color:#666;font-size:.7rem;cursor:pointer;flex-shrink:0;padding:0; }

/* ── PANNELLO COLORI FULL WIDTH ────────────────────────────── */
.colors-panel-fullwidth {
  padding: 0 20px 24px;
  max-width: 1300px;
  margin: 0 auto;
}
.colors-panel-fullwidth__inner {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px 24px;
}
.colors-panel-fullwidth__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  margin-top: 16px;
  align-items: start;
}
.colors-panel-fullwidth__tabs-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.colors-tabs--vertical {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.colors-tabs--vertical .colors-tab {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  border-radius: 8px;
}
.colors-panel-fullwidth__colors-col .colors-grid {
  grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
}
.color-preview--large {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .colors-panel-fullwidth__body {
    grid-template-columns: 1fr;
  }
  .colors-tabs--vertical {
    flex-direction: row;
  }
}

/* ── LAYOUT 2 COLONNE PRODOTTO ─────────────────────────────── */
.product-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .product-grid2 {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 12px;
  }
}

/* Colonna sinistra */
.product-grid2__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-grid2__gallery {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
}
.product-grid2__gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.colors-panel-left {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
}

/* Colonna destra */
.product-grid2__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}
.product-grid2__right .product-made-in,
.product-grid2__right .product-title,
.product-grid2__right .product-subtitle,
.product-grid2__right .product-info__trust {
  background: #fff;
}
.product-grid2__right .preventivo-box {
  border: 2px solid #e8a800;
  border-radius: 12px;
  padding: 20px;
}

/* ══════════════════════════════════════════════
   LAYOUT 2 COLONNE PAGINA PRODOTTO (pg2)
   sinistra: gallery + colori | destra: info + form
   ══════════════════════════════════════════════ */
.pg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 20px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .pg2 { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
}

/* Colonna sinistra */
.pg2__left { display: flex; flex-direction: column; gap: 16px; }

/* Gallery */
.pg2__gallery {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
}
.pg2__main-img { width: 100%; border-radius: 8px; overflow: hidden; }
.pg2__main-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Pannello colori */
.pg2__colors {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 16px;
}
.pg2__colors-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
}
.pg2__colors-header strong { display: block; color: #0d2137; }
.pg2__colors-header span:last-child { color: #888; font-size: .8rem; }

/* Colonna destra */
.pg2__right { display: flex; flex-direction: column; gap: 16px; }

/* Info */
.pg2__info {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
}

/* Form */
.pg2__form {
  border: 2px solid #e8a800;
  border-radius: 12px;
  overflow: hidden;
}
.pg2__form .preventivo-box {
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════════════
   PDP HERO — layout classico: immagine sinistra | info destra
   ═══════════════════════════════════════════════════════════ */
.pdp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 20px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 900px) {
  .pdp-hero { grid-template-columns: 1fr; padding: 12px; gap: 16px; }
}

/* Gallery sinistra */
.pdp-hero__gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pdp-gallery-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-gallery__main {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f7fa;
  border: 1px solid #e8e8e8;
}
.pdp-gallery__main img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.pdp-gallery__thumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pdp-gallery__thumb {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  border: 2px solid #e0e0e0; transition: border-color 0.2s;
}
.pdp-gallery__thumb.active,
.pdp-gallery__thumb:hover { border-color: #e8a800; }
.pdp-gallery__placeholder {
  height: 400px; display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.pdp-quick-benefits {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px;
}
.pdp-quick-benefit {
  display: flex; align-items: center; gap: 5px;
  font-size: .82rem; color: #444;
}

/* Info destra */
.pdp-hero__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 20px;
}
.pdp-badges-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pdp-title {
  font-size: 1.55rem;
  font-weight: 700;
  color: #0d2137;
  line-height: 1.25;
  margin: 0;
}
.pdp-subtitle {
  color: #555;
  font-size: .95rem;
  line-height: 1.55;
  margin: 0;
}
.pdp-trust-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.pdp-trust-list li { font-size: .9rem; color: #333; }

/* Box preventivo */
.pdp-form-box {
  background: #fff;
  border: 2px solid #e8a800;
  border-radius: 14px;
  padding: 20px;
}
.pdp-form-box__tag {
  display: inline-block;
  background: #e8a800;
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.pdp-form-box__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d2137;
  margin: 0 0 4px;
}
.pdp-form-box__desc { font-size: .85rem; color: #666; margin: 0 0 12px; }

/* Sezione colori full-width */
.pdp-colors {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 24px;
}
.pdp-colors__inner {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 20px 24px;
}
.pdp-colors__header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.pdp-colors__header strong { font-size: 1rem; color: #0d2137; }
.pdp-colors__header span:last-child { font-size: .83rem; color: #888; }

/* ═══════════════════════════════════════════════════
   PDP v3 — 3 blocchi: hero | contenuto | colori+form
   ═══════════════════════════════════════════════════ */

/* BLOCCO 1: immagine | info */
.pdp-b1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 24px 20px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 860px) {
  .pdp-b1 { grid-template-columns: 1fr; gap: 16px; padding: 14px; }
}

.pdp-b1__gallery { display: flex; flex-direction: column; gap: 10px; }
.pdp-b1__badges  { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-b1__img-wrap {
  border-radius: 12px; overflow: hidden;
  background: #f5f7fa; border: 1px solid #eee;
}
.pdp-b1__img-wrap img { width: 100%; height: auto; display: block; }
.pdp-b1__placeholder { height: 380px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.pdp-b1__thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-b1__thumb {
  width: 70px; height: 70px; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  border: 2px solid #e0e0e0; transition: border-color .2s;
}
.pdp-b1__thumb.active, .pdp-b1__thumb:hover { border-color: #e8a800; }

.pdp-b1__info { display: flex; flex-direction: column; gap: 18px; }
.pdp-b1__meta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.pdp-b1__title { font-size: 1.6rem; font-weight: 700; color: #0d2137; line-height: 1.25; margin: 0; }
.pdp-b1__subtitle { color: #555; font-size: .95rem; line-height: 1.6; margin: 0; }
.pdp-b1__trust { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pdp-b1__trust li { font-size: .9rem; color: #333; }
.pdp-b1__trust a { color: #e8a800; text-decoration: none; }

.pdp-b1__cta-box {
  background: #f9f9f9; border: 1px solid #e8e8e8;
  border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.pdp-b1__cta-label { font-size: .85rem; color: #666; margin: 0; font-weight: 600; }
.pdp-b1__cta-btn {
  display: block; text-align: center;
  background: #e8a800; color: #fff;
  padding: 13px; border-radius: 8px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: background .2s;
}
.pdp-b1__cta-btn:hover { background: #cf9500; }
.pdp-b1__wa-btn {
  display: block; text-align: center;
  background: #25d366; color: #fff;
  padding: 13px; border-radius: 8px;
  font-weight: 700; font-size: .95rem;
  text-decoration: none; transition: background .2s;
}
.pdp-b1__wa-btn:hover { background: #1ebe5a; }

/* BLOCCO 2: contenuto full-width */
.pdp-b2 {
  max-width: 1200px; margin: 0 auto; padding: 0 20px 24px;
}
.pdp-b2__content { font-size: .95rem; line-height: 1.7; color: #333; }

/* BLOCCO 3: colori | form */
.pdp-b3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 0 20px 32px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 860px) {
  .pdp-b3 { grid-template-columns: 1fr; gap: 16px; padding: 0 14px 24px; }
}

.pdp-b3__colors {
  background: #fff; border: 1px solid #e8e8e8;
  border-radius: 14px; padding: 20px;
}
.pdp-b3__colors-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; font-size: .9rem;
}
.pdp-b3__colors-header strong { color: #0d2137; font-size: 1rem; }
.pdp-b3__colors-header span:last-child { color: #888; font-size: .8rem; }

.pdp-b3__form {
  background: #fff; border: 2px solid #e8a800;
  border-radius: 14px; padding: 20px;
}
.pdp-b3__form-tag {
  display: inline-block; background: #e8a800; color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
}
.pdp-b3__form-title { font-size: 1.05rem; font-weight: 700; color: #0d2137; margin: 0 0 4px; }
.pdp-b3__form-desc  { font-size: .83rem; color: #666; margin: 0 0 14px; }

/* ── TABELLA COMPARAZIONE ───────────────────────────────────── */
.pdp-b1__compare {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  font-size: .85rem;
}
.pdp-b1__compare-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  border-bottom: 1px solid #f0f0f0;
}
.pdp-b1__compare-row:last-child { border-bottom: none; }
.pdp-b1__compare-row > div {
  padding: 9px 12px;
  display: flex;
  align-items: center;
}
.pdp-b1__compare-row--header {
  background: #0d2137;
  font-weight: 700;
  font-size: .8rem;
}
.pdp-b1__compare-row--header > div { color: #fff; }
.pdp-b1__compare-us {
  background: #f0faf4;
  justify-content: center;
  font-weight: 600;
  color: #1a7a40;
}
.pdp-b1__compare-them {
  background: #fff8f8;
  justify-content: center;
  color: #c0392b;
  font-size: .78rem;
}
.pdp-b1__compare-row:not(.pdp-b1__compare-row--header):nth-child(even) {
  background: #fafafa;
}
.pdp-b1__compare-row:not(.pdp-b1__compare-row--header):nth-child(even) .pdp-b1__compare-us {
  background: #e8f7ee;
}
.pdp-b1__compare-row:not(.pdp-b1__compare-row--header):nth-child(even) .pdp-b1__compare-them {
  background: #fff2f2;
}

/* ── TABELLA COMPARAZIONE IN DESCRIZIONE ───────────────────── */
.pdp-compare-wrap { margin-bottom: 32px; margin-left: -24px; margin-right: -24px; }
.pdp-compare-title {
  font-size: 1.2rem; font-weight: 700; color: #0d2137;
  margin-bottom: 14px;
}
.pdp-compare {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  font-size: .88rem;
}
.pdp-compare__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #f0f0f0;
}
.pdp-compare__row:last-child { border-bottom: none; }
.pdp-compare__row > div {
  padding: 11px 16px;
  display: flex;
  align-items: center;
}
.pdp-compare__row--header { border-bottom: none; }
.pdp-compare__row--header > div { padding: 0; }
.pdp-compare__row--header .pdp-compare__us {
  background: #1a7a40;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  padding: 12px 10px;
}
.pdp-compare__row--header .pdp-compare__them {
  background: #c0392b;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  padding: 12px 10px;
}
.pdp-compare__row--header > div:first-child {
  background: #0d2137;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
}
.pdp-compare__us {
  background: #f0faf4;
  justify-content: center;
  font-weight: 600;
  color: #1a7a40;
  text-align: center;
  border-left: 1px solid #e0e0e0;
}
.pdp-compare__them {
  background: #fff8f8;
  justify-content: center;
  color: #c0392b;
  font-size: .85rem;
  text-align: center;
  border-left: 1px solid #e0e0e0;
}
.pdp-compare__row:not(.pdp-compare__row--header):nth-child(even) { background: #fafafa; }
.pdp-compare__row:not(.pdp-compare__row--header):nth-child(even) .pdp-compare__us { background: #e8f7ee; }
.pdp-compare__row:not(.pdp-compare__row--header):nth-child(even) .pdp-compare__them { background: #fff2f2; }
@media (max-width: 600px) {
  .pdp-compare__row { grid-template-columns: 1fr 1fr 1fr; font-size: .78rem; }
  .pdp-compare__row > div { padding: 9px 8px; }
}

/* ── MENU MOBILE HAMBURGER ── */
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    padding: 16px 24px 24px;
    gap: 0;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .site-header__nav.is-open {
    display: flex;
  }
  .site-header__nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 1rem;
  }
  .site-header__nav a:last-child {
    border-bottom: none;
    margin-top: 8px;
  }
  .site-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .site-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  body.nav-open {
    overflow: hidden;
  }
}

/* ── PREZZO DINAMICO + RATING ── */
.pdp-price-block { margin: 16px 0 20px; padding: 16px 20px; background: #f8f9fa; border-radius: 8px; border-left: 4px solid #2e7d32; }
.pdp-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.pdp-price__label { font-size: 0.8rem; color: #666; text-transform: uppercase; letter-spacing: 0.5px; }
.pdp-price__amount { font-size: 2rem; font-weight: 800; color: #2e7d32; line-height: 1; }
.pdp-price__compare { font-size: 1rem; color: #999; text-decoration: line-through; }
.pdp-price__note { font-size: 0.78rem; color: #888; margin: 4px 0 12px; }
.pdp-rating { display: flex; align-items: center; gap: 6px; }
.pdp-rating__stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 1px; }
.pdp-rating__score { font-weight: 700; font-size: 0.95rem; color: #333; }
.pdp-rating__count { font-size: 0.85rem; color: #666; }

/* ── LAYOUT PRODOTTO MOBILE ── */
@media (max-width: 768px) {

  /* Stack verticale: immagine sopra, info sotto */
  .pdp-b1 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 !important;
  }

  /* Immagine full-width */
  .pdp-b1__gallery {
    width: 100%;
  }
  .pdp-b1__img-wrap {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
  }
  .pdp-b1__img-wrap img {
    width: 100% !important;
    max-height: 75vw;
    object-fit: cover;
  }

  /* Thumbnails compatte */
  .pdp-b1__thumbs {
    padding: 8px 12px;
    gap: 6px;
  }
  .pdp-b1__thumb {
    width: 56px !important;
    height: 56px !important;
  }

  /* Info con padding laterale */
  .pdp-b1__info {
    padding: 16px !important;
  }

  /* Titolo */
  .pdp-b1__title {
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
  }

  /* Prezzo grande e visibile */
  .pdp-price-block {
    margin: 12px 0 !important;
    padding: 12px 16px !important;
  }
  .pdp-price__amount {
    font-size: 1.7rem !important;
  }

  /* CTA buttons full-width e grandi (min 48px per touch) */
  .pdp-b1__cta-box {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
  }
  .pdp-b1__cta-btn,
  .pdp-b1__wa-btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 14px 16px !important;
    font-size: 1rem !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
  }

  /* Trust bar: scroll orizzontale */
  .product-trust-bar__items {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .product-trust-bar__item {
    min-width: 180px !important;
    flex-shrink: 0 !important;
  }

  /* Sezioni descrizione con padding corretto */
  .pdp-b2,
  .product-benefits,
  .product-usecases,
  .product-description-full,
  .product-why,
  .product-related,
  .pdp-b3 {
    padding: 16px !important;
  }

  /* Tabelle responsive — scroll orizzontale */
  .pdp-b2 table,
  .pdp-b2__content table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  /* Link interni pill */
  .product-internal-links a {
    font-size: 0.82rem !important;
    padding: 5px 10px !important;
  }
}

/* ── IMMAGINI E TABELLE RESPONSIVE NELLA DESCRIZIONE ── */

/* Tutte le immagini nel content prodotto */
.pdp-b2__content img,
.rte img,
.product-description img,
.pdp-b2 img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 4px;
}

/* Tabelle nella descrizione */
.pdp-b2__content table,
.rte table,
.pdp-b2 table {
  max-width: 100%;
  overflow-x: auto;
  display: block;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
}

.pdp-b2__content td,
.pdp-b2__content th,
.rte td,
.rte th {
  padding: 6px 10px;
  border: 1px solid #ddd;
  white-space: nowrap;
  font-size: 0.9rem;
}

/* Wrapper per tabelle — garantisce lo scroll */
.pdp-b2__content table,
.rte table {
  min-width: 0;
}

/* Immagini tecniche/schemi centrate */
.pdp-b2__content img[width],
.rte img[width] {
  max-width: 100% !important;
  width: auto !important;
  height: auto !important;
}

/* Su mobile extra sicurezza */
@media (max-width: 768px) {
  .pdp-b2__content,
  .rte,
  .pdp-b2 {
    overflow-x: hidden;
    word-wrap: break-word;
  }
  .pdp-b2__content img,
  .rte img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .pdp-b2__content table,
  .rte table {
    font-size: 0.82rem !important;
  }
  .pdp-b2__content td,
  .pdp-b2__content th,
  .rte td,
  .rte th {
    padding: 5px 8px !important;
    font-size: 0.82rem !important;
  }
}

/* ══════════════════════════════════════════════════════════
   === CONSOLIDATED FROM gazebo-images-fix.css (2026-04-19) ===
   Immagini quadrate prodotto forzate con padding-bottom 100%
   Versione corretta che sostituisce fix.css e images-fix.css
   ══════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════
   GAZEBOPRO - IMMAGINI QUADRATE FORZATE
   ══════════════════════════════════════ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* TRUCCO CLASSICO: padding-bottom 100% = quadrato garantito */

.product-card__image,

.product-card:hover 

.product-card__badge {
  position: absolute;
  top: 8px; left: 8px;
  background: #e8a800;
  color: #0d2137;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 3;
  white-space: nowrap;
}

.product-card__body {
  padding: 10px 12px;
  flex: 1;
}
.product-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #0d2137;
  line-height: 1.3;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__title a {
  color: inherit;
  text-decoration: none;
}

.product-card__cta {
  display: block;
  text-align: center;
  background: #e8a800;
  color: #0d2137 !important;
  padding: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s;
  text-decoration: none !important;
  border-top: 1px solid rgba(0,0,0,0.05);
}
.product-card__cta:hover { background: #ffc107; }

/* Nascondi prezzi ovunque */
.product-card__price,
.product-info__price,
span.price, div.price,
[class*="price--"] {
  display: none !important;
}
.product-info__add-btn { display: none !important; }

/* Gallery prodotto - quadrata */
.product-gallery__main {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f7fa;
}
.product-main-img {
  position: absolute !important;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}
.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product-gallery__thumb:hover { border-color: #e8a800; }

/* === CONSOLIDATED FROM gazebo-fix.css: solo regole NON duplicate === */
.product-info__add-btn { display: none !important; }
.btn--whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 24px;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 10px;
  transition: background 0.2s;
}
.btn--whatsapp:hover { background: #1ebe5d; text-decoration: none; color: #fff; }
/* ── CTA CARD GRIGLIA ── */
.product-card__cta {
  display: block;
  text-align: center;
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 12px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s;
  text-decoration: none;
}
.product-card__cta:hover {
  background: #ffc107;
  color: var(--color-dark);
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════
   === PRODUCT CARD IMAGES — responsive contain (2026-04-19) ===
   Opzione C: immagine intera, no crop, sfondo neutro
   Sostituisce 5 regole duplicate precedenti
   ══════════════════════════════════════════════════════════ */

.product-card__image-wrap {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* aspect ratio 1:1 fisso = quadrato sempre */
  overflow: hidden;
  background: #f5f7fa;
  text-decoration: none;
}

.product-card__image,
.product-card__img-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;        /* mostra immagine intera, no crop */
  object-position: center;
  padding: 12px;              /* piccolo respiro dai bordi */
  display: block;
  transition: transform 0.3s ease;
  box-sizing: border-box;
}

.product-card__img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  padding: 0;
}

.product-card:hover .product-card__image {
  transform: scale(1.04);
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
  .product-card__image,
  .product-card__img-placeholder {
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .product-card__image,
  .product-card__img-placeholder {
    padding: 8px;
  }
  .product-card:hover .product-card__image {
    transform: none; /* disabilita hover su mobile */
  }
}
