/** Shopify CDN: Minification failed

Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:31 Expected ":"
Line 24:19 Expected identifier but found whitespace
Line 24:21 Unexpected "{"
Line 24:31 Expected ":"
Line 25:19 Expected identifier but found whitespace
Line 25:21 Unexpected "{"
Line 25:31 Expected ":"
Line 26:20 Expected identifier but found whitespace
... and 9 more hidden warnings

**/
/* ==========================================================================
   Kavacito — theme stylesheet
   Monochrome + coral accent palette, Fraunces (headings) + Inter (body),
   8px spacing scale.
   ========================================================================== */

:root {
  --color-offwhite: {{ settings.color_offwhite | default: '#F7F4EE' }};
  --color-warmgray: {{ settings.color_warmgray | default: '#C9C2B4' }};
  --color-deepgray: {{ settings.color_deepgray | default: '#8A8478' }};
  --color-nearblack: {{ settings.color_nearblack | default: '#17130F' }};
  --color-coral: {{ settings.color_coral | default: '#E86A45' }};

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-6: 48px;
  --space-8: 64px;
  --space-12: 96px;
  --space-16: 128px;

  --page-width: {{ settings.page_width | default: 1280 }}px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-nearblack);
  background: var(--color-offwhite);
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 var(--space-2);
}

p { margin: 0 0 var(--space-2); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.skip-to-content {
  position: absolute;
  top: -100px;
  left: var(--space-2);
  background: var(--color-nearblack);
  color: var(--color-offwhite);
  padding: var(--space-1) var(--space-2);
  z-index: 100;
}
.skip-to-content:focus { top: var(--space-2); }

.container { max-width: var(--page-width); margin: 0 auto; padding: 0 var(--space-3); }
.container--narrow { max-width: 720px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-coral);
  margin: 0 0 var(--space-1);
}
.eyebrow--on-dark { color: var(--color-warmgray); }

/* Buttons ---------------------------------------------------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2) var(--space-4);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.15s ease, transform 0.1s ease;
}
.button:hover { opacity: 0.85; }
.button:active { transform: scale(0.98); }

.button--primary { background: var(--color-nearblack); color: var(--color-offwhite); }
.button--accent { background: var(--color-coral); color: var(--color-offwhite); }
.button--light { background: var(--color-offwhite); color: var(--color-nearblack); }
.button--outline { background: transparent; color: var(--color-nearblack); border-color: var(--color-nearblack); }

/* Logo --------------------------------------------------------------------*/
.logo-wordmark__svg { height: 30px; width: auto; }
.hero__logo .logo-wordmark__svg { height: 38px; }

/* Header ------------------------------------------------------------------*/
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  gap: var(--space-3);
}
.site-nav__list { list-style: none; display: flex; gap: var(--space-4); margin: 0; padding: 0; }
.site-nav__link { font-size: 14px; font-weight: 500; }
.site-header__actions { display: flex; align-items: center; gap: var(--space-2); }
.site-header__icon-link { position: relative; display: inline-flex; }
.site-header__cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--color-coral); color: var(--color-offwhite);
  font-size: 10px; border-radius: 999px; min-width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
}
.site-header__menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; }
.site-header__menu-toggle span { width: 22px; height: 2px; background: var(--color-nearblack); }
.site-nav--mobile { display: none; }
@media (max-width: 860px) {
  .site-nav { display: none; }
  .site-header__menu-toggle { display: flex; }
  .site-nav--mobile.is-open { display: block; padding: 0 var(--space-3) var(--space-3); }
  .site-nav--mobile .site-nav__list { flex-direction: column; gap: var(--space-2); }
}

/* Hero ----------------------------------------------------------------- */
.hero { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media, .hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__image--placeholder { background: var(--color-nearblack); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 55%, rgba(0,0,0,0.25) 100%); }
.hero__content { position: relative; color: var(--color-offwhite); padding-bottom: var(--space-12); max-width: 640px; }
.hero__heading { font-size: clamp(32px, 5vw, 56px); color: var(--color-offwhite); }
.hero__subheading { margin-bottom: var(--space-3); font-size: 16px; }

/* Rich text -------------------------------------------------------------- */
.rich-text { padding: var(--space-12) 0; }
.rich-text__inner--center { text-align: center; max-width: 640px; margin: 0 auto; }
.rich-text__heading { font-size: 32px; }
.rich-text__text { margin-bottom: var(--space-3); }

