/* Boxing Nest — Mobile-first CSS | Primary #C8102E | Secondary #0f172a | Accent #f59e0b */
/* WCAG AA: body #1e293b (13.5:1), muted #4b5563 (6.8:1), wa-btn #1a7a40 on white (5.36:1) */

:root {
  --red: #C8102E;
  --red-dark: #a00d24;
  --navy: #0f172a;
  --navy-light: #1e293b;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray-light: #e2e8f0;
  --gray: #94a3b8;
  --text: #1e293b;
  --text-muted: #4b5563;
  --green: #16a34a;
  --wa: #1a7a40;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
  --max: 1200px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--red-dark); }
ul, ol { padding-left: 1.5rem; }
h1, h2, h3, h4 { line-height: 1.3; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); margin: 2rem 0 0.75rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin: 1.5rem 0 0.5rem; }
p { margin-bottom: 1rem; }
table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
th, td { padding: 0.6rem 1rem; border: 1px solid var(--gray-light); text-align: left; }
th { background: var(--navy); color: var(--white); font-weight: 600; }
tr:nth-child(even) { background: var(--off-white); }

/* Layout helpers */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1rem; }
.section { padding: 0; }
.section-alt { background: var(--off-white); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; padding: 0 1rem;
  height: 64px;
}
.brand {
  font-size: 1.4rem; font-weight: 800; color: var(--white);
  text-decoration: none; display: flex; align-items: center; gap: 0.4rem;
  letter-spacing: -0.02em;
}
.brand:hover { color: var(--accent); text-decoration: none; }
.brand .logo-emoji {
  display: inline-block;
  will-change: transform;
  animation: glove-pulse 2.5s ease-in-out infinite;
}
@keyframes glove-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.2) rotate(-15deg); }
  50% { transform: scale(1.1) rotate(10deg); }
  75% { transform: scale(1.15) rotate(-5deg); }
}
.nav-links {
  display: flex; align-items: center; gap: 0.2rem; flex-wrap: wrap;
}
.nav-links a {
  color: #cbd5e1; font-size: 0.88rem; font-weight: 500;
  padding: 0.4rem 0.6rem; border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--white); }
.nav-cta {
  background: var(--wa) !important;
  color: var(--white) !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  margin-left: 0.4rem;
}
.nav-cta:hover { background: #155f32 !important; }
.nav-toggle {
  display: none; background: none; border: none; color: var(--white);
  font-size: 1.6rem; cursor: pointer; padding: 0.3rem;
  line-height: 1;
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--navy); flex-direction: column; align-items: flex-start;
    padding: 1rem; gap: 0.25rem; box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 0.6rem 1rem; font-size: 1rem; }
}

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 50%, #2d0a12 100%);
  color: var(--white); padding: 4rem 1rem;
  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 h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.hero p { font-size: clamp(1rem, 2.5vw, 1.2rem); color: #cbd5e1; max-width: 640px; margin: 0 auto 2rem; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin: 1.5rem 0; }
.hero-badge {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.85rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.75rem 1.75rem; border-radius: 6px; font-size: 1rem;
  font-weight: 700; cursor: pointer; border: none; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); text-decoration: none; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); }
