/** 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 20:11 Expected identifier but found whitespace
Line 20:13 Unexpected "{"
Line 20:23 Expected ":"
Line 21:13 Expected identifier but found whitespace
... and 9 more hidden warnings

**/
:root{
  --bg: {{ settings.bg }};
  --text: {{ settings.text }};
  --muted: #7a7a7a;
  --accent: {{ settings.accent }};
  --accent-2: {{ settings.accent_2 }};
  --radius: {{ settings.radius | default: 16 | append: 'px' }};
}
*{box-sizing:border-box}
img{max-width:100%;height:auto;display:block}
body{margin:0;background:var(--bg);color:var(--text);line-height:1.6;font-family:{{ settings.base_font.family }},ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Apple Color Emoji","Segoe UI Emoji"} 
.container{max-width:1280px;margin:0 auto;padding:0 1rem}
.section{padding:3.5rem 0}
h1,h2,h3{line-height:1.1;margin:.25rem 0}
.btn{display:inline-block;padding:.8rem 1.1rem;border-radius:999px;background:var(--accent);color:#1f2937;text-decoration:none;border:1px solid rgba(0,0,0,.08);font-weight:700}
.btn.secondary{background:var(--accent-2);color:#111}
.card{background:#fff;border:1px solid #eee;border-radius:var(--radius);padding:1rem}
.grid{display:grid;gap:1.25rem}
.grid-auto{grid-template-columns:repeat(auto-fill,minmax(240px,1fr))}

/* Header */
.header{position:sticky;top:0;background:rgba(255,255,255,.9);backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid #eee;z-index:20}
.nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:.75rem 0}
.brand{font-weight:800;font-size:1.25rem;text-decoration:none;color:inherit}
.links{display:flex;gap:.25rem;align-items:center;flex-wrap:wrap}
.links a{padding:.5rem .75rem;border-radius:10px;text-decoration:none;color:inherit}
.links a:hover{background:#f6f6f6}

/* Slideshow */
.slides{overflow:hidden;border-radius:20px}
.slide{position:relative}
.slide .overlay{position:absolute;inset:auto 0 0 0;padding:1.25rem;background:linear-gradient(to top, rgba(0,0,0,.35), transparent);color:white}

/* Category grid */
.cat-card img{border-radius:14px}
.cat-card h3{margin:.5rem 0}

/* Products */
.product-card{position:relative}
.product-card h3{font-size:1rem;margin:.5rem 0}
.price{font-weight:700}
.compare{color:#9ca3af;text-decoration:line-through;margin-left:.25rem}

/* Footer */
.footer{border-top:1px solid #eee;margin-top:3rem;padding:2rem 0}
.newsletter form{display:flex;gap:.5rem;flex-wrap:wrap}
.newsletter input[type="email"]{padding:.75rem;border-radius:12px;border:1px solid #ddd;min-width:240px}
