/** Shopify CDN: Minification failed

Line 21:14 Expected identifier but found whitespace
Line 21:16 Unexpected "{"
Line 21:26 Expected ":"
Line 22:16 Expected identifier but found whitespace
Line 22:18 Unexpected "{"
Line 22:28 Expected ":"
Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:25 Expected ":"
Line 24:9 Expected identifier but found whitespace
... and 33 more hidden warnings

**/
/* ============================================
   Goliath — Rustic Lumber & Craft Wood Theme
   ============================================ */

:root {
  --c-primary: {{ settings.color_primary }};
  --c-secondary: {{ settings.color_secondary }};
  --c-accent: {{ settings.color_accent }};
  --c-bg: {{ settings.color_background }};
  --c-surface: {{ settings.color_surface }};
  --c-text: {{ settings.color_text }};
  --c-muted: {{ settings.color_muted }};
  --c-line: rgba(74, 44, 26, .14);

  --f-heading: {{ settings.font_heading.family }}, {{ settings.font_heading.fallback_families }};
  --f-body: {{ settings.font_body.family }}, {{ settings.font_body.fallback_families }};

  --page-w: {{ settings.page_width }}px;

  --s-1: .25rem;
  --s-2: .5rem;
  --s-3: .75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
}

{{ settings.font_heading | font_face: font_display: 'swap' }}
{{ settings.font_body | font_face: font_display: 'swap' }}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  font-size: 16px;
  background-image:
    radial-gradient(at 10% 0%, rgba(192,133,82,.08) 0, transparent 50%),
    radial-gradient(at 90% 100%, rgba(139,90,43,.06) 0, transparent 50%);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4 {
  font-family: var(--f-heading);
  color: var(--c-primary);
  letter-spacing: -.01em;
  margin: 0 0 var(--s-4);
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 var(--s-4); }

.wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.kicker {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-secondary);
  font-weight: 700;
  margin: 0 0 var(--s-3);
}

