/** Shopify CDN: Minification failed

Line 17:7 Expected identifier but found whitespace
Line 17:9 Unexpected "{"
Line 17:19 Expected ":"
Line 18:9 Expected identifier but found whitespace
Line 18:11 Unexpected "{"
Line 18:21 Expected ":"
Line 19:10 Expected identifier but found whitespace
Line 19:12 Unexpected "{"
Line 19:22 Expected ":"
Line 20:9 Expected identifier but found whitespace
... and 11 more hidden warnings

**/
:root{
  --bg: {{ settings.color_bg }};
  --text: {{ settings.color_text }};
  --muted: {{ settings.color_muted }};
  --line: {{ settings.color_line }};
  --red: {{ settings.color_red }};
  --red2: {{ settings.color_red2 }};
  --grey: {{ settings.color_grey }};
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0,0,0,.42);
  --max: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 520px at 18% -10%, rgba(225,6,20,.36), transparent 60%),
    radial-gradient(900px 520px at 85% 5%, rgba(58,58,68,.22), transparent 55%),
    var(--bg);
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:min(92vw, var(--max)); margin:0 auto;}
.section{padding:64px 0;}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.row{display:flex;gap:18px;flex-wrap:wrap}
.col{flex:1;min-width:280px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 18px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-weight: 800;
  letter-spacing:.2px;
  cursor:pointer;
  transition: transform .12s ease, border-color .12s ease, filter .12s ease;
}
.btn:hover{transform: translateY(-1px); border-color: rgba(242,242,244,.24); filter: brightness(1.03)}
.btn-primary{
  background: linear-gradient(135deg, var(--red), var(--red2));
  border-color: rgba(255,42,58,.38);
}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}
.h1{font-size: clamp(36px, 4.4vw, 60px); line-height:1.02; margin:0 0 12px; letter-spacing:-.02em}
.h2{font-size: clamp(26px, 3.0vw, 40px); margin:0 0 12px; letter-spacing:-.01em}
.p{color: var(--muted); font-size: 16px; line-height:1.6; margin:0}

.nav{
  position: sticky; top:0; z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,11,13,.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;gap:14px}
.logo{display:flex;align-items:center;gap:10px;font-weight:900; letter-spacing:.5px}
.logo-mark{
  width:34px;height:34px;border-radius:12px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 50%),
              linear-gradient(135deg, var(--red), var(--red2));
  box-shadow: 0 12px 30px rgba(225,6,20,.22);
}
.logo-text{font-size:16px}
.nav-links{display:flex;gap:16px;flex-wrap:wrap}
.nav-links a{color:var(--muted); font-weight:800; font-size:14px}
.nav-links a:hover{color:var(--text)}

.announcement{
  background: linear-gradient(90deg, rgba(225,6,20,.95), rgba(58,58,68,.95));
  color:#0b0b0d;
  font-weight:900;
  font-size:14px;
}
.announcement .container{padding:10px 0; text-align:center}

.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 980px){ .hero-grid{grid-template-columns:1fr} }

.hero-left{padding:22px}
.hero-right{padding:22px}
.kicker{display:flex;gap:10px;flex-wrap:wrap}
.stars{display:flex;align-items:center;gap:8px;color:rgba(242,242,244,.92);font-weight:900}
.stars span{color:var(--muted);font-weight:800}
.bullets{margin:14px 0 0;padding:0;list-style:none;display:grid;gap:10px}
.bullets li{display:flex;gap:10px;align-items:flex-start;color:rgba(242,242,244,.92);font-weight:780}
.bullets i{font-style:normal;color:rgba(46,204,113,.95)}
.ctas{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.trustbar{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
.trustbar .badge{font-size:12px}

.media{padding:14px}
.media img{border-radius:14px;border:1px solid var(--line)}
.media-thumbrow{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.media-thumbrow img{width:86px;height:86px;object-fit:cover;border-radius:14px;border:1px solid var(--line);opacity:.92}
.media-thumbrow img:hover{opacity:1}

.price{font-weight:950;font-size:26px;letter-spacing:-.01em}
.compare{color:var(--muted);text-decoration:line-through;margin-left:10px;font-weight:850}
.small{color:var(--muted);font-size:13px;line-height:1.5}

.field, select, input[type="number"]{
  width:100%;
  padding:14px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight:800;
}
.qtyrow{display:flex;gap:10px;align-items:center;margin-top:12px}
.qtyrow label{font-weight:900}
.qtyrow input{width:110px}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width: 980px){.grid3{grid-template-columns:1fr}}

.feature,.step,.quote,.faq{padding:18px}
.feature h3{margin:0 0 8px;font-size:18px}
.feature p{margin:0;color:var(--muted);line-height:1.5}
.step strong{display:block;font-size:16px}
.step span{display:block;margin-top:8px;color:var(--muted);line-height:1.55}
.quote p{margin:0;color:var(--text);font-weight:820;line-height:1.45}
.quote small{display:block;margin-top:10px;color:var(--muted)}

.table{width:100%; border-collapse:separate; border-spacing:0; border:1px solid var(--line); border-radius:14px; overflow:hidden}
.table th,.table td{padding:14px; border-bottom:1px solid var(--line); vertical-align:top}
.table th{background: rgba(255,255,255,.03); text-align:left; font-weight:950}
.table tr:last-child td{border-bottom:none}

details{border:1px solid var(--line); border-radius:14px; padding:12px 14px; background:rgba(255,255,255,.02)}
details + details{margin-top:10px}
summary{cursor:pointer; font-weight:950}
details p{margin:10px 0 0;color:var(--muted);line-height:1.55}

.footer{border-top:1px solid var(--line); padding:28px 0; color:var(--muted)}
.footer a{color:var(--muted);font-weight:800}
.footer a:hover{color:var(--text)}

.sticky-atc{
  position:fixed; left:0; right:0; bottom:0; z-index: 80;
  background: rgba(11,11,13,.88);
  border-top:1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 12px 0;
}
.sticky-atc .inner{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.sticky-atc .title{font-weight:950}
.notice{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(58,58,68,.55);
  background: rgba(58,58,68,.18);
  color: rgba(242,242,244,.92);
  font-weight:800;
}

.anchor{scroll-margin-top:90px}
