/** Shopify CDN: Minification failed

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

**/
/* ═══════════════════════════════════════
   GUYDE THEME — Clean & Minimal
   Colors: Navy / Blue / Orange accent
   ═══════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary: {{ settings.color_primary }};
  --color-accent: {{ settings.color_accent }};
  --color-highlight: {{ settings.color_highlight }};
  --color-bg: {{ settings.color_background }};
  --color-text: {{ settings.color_text }};
  --color-light: #F5F7FA;
  --color-border: #E2E8F0;
  --color-muted: #5A6B7F;
  --font-heading: {{ settings.font_heading.family }}, {{ settings.font_heading.fallback_families }};
  --font-body: {{ settings.font_body.family }}, {{ settings.font_body.fallback_families }};
  --max-width: 1200px;
  --content-width: 800px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.2;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.content-narrow {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.site-logo:hover { color: var(--color-primary); }

.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav a {
  font-size: 0.9rem;
  color: var(--color-muted);
  font-weight: 500;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--color-primary); }

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-count {
  background: var(--color-highlight);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Hero Section ── */
.hero {
  background: var(--color-primary);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.8rem;
  color: white;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-cta {
  display: inline-block;
  background: var(--color-highlight);
  color: white;
  padding: 14px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: #d97e00;
  color: white;
  transform: translateY(-1px);
}

/* ── Features Section ── */
.features {
  padding: 72px 0;
  background: var(--color-light);
}

.features-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.feature-card {
  background: white;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}

.feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ── Product Grid ── */
.product-grid-section { padding: 72px 0; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.product-card {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: white;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.product-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-light);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-info { padding: 20px; }

.product-card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.product-card-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-accent);
}

/* ── Product Page ── */
.product-page { padding: 48px 0 72px; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}

.product-image {
  background: var(--color-light);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.product-description p { margin-bottom: 12px; }

.add-to-cart-btn {
  display: inline-block;
  background: var(--color-highlight);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font-body);
}

.add-to-cart-btn:hover {
  background: #d97e00;
  transform: translateY(-1px);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

/* ── Cart ── */
.cart-page {
  padding: 48px 0 72px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.cart-page h1 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.cart-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--color-muted);
}

.cart-empty a {
  display: inline-block;
  margin-top: 16px;
  background: var(--color-accent);
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-light);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-title { font-weight: 600; }
.cart-item-price { font-weight: 600; color: var(--color-accent); }
.cart-item-remove {
  color: var(--color-muted);
  font-size: 0.85rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.cart-footer {
  padding: 24px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.cart-subtotal {
  font-size: 1.2rem;
  font-weight: 700;
}

.checkout-btn {
  background: var(--color-highlight);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s;
}

.checkout-btn:hover { background: #d97e00; }

/* ── Footer ── */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
  text-align: center;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}

.footer-tagline {
  font-style: italic;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-links { margin-bottom: 16px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  margin: 0 12px;
  font-size: 0.85rem;
}
.footer-links a:hover { color: white; }

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── Page Template ── */
.page-content {
  padding: 48px 0 72px;
  max-width: var(--content-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero { padding: 56px 0; }
  .hero h1 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 60px 1fr; gap: 12px; }
  .cart-item-price, .cart-item-remove { grid-column: 2; }
  .header-nav { gap: 16px; }
}

@media (max-width: 480px) {
  .header-inner { padding: 0 16px; }
  .hero h1 { font-size: 1.7rem; }
  .hero p { font-size: 1rem; }
}