.btn {
  display: inline-block;
  padding: .85rem 1.6rem;
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}
.btn--primary:hover { background: var(--c-secondary); border-color: var(--c-secondary); color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--ghost:hover { background: var(--c-primary); color: #fff; }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--c-primary); color: #fff; padding: var(--s-2) var(--s-4);
}
.skip-link:focus { left: var(--s-3); top: var(--s-3); z-index: 100; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ===== Header ===== */
.site-header {
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(6px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  min-height: 80px;
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__wordmark {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  color: var(--c-primary);
  letter-spacing: .02em;
}
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--s-6);
}
.site-nav a {
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-text);
}
.site-nav a:hover { color: var(--c-accent); }
.site-header__actions { display: flex; align-items: center; gap: var(--s-4); }
.site-header__action {
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  position: relative;
}
.site-header__action:hover { color: var(--c-accent); }
.cart-count {
  position: absolute;
  top: -6px; right: -10px;
  background: var(--c-accent);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.announcement {
  background: var(--c-primary);
  color: #fff;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .08em;
  padding: var(--s-2) var(--s-4);
}

/* ===== Hero ===== */
.hero {
  min-height: 78vh;
  background-color: var(--c-secondary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
}
.hero__inner {
  padding: var(--s-9) var(--s-5);
  max-width: 760px;
}
.hero__kicker {
  color: var(--c-accent);
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: var(--s-4);
}
.hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--s-5);
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero__sub {
  font-size: 1.15rem;
  max-width: 600px;
  opacity: .92;
  margin-bottom: var(--s-6);
}
.hero__cta { display: flex; gap: var(--s-4); flex-wrap: wrap; }
.hero__cta .btn--ghost {
  border-color: #fff;
  color: #fff;
}
.hero__cta .btn--ghost:hover { background: #fff; color: var(--c-primary); }

/* ===== Section header ===== */
.section-header {
  margin: var(--s-9) 0 var(--s-6);
  max-width: 680px;
}
.section-header--center {
  margin-left: auto; margin-right: auto;
  text-align: center;
}
.section-header__title { margin-bottom: var(--s-3); }
.section-header__sub { color: var(--c-muted); font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: var(--s-6); margin-bottom: var(--s-7); }

/* ===== Product grid / cards ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--s-6);
  padding-bottom: var(--s-7);
}
.product-card {
  background: var(--c-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: transform .2s, box-shadow .2s;
  display: block;
  color: var(--c-text);
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(44,29,18,.12);
}
.product-card__media {
  aspect-ratio: 1/1;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.product-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-card__media img { transform: scale(1.04); }
.product-card__badge {
  position: absolute;
  top: var(--s-3); left: var(--s-3);
  background: var(--c-primary);
  color: #fff;
  padding: 2px 10px;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 2px;
}
.product-card__badge--new { background: var(--c-accent); }
.product-card__body {
  padding: var(--s-4) var(--s-5) var(--s-5);
}
.product-card__vendor {
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 6px;
}
.product-card__title {
  font-size: 1.05rem;
  margin: 0 0 var(--s-2);
  color: var(--c-primary);
}
.product-card__price { font-weight: 600; margin: 0; }
.product-card__price .was {
  text-decoration: line-through;
  color: var(--c-muted);
  margin-right: 6px;
  font-weight: 400;
}
.product-card__price .now { color: var(--c-primary); }

/* ===== Categories ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--s-4);
  padding-bottom: var(--s-7);
}
.category-tile {
  position: relative;
  display: block;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c-secondary);
}
.category-tile__media { position: absolute; inset: 0; }
.category-tile__media img,
.category-tile__media svg {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.category-tile:hover .category-tile__media img { transform: scale(1.06); }
.category-tile__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: var(--s-5);
  background: linear-gradient(to top, rgba(44,29,18,.78) 0%, rgba(44,29,18,.1) 50%, rgba(44,29,18,0) 100%);
  color: #fff;
}
.category-tile__label span {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  letter-spacing: .01em;
}

/* ===== Story (image with text) ===== */
.story { padding: var(--s-9) 0; }
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
}
.story__media { border-radius: var(--r-md); overflow: hidden; }
.story__media img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.story__title { margin-bottom: var(--s-5); }

/* ===== Value props ===== */
.value-props {
  background: var(--c-surface);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.value-props__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--s-6);
  text-align: center;
}
.value-prop__icon { font-size: 2.2rem; margin-bottom: var(--s-3); }
.value-prop__title { font-size: 1.05rem; margin-bottom: var(--s-2); }
.value-prop__text { color: var(--c-muted); font-size: .95rem; margin: 0; }

/* ===== Rich text ===== */
.rich-text { padding: var(--s-8) 0; }
.rich-text__inner { margin: 0 auto; text-align: center; }
.rich-text__heading { margin-bottom: var(--s-4); }

/* ===== Product detail ===== */
.product { padding: var(--s-8) 0; }
.product__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
}
.product__media img { border-radius: var(--r-md); }
.product__thumbs {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-3);
  flex-wrap: wrap;
}
.product__thumbs img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--r-sm);
  cursor: pointer;
  border: 1px solid var(--c-line);
}
.product__title { margin-bottom: var(--s-3); }
.product__price {
  font-size: 1.6rem;
  color: var(--c-primary);
  font-weight: 600;
  margin-bottom: var(--s-5);
  font-family: var(--f-heading);
}
.product__price .price--was {
  text-decoration: line-through;
  color: var(--c-muted);
  font-size: 1.2rem;
  margin-right: var(--s-3);
}
.product__description { margin-bottom: var(--s-6); }
.product__option-label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-secondary);
  margin: var(--s-4) 0 var(--s-2);
}
select, input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="search"], input[type="password"], textarea {
  width: 100%;
  padding: var(--s-3);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 1rem;
}
select:focus, input:focus, textarea:focus {
  outline: 2px solid var(--c-accent);
  border-color: var(--c-accent);
}
.product__qty-row {
  display: flex;
  gap: var(--s-3);
  align-items: end;
  margin-top: var(--s-5);
  margin-bottom: var(--s-6);
}
.product__qty-row label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-secondary);
  margin-bottom: var(--s-2);
}
.product__qty-row input[type="number"] { width: 90px; }
.product__qty-row .btn { flex: 1; }
.product__meta {
  list-style: none;
  padding: var(--s-4) 0 0;
  margin: var(--s-5) 0 0;
  border-top: 1px solid var(--c-line);
  color: var(--c-muted);
  font-size: .9rem;
}
.product__meta li { padding: 2px 0; }
.product__meta li::before { content: "✓  "; color: var(--c-accent); font-weight: 700; }

