/** Shopify CDN: Minification failed

Line 17:18 Expected identifier but found whitespace
Line 17:20 Unexpected "{"
Line 17:30 Expected ":"
Line 18:20 Expected identifier but found whitespace
Line 18:22 Unexpected "{"
Line 18:32 Expected ":"
Line 19:13 Expected identifier but found whitespace
Line 19:15 Unexpected "{"
Line 19:25 Expected ":"
Line 20:15 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
:root {
  --color-primary: {{ settings.color_primary | default: '#111' }};
  --color-secondary: {{ settings.color_secondary | default: '#5b7c99' }};
  --color-bg: {{ settings.color_bg | default: '#fff' }};
  --color-text: {{ settings.color_text | default: '#333' }};
  --font-body: 'Montserrat', -apple-system, sans-serif;
  --font-heading: 'Montserrat', -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.5;
  font-size: 16px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo { font-size: 24px; font-weight: 700; text-decoration: none; color: var(--color-primary); }
.header__nav a { margin-left: 20px; text-decoration: none; color: var(--color-text); font-weight: 500; text-transform: uppercase; font-size: 14px; letter-spacing: 1px; }

/* Hero */
.hero { position: relative; width: 100%; height: 80vh; display: flex; align-items: center; justify-content: center; overflow: hidden;}
.hero img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.hero__content { text-align: center; color: #fff; background: rgba(0,0,0,0.3); padding: 40px; border-radius: 8px; }
.hero h1 { font-size: 48px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  width: 100%;
  text-align: center;
}
.btn:hover { opacity: 0.9; }

/* Product Page */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.product-images img { width: 100%; border-radius: 8px; }
.product-info h1 { font-size: 32px; margin-bottom: 10px; }
.product-price { font-size: 24px; font-weight: 700; margin-bottom: 20px; color: var(--color-primary); }
.trust-badges { display: flex; gap: 10px; margin-top: 20px; justify-content: center; }
.trust-badge { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; }

/* Footer */
.footer { background: #f9f9f9; padding: 60px 0; margin-top: 60px; text-align: center; }
