/** Shopify CDN: Minification failed

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

**/
/* ---------- Variables & Reset ---------- */
:root {
  --color-accent: {{ settings.color_accent | default: '#5C7A5A' }};
  --color-accent-dark: {{ settings.color_accent_dark | default: '#42583F' }};
  --color-bg: {{ settings.color_background | default: '#FAF8F4' }};
  --color-text: {{ settings.color_text | default: '#2B2B26' }};
  --color-border: #E4E0D6;
  --font-body: 'Jost', sans-serif;
  --font-heading: 'Fraunces', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.2;
}

.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: 10px;
  z-index: 100;
}
.skip-to-content:focus { left: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 2px;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn-outline:hover { background: var(--color-text); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.02em;
}
.site-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.site-nav a:hover { color: var(--color-accent); }
.header-icons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.icon-link { position: relative; display: inline-flex; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--color-accent);
  color: #fff;
  font-size: 10px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  text-align: center;
  background-color: #EFEAE0;
}
.hero-inner { max-width: 620px; margin: 0 auto; }
.hero h1 { font-size: 42px; margin-bottom: 16px; }
.hero p { font-size: 17px; margin-bottom: 28px; opacity: 0.85; }

/* ---------- Value props ---------- */
.value-props { padding: 56px 0; border-bottom: 1px solid var(--color-border); }
.value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.value-prop h3 { font-size: 18px; margin-bottom: 6px; }
.value-prop p { margin: 0; font-size: 14px; opacity: 0.75; }

/* ---------- Product grid ---------- */
.product-grid-section { padding: 64px 0; }
.section-title { text-align: center; font-size: 30px; margin-bottom: 36px; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 28px;
}
.product-card { display: block; }
.product-card-image {
  aspect-ratio: 1 / 1;
  background: #F0EDE5;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 12px;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A8A296;
  font-family: var(--font-heading);
  font-size: 32px;
  text-transform: uppercase;
}
.product-placeholder.large { aspect-ratio: 1/1; }
.product-card-title { font-size: 15px; margin: 0 0 4px; }
.product-card-price { font-size: 14px; opacity: 0.7; margin: 0; }
.view-all-wrap { text-align: center; margin-top: 40px; }

/* ---------- Product page ---------- */
.product-page { padding: 56px 0 80px; }
.product-page-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
}
.product-media img { border-radius: 4px; }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-thumb { width: 70px; height: 70px; object-fit: cover; border-radius: 3px; cursor: pointer; border: 1px solid var(--color-border); }
.product-info h1 { font-size: 30px; }
.product-price { font-size: 20px; margin-bottom: 20px; opacity: 0.85; }
.product-description { margin-bottom: 28px; font-size: 15px; opacity: 0.85; }
.variant-selectors { margin-bottom: 20px; }
.variant-selectors label { display: block; font-size: 13px; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.04em; }
.variant-selectors select { width: 100%; padding: 10px; margin-bottom: 14px; border: 1px solid var(--color-border); background: #fff; }
.btn-add-cart { width: 100%; border: none; font-family: var(--font-body); }
.btn-add-cart[disabled] { background: #ccc; cursor: not-allowed; }

@media (max-width: 760px) {
  .product-page-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Cart page ---------- */
.cart-page { padding: 56px 0 80px; }
.cart-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.cart-table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; padding-bottom: 12px; border-bottom: 1px solid var(--color-border); }
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.cart-item-info { display: flex; align-items: center; gap: 14px; }
.cart-item-info img { border-radius: 3px; object-fit: cover; }
.cart-item-variant { font-size: 12px; opacity: 0.65; }
.cart-qty-input { width: 60px; padding: 6px; border: 1px solid var(--color-border); }
.cart-summary { display: flex; align-items: center; gap: 16px; justify-content: flex-end; }
.cart-subtotal { font-size: 17px; margin-right: auto; }

/* ---------- Search / Collections / Blog / 404 / Page ---------- */
.search-page, .collections-page, .blog-page, .not-found-page, .basic-page { padding: 56px 0 80px; }
.search-form { display: flex; gap: 10px; margin-bottom: 30px; max-width: 420px; }
.search-form input { flex: 1; padding: 12px; border: 1px solid var(--color-border); }
.collection-grid, .blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
}
.collection-card img, .blog-card img { border-radius: 3px; margin-bottom: 10px; aspect-ratio: 1/1; object-fit: cover; }
.blog-card-date { font-size: 13px; opacity: 0.65; }
.not-found-page { text-align: center; }

/* ---------- Password page ---------- */
.password-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.password-inner { max-width: 420px; }
.password-logo { margin: 0 auto 20px; }
.password-page form { display: flex; gap: 10px; margin-top: 20px; }
.password-page input { flex: 1; padding: 12px; border: 1px solid var(--color-border); }
.form-error { color: #B3413B; font-size: 14px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--color-border); padding: 56px 0 24px; margin-top: 40px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
}
.footer-brand p { font-size: 14px; opacity: 0.7; margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.footer-newsletter-title { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row input { flex: 1; padding: 10px; border: 1px solid var(--color-border); }
.newsletter-row button { border: none; background: var(--color-accent); color: #fff; padding: 0 18px; cursor: pointer; }
.form-success { font-size: 13px; color: var(--color-accent-dark); }
.footer-bottom { border-top: 1px solid var(--color-border); padding-top: 20px; font-size: 12px; opacity: 0.6; }

@media (max-width: 760px) {
  .site-nav { display: none; }
  .hero { padding: 70px 0; }
  .hero h1 { font-size: 30px; }
  .footer-inner { grid-template-columns: 1fr; }
}