/* ===== Collection ===== */
.collection { padding: var(--s-7) 0; }
.collection__header { margin-bottom: var(--s-6); text-align: center; }
.collection__title { margin-bottom: var(--s-3); }
.collection__description { max-width: 700px; margin: 0 auto; color: var(--c-muted); }

.pagination {
  display: flex;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--s-7) 0;
}
.pagination a, .pagination span {
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  color: var(--c-text);
}
.pagination .active { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* ===== Page ===== */
.page__header { text-align: center; padding: var(--s-7) 0 var(--s-5); }
.page__title { margin: 0; }
.page__content { max-width: 760px; margin: 0 auto; padding-bottom: var(--s-8); }

/* ===== Contact ===== */
.contact { padding: var(--s-8) 0; }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-8);
}
.contact__title { margin-bottom: var(--s-4); }
.contact__details {
  list-style: none;
  padding: 0;
  margin: var(--s-5) 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.contact__details li {
  background: var(--c-surface);
  padding: var(--s-4);
  border-radius: var(--r-sm);
  font-size: .92rem;
  color: var(--c-muted);
}
.contact__details strong {
  color: var(--c-primary);
  font-family: var(--f-heading);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-form label {
  display: block;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-secondary);
  margin: var(--s-4) 0 var(--s-2);
}
.form-success {
  background: var(--c-surface);
  border-left: 4px solid var(--c-accent);
  padding: var(--s-4);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-5);
}
.form-error {
  background: #fff2ec;
  border-left: 4px solid #b3411f;
  padding: var(--s-4);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-5);
}

/* ===== Cart ===== */
.cart { padding: var(--s-7) 0; }
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--s-5);
}
.cart-table th, .cart-table td {
  padding: var(--s-3);
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  vertical-align: middle;
}
.cart-table th {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-secondary);
  font-weight: 700;
}
.cart-table img { display: inline-block; vertical-align: middle; margin-right: var(--s-3); border-radius: var(--r-sm); }
.cart-actions {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cart-subtotal { margin-right: auto; font-size: 1.2rem; }

/* ===== Error page ===== */
.error-page__inner { padding: var(--s-9) 0; text-align: center; }
.error-page__inner .kicker { font-size: 1rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--c-primary);
  color: #e8d9c0;
  margin-top: var(--s-9);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--s-6);
  padding: var(--s-8) var(--s-5);
}
.site-footer__heading {
  font-family: var(--f-heading);
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: var(--s-3);
  letter-spacing: .02em;
}
.site-footer h3.site-footer__heading { font-size: 1.6rem; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { padding: 3px 0; }
.site-footer__col a { color: #e8d9c0; }
.site-footer__col a:hover { color: var(--c-accent); }
.site-footer__social {
  margin-top: var(--s-4);
  display: flex; gap: var(--s-3);
}
.site-footer__social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(232,217,192,.3);
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .04em;
}
.newsletter-form__row {
  display: flex;
  gap: 0;
  margin-top: var(--s-3);
}
.newsletter-form input {
  border-radius: var(--r-sm) 0 0 var(--r-sm);
  border-right: 0;
}
.newsletter-form button {
  background: var(--c-accent);
  color: #fff;
  border: 0;
  padding: 0 var(--s-5);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  cursor: pointer;
}
.site-footer__bottom {
  border-top: 1px solid rgba(232,217,192,.15);
  padding: var(--s-4) 0;
  font-size: .82rem;
  opacity: .8;
}
.site-footer__bottom .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* ===== Placeholders ===== */
.placeholder--svg { width: 100%; height: 100%; fill: rgba(74,44,26,.25); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .hero { min-height: 60vh; }
  .hero__inner { padding: var(--s-7) var(--s-5); }
  .story__inner,
  .product__inner,
  .contact__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .contact__details { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr {
    border-bottom: 1px solid var(--c-line);
    padding: var(--s-3) 0;
  }
}
