/* SOS Abruzzo – Shop overrides (sfondo chiaro → testi scuri) */
:root {
  --sos-text-strong: #111;
  --sos-text: #222;
  --sos-text-muted: #333;
  --sos-price: #b40000; /* rosso prezzo usato nello shop */
}

/* Limita agli elementi della pagina con body.shop-light */
body.shop-light .product-card,
body.shop-light .shop-card,
body.shop-light .card,
body.shop-light .product,
body.shop-light .shop-item {
  color: var(--sos-text);
}

/* Titoli card */
body.shop-light .product-card h3,
body.shop-light .shop-card h3,
body.shop-light .card h3,
body.shop-light h3.product-title {
  color: var(--sos-text-strong);
}

/* Descrizioni card */
body.shop-light .product-desc,
body.shop-light .card .desc,
body.shop-light .card p,
body.shop-light .product-card p {
  color: var(--sos-text-muted);
}

/* Prezzi */
body.shop-light .price,
body.shop-light .product-price {
  color: var(--sos-price);
}

/* Link e bottoni nelle card */
body.shop-light .card a,
body.shop-light .product-card a,
body.shop-light .shop-card a {
  color: var(--sos-text-strong);
  text-decoration-color: rgba(0,0,0,0.35);
}

body.shop-light .btn,
body.shop-light a.btn,
body.shop-light button.btn {
  color: #fff;
  background: var(--sos-text-strong);
  border-color: var(--sos-text-strong);
}

body.shop-light .btn.btn-outline,
body.shop-light a.btn.btn-outline,
body.shop-light button.btn.btn-outline {
  color: var(--sos-text-strong);
  background: transparent;
  border: 1px solid var(--sos-text-strong);
}

/* Eventuali badge/mini-label */
body.shop-light .badge,
body.shop-light .label {
  color: var(--sos-text);
}

/* Titoli nella griglia/colonne shop */
body.shop-light .grid .card h3,
body.shop-light .products .card h3 {
  color: var(--sos-text-strong);
}