.btn-wa { background: var(--wa); color: var(--white); }
.btn-wa:hover { background: #155f32; color: var(--white); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* ===================== TRUST BADGES ===================== */
.trust-bar {
  background: var(--red); color: var(--white);
  padding: 0.75rem 1rem;
}
.trust-bar-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.4rem; font-size: 0.9rem; font-weight: 600; }
.trust-badges-inline { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.badge {
  background: var(--off-white); border: 1px solid var(--gray-light);
  color: var(--navy-light); padding: 0.3rem 0.8rem;
  border-radius: 4px; font-size: 0.82rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.badge-gold { background: #fef3c7; border-color: var(--accent); color: #92400e; }
.badge-green { background: #dcfce7; border-color: var(--green); color: #14532d; }
.badge-red { background: #fee2e2; border-color: var(--red); color: #991b1b; }

/* ===================== CARDS ===================== */
.card-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  margin-top: 1.5rem;
}
.card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }
.card h3 { color: var(--navy); font-size: 1.05rem; margin: 0 0 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.card-price { font-size: 1.3rem; font-weight: 800; color: var(--red); margin-top: 0.75rem; }

/* Hub category cards */
.hub-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: 2rem;
}
.hub-card {
  background: var(--white); border-radius: var(--radius);
  border: 2px solid var(--gray-light); padding: 1.5rem;
  box-shadow: var(--shadow); transition: all 0.2s;
  text-decoration: none; color: inherit;
}
.hub-card:hover { border-color: var(--red); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hub-card-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.hub-card h3 { color: var(--navy); margin: 0 0 0.5rem; }
.hub-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 0.75rem; }

/* ===================== PRODUCT PAGE ===================== */
.product-header {
  background: linear-gradient(135deg, var(--navy) 0%, #1e2d3d 100%);
  color: var(--white); padding: 2.5rem 1rem;
}
.product-header h1 { color: var(--white); }
.product-price-block {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  margin: 1rem 0;
}
.product-price { font-size: 2.2rem; font-weight: 900; color: var(--accent); }
.price-note { color: #94a3b8; font-size: 0.9rem; }
.variant-section { margin: 1.5rem 0; }
.variant-label { font-weight: 600; color: #94a3b8; font-size: 0.85rem; margin-bottom: 0.5rem; display: block; }
.variant-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variant-btn {
  padding: 0.4rem 1rem; border-radius: 4px; border: 2px solid rgba(255,255,255,0.3);
  background: transparent; color: var(--white); cursor: pointer;
  font-size: 0.9rem; font-weight: 500; transition: all 0.15s;
}
.variant-btn:hover, .variant-btn.active { border-color: var(--accent); background: var(--accent); color: var(--navy); }
.variant-btn[data-color="Red"].active { background: var(--red); border-color: var(--red); color: var(--white); }
.variant-btn[data-color="Black"].active { background: #1e293b; border-color: #1e293b; color: var(--white); }
.variant-btn[data-color="Blue"].active { background: #1d4ed8; border-color: #1d4ed8; color: var(--white); }
.product-cta-block { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }
.wa-order-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--wa); color: var(--white); padding: 0.9rem 1.75rem;
  border-radius: 30px; font-size: 1.05rem; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}
.wa-order-btn:hover { background: #155f32; transform: translateY(-2px); text-decoration: none; color: var(--white); }
.product-content { background: var(--white); }

/* Float WhatsApp button */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  background: var(--wa); color: var(--white);
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none; transition: transform 0.2s;
  will-change: transform;
}
.wa-float:hover { transform: scale(1.1); text-decoration: none; color: var(--white); }

/* ===================== ARTICLE / CONTENT ===================== */
.article { padding: 2rem 0; }
.article .wrap { max-width: 860px; }

.breadcrumb {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.3rem; align-items: center;
}
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { color: var(--red-dark); }

.answer-box {
  background: linear-gradient(135deg, #fef2f2, #fff7f0);
  border-left: 4px solid var(--red); padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; font-size: 1.05rem; color: var(--navy-light);
  font-weight: 500;
}

.toc {
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 2rem 0;
}
.toc h2 { font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 0.75rem; }
.toc ol { counter-reset: toc-counter; list-style: none; padding: 0; }
.toc ol li { counter-increment: toc-counter; padding: 0.25rem 0; }
.toc ol li::before { content: counter(toc-counter) ". "; color: var(--red); font-weight: 700; }
.toc a { color: var(--navy-light); font-size: 0.95rem; }
.toc a:hover { color: var(--red); }

.meta-row { display: flex; gap: 1rem; flex-wrap: wrap; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1rem; }
.meta-row a { color: var(--text-muted); }

.section-intro { font-size: 1.1rem; color: var(--navy-light); margin-bottom: 1.5rem; font-weight: 500; }

.faq-item { border-bottom: 1px solid var(--gray-light); padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--navy); font-size: 1rem; margin: 0 0 0.5rem; }
.faq-item p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

.related { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }
.related a {
  background: var(--off-white); border: 1px solid var(--gray-light);
  padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.9rem; color: var(--navy-light);
  transition: all 0.15s;
}
.related a:hover { border-color: var(--red); color: var(--red); background: #fef2f2; text-decoration: none; }

/* Specs table */
.specs-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.specs-table th { background: var(--navy); color: var(--white); padding: 0.75rem 1rem; text-align: left; }
.specs-table td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--gray-light); }
.specs-table tr:nth-child(even) td { background: var(--off-white); }

/* Features list */
.features-list { list-style: none; padding: 0; margin: 1rem 0; }
.features-list li { padding: 0.4rem 0 0.4rem 1.75rem; position: relative; color: var(--text); }
.features-list li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

/* ===================== HUB PAGE ===================== */
.hub-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2744 100%);
  color: var(--white); padding: 3rem 1rem;
}
.hub-hero h1 { color: var(--white); }
.hub-hero p { color: #cbd5e1; font-size: 1.1rem; max-width: 700px; }
.products-grid {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  margin: 2rem 0;
}
.product-card {
  background: var(--white); border: 1px solid var(--gray-light);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow); transition: all 0.2s; display: block;
  text-decoration: none; color: inherit;
}
.product-card:hover { border-color: var(--red); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-card h3 { font-size: 1rem; color: var(--navy); margin: 0 0 0.4rem; }
.product-card .price { font-size: 1.2rem; font-weight: 800; color: var(--red); margin: 0.5rem 0; }
.product-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ===================== CITY PAGE ===================== */

/* ===================== ABOUT / UTILITY ===================== */
.page-hero { background: var(--off-white); padding: 2.5rem 1rem; border-bottom: 1px solid var(--gray-light); }
.contact-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); margin: 2rem 0; }
.contact-card { background: var(--off-white); border-radius: var(--radius); padding: 1.5rem; border: 1px solid var(--gray-light); }
.contact-card h2, .contact-card h3 { color: var(--navy); margin-bottom: 0.5rem; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--navy); color: #94a3b8;
  padding: 3rem 1rem 1.5rem; margin-top: 4rem;
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 2rem; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col h3 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; font-weight: 700; }
.footer-col a { display: block; color: #94a3b8; font-size: 0.9rem; padding: 0.2rem 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  max-width: var(--max); margin: 1.5rem auto 0;
  text-align: center; font-size: 0.85rem; color: #94a3b8;
}
.footer-bottom a { color: #94a3b8; }

/* ===================== FORMS ===================== */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--navy-light); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  font-size: 1rem; font-family: var(--font); color: var(--text);
  background: var(--white); transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.1);
}

