/* ===== Product Single ===== */
:root{
  --container-w: 1120px;
  --radius: 12px;
  --border: #e5e7eb;
  --text: #111;
  --muted: #6b7280;
}

/* SCOPE: chỉ tác dụng cho template single-product (không phá footer/other pages) */
.product-single .container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
/* scope other product selectors similarly if needed */
.product-single .section{ margin-top: 40px; }
.section-title{font-size:20px;font-weight:700;margin:0 0 14px;color:var(--text)}

.actions{display:flex;gap:10px;flex-wrap:wrap;}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  height:38px;padding:0 16px;border-radius:10px;
  background:#111;color:#fff;font-weight:700;border:1px solid #111;text-decoration:none;
}
.btn--outline{background:#fff;color:#111;border-color:var(--border)}

/* Responsive */
@media (max-width:1024px){
  .product-hero{grid-template-columns:1fr;gap:18px}
  .product-hero > .media{width:300px;height:300px;margin:0 auto}
}