/* Featured collection / product grid ------------------------------------ */
.featured-collection { padding: var(--space-12) 0; }
.featured-collection__header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: var(--space-4); }
.featured-collection__heading { font-size: 28px; margin: 0; }
.featured-collection__view-all { font-size: 14px; font-weight: 600; border-bottom: 1px solid currentColor; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 960px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card__link { display: block; }
.product-card__media {
  position: relative; aspect-ratio: 1 / 1;
  background: var(--color-warmgray); border-radius: 12px; overflow: hidden; margin-bottom: var(--space-2);
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder { width: 100%; height: 100%; background: var(--color-warmgray); }
.product-card__badge {
  position: absolute; top: var(--space-1); left: var(--space-1);
  background: var(--color-nearblack); color: var(--color-offwhite);
  font-size: 11px; padding: 2px 8px; border-radius: 999px;
}
.product-card__title { font-size: 15px; font-weight: 500; margin: 0 0 4px; }
.product-card__price { font-size: 14px; color: var(--color-coral); margin: 0; }

/* Image with text --------------------------------------------------------*/
.image-with-text { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.image-with-text--right { direction: rtl; }
.image-with-text--right .image-with-text__content { direction: ltr; }
.image-with-text__media img, .image-with-text__placeholder { width: 100%; height: 100%; object-fit: cover; }
.image-with-text__placeholder { background: var(--color-deepgray); min-height: 320px; }
.image-with-text__content { display: flex; flex-direction: column; justify-content: center; padding: var(--space-8); }
.image-with-text__heading { font-size: 30px; }
.image-with-text__text { margin-bottom: var(--space-3); }
@media (max-width: 760px) {
  .image-with-text, .image-with-text--right { grid-template-columns: 1fr; direction: ltr; }
  .image-with-text__content { padding: var(--space-4); }
}

/* Newsletter --------------------------------------------------------------*/
.newsletter { padding: var(--space-12) 0; text-align: center; }
.newsletter__inner { max-width: 480px; margin: 0 auto; }
.newsletter__form { margin-top: var(--space-3); }
.newsletter__field { display: flex; gap: var(--space-1); }
.newsletter__field input { flex: 1; padding: var(--space-2); border-radius: 999px; border: 1px solid var(--color-warmgray); font-family: var(--font-body); }

/* Product page ------------------------------------------------------------*/
.product { padding: var(--space-8) 0; }
.product__inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-6); }
.product__media img { border-radius: 12px; }
.product__thumbnails { display: flex; gap: var(--space-1); margin-top: var(--space-2); }
.product__thumbnail { border: 1px solid var(--color-warmgray); border-radius: 8px; padding: 0; overflow: hidden; width: 64px; height: 64px; cursor: pointer; }
.product__title { font-size: 32px; }
.product__price { font-size: 20px; color: var(--color-coral); font-weight: 600; }
.product__compare-price { color: var(--color-deepgray); font-weight: 400; margin-left: var(--space-1); }
.product__description { margin: var(--space-3) 0; }
.product__option { margin-bottom: var(--space-2); }
.product__option label, .product__quantity label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.product__option select, .product__quantity input { padding: var(--space-1) var(--space-2); border-radius: 8px; border: 1px solid var(--color-warmgray); font-family: var(--font-body); }
.product__add { margin-top: var(--space-2); width: 100%; }
.product__facts { display: flex; flex-direction: column; gap: var(--space-1); margin-top: var(--space-3); padding-top: var(--space-3); border-top: 1px solid var(--color-warmgray); }
.product__fact { display: flex; justify-content: space-between; font-size: 14px; }
.product__fact-label { color: var(--color-deepgray); }
.product__fact-value { font-weight: 600; }
.product__ingredients { margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid var(--color-warmgray); }
.product__disclaimer { margin-top: var(--space-4); font-size: 12px; color: var(--color-deepgray); }
@media (max-width: 760px) { .product__inner { grid-template-columns: 1fr; } }

/* Collection page -----------------------------------------------------------*/
.collection { padding: var(--space-8) 0; }
.collection__header { margin-bottom: var(--space-4); }
.collection__title { font-size: 32px; }
.pagination { margin-top: var(--space-4); text-align: center; }

/* Collection list ---------------------------------------------------------*/
.collection-list { padding: var(--space-8) 0; }
.collection-list__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.collection-list__item { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; }
.collection-list__item img, .collection-list__placeholder { width: 100%; height: 100%; object-fit: cover; }
.collection-list__placeholder { background: var(--color-warmgray); }
.collection-list__name { position: absolute; bottom: var(--space-2); left: var(--space-2); color: var(--color-offwhite); font-family: var(--font-heading); font-size: 20px; }
@media (max-width: 760px) { .collection-list__grid { grid-template-columns: 1fr; } }

/* Cart ----------------------------------------------------------------------*/
.cart { padding: var(--space-8) 0; }
.cart__table { width: 100%; border-collapse: collapse; }
.cart__table th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; padding-bottom: var(--space-2); border-bottom: 1px solid var(--color-warmgray); }
.cart__row td { padding: var(--space-2) 0; border-bottom: 1px solid var(--color-warmgray); vertical-align: top; }
.cart__product { display: flex; gap: var(--space-2); align-items: flex-start; }
.cart__product img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.cart__footer { display: flex; align-items: center; gap: var(--space-2); justify-content: flex-end; margin-top: var(--space-3); }
.cart__subtotal { margin-right: auto; font-weight: 600; }

/* Simple pages / customer account ------------------------------------------*/
.page, .customer-page, .error-404, .search { padding: var(--space-8) 0; }
.customer-page label { display: block; font-size: 13px; font-weight: 600; margin: var(--space-2) 0 4px; }
.customer-page input { width: 100%; max-width: 360px; padding: var(--space-1) var(--space-2); border-radius: 8px; border: 1px solid var(--color-warmgray); }

/* Footer --------------------------------------------------------------------*/
.site-footer { background: var(--color-nearblack); color: var(--color-offwhite); padding: var(--space-8) 0 var(--space-3); }
.site-footer__inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: var(--space-4); padding-bottom: var(--space-4); }
.site-footer__tagline { margin-top: var(--space-2); opacity: 0.85; max-width: 280px; }
.site-footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-1); }
.site-footer__bottom { border-top: 1px solid rgba(247,244,238,0.2); padding-top: var(--space-2); font-size: 12px; opacity: 0.7; }
@media (max-width: 760px) { .site-footer__inner { grid-template-columns: 1fr; } }