/* ===================== HOMEPAGE SECTIONS ===================== */
.home-stats {
  background: var(--red); color: var(--white);
  padding: 2.5rem 1rem;
}
.stats-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  text-align: center;
}
.stat h3 { font-size: 2.2rem; color: var(--white); margin: 0; }
.stat p { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin: 0.25rem 0 0; }

.how-it-works { background: var(--off-white); padding: 3.5rem 1rem; }
.steps { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-top: 2rem; }
.step { background: var(--white); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem;
}
.step h3 { color: var(--navy); margin: 0 0 0.4rem; }
.step p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }

/* Inline WhatsApp CTA section */
.wa-cta-section {
  background: #dcfce7; border: 1px solid #86efac;
  border-radius: var(--radius); padding: 1.5rem;
  margin: 2rem 0; display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.wa-cta-section p { margin: 0; color: #14532d; font-weight: 500; flex: 1; }


/* Tag pills */
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.75rem 0; }
.tag { background: #fee2e2; color: #991b1b; padding: 0.2rem 0.7rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }

/* ===================== UTILITIES ===================== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--navy); color: var(--white); padding: 0.5rem 1rem; border-radius: 0 0 var(--radius) var(--radius); font-weight: 700; z-index: 9999; text-decoration: none; }
.skip-link:focus { top: 0; }
.highlight { color: var(--red); font-weight: 700; }
.divider { border: none; border-top: 1px solid var(--gray-light); margin: 2rem 0; }

/* ===================== SIDEBAR LAYOUT ===================== */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.5rem 1rem;
  align-items: start;
}
.main-content { min-width: 0; }
.sidebar { position: sticky; top: 80px; }
.sidebar-section {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
}
.sidebar-section h3,
.sidebar-section h4 {
  color: var(--navy);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--red);
  font-weight: 700;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy-light);
  font-size: 0.88rem;
  padding: 0.45rem 0.6rem;
  border-radius: 4px;
  transition: all 0.15s;
  text-decoration: none;
  margin-bottom: 0.1rem;
}
.sidebar-nav a:hover { background: #fef2f2; color: var(--red); text-decoration: none; }
.sidebar-nav a.active { background: #fee2e2; color: var(--red); font-weight: 600; }
.sidebar-icon { font-size: 1rem; flex-shrink: 0; width: 1.4rem; text-align: center; }
.sidebar-cta { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-cta .btn { justify-content: center; font-size: 0.92rem; padding: 0.7rem 1rem; }
.sidebar-trust li { list-style: none; padding: 0.3rem 0; font-size: 0.87rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.sidebar-trust { padding: 0; }

/* ===================== STEP ICONS (Homepage) ===================== */
.step-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(200,16,46,0.3);
  flex-shrink: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .page-with-sidebar {
    grid-template-columns: 1fr;
    padding: 1.5rem 1rem;
  }
  .sidebar { position: static; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
  .sidebar-section { margin-bottom: 0; }
}
@media (max-width: 640px) {
  .hero { padding: 2.5rem 1rem; }
  .section { padding: 0; }
  .product-price { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 0.75rem; }
  .trust-item { font-size: 0.8rem; }
  .article .wrap { padding: 0 1rem; }
  .product-cta-block { flex-direction: column; }
  .wa-order-btn { justify-content: center; }
}

/* Print */
@media print {
  .site-header, .site-footer, .wa-float, .nav-toggle { display: none !important; }
}
