/** Shopify CDN: Minification failed

Line 22:21 Expected identifier but found whitespace
Line 22:23 Unexpected "{"
Line 22:33 Expected ":"
Line 23:18 Expected identifier but found whitespace
Line 23:20 Unexpected "{"
Line 23:30 Expected ":"
Line 24:15 Expected identifier but found whitespace
Line 24:17 Unexpected "{"
Line 24:27 Expected ":"
Line 25:21 Expected identifier but found whitespace
... and 53 more hidden warnings

**/
/* ===============================
   Prevacore theme styles
   Ivory-minimal · calm sleep brand
   =============================== */

:root {
  --color-background: {{ settings.color_background }};
  --color-surface: {{ settings.color_surface }};
  --color-text: {{ settings.color_text }};
  --color-text-muted: {{ settings.color_text_muted }};
  --color-brand: {{ settings.color_brand }};
  --color-button: {{ settings.color_button }};
  --color-button-text: {{ settings.color_button_text }};
  --color-border: {{ settings.color_border }};
  --container: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --gap: 24px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: {{ settings.type_body_font.family }}, {{ settings.type_body_font.fallback_families }};
  font-weight: {{ settings.type_body_font.weight }};
  font-style: {{ settings.type_body_font.style }};
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
  font-weight: {{ settings.type_heading_font.weight }};
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; }
a { color: var(--color-button); text-decoration: none; }
a:hover { text-decoration: underline; }

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

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

.section { padding: 72px 0; }
.section--tight { padding: 48px 0; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 14px;
}

.text-center { text-align: center; }
.muted { color: var(--color-text-muted); }
.measure { max-width: 620px; }
.measure-center { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--color-button); color: var(--color-button-text); }
.btn--primary:hover { opacity: .92; color: var(--color-button-text); }
.btn--outline {
  background: transparent;
  color: var(--color-button);
  border-color: var(--color-button);
}
.btn--outline:hover { background: var(--color-button); color: var(--color-button-text); }
.btn--disabled {
  background: var(--color-surface);
  color: var(--color-text-muted);
  border-color: var(--color-border);
  cursor: default;
  pointer-events: none;
}

/* ---------- Announcement bar ---------- */
.announcement {
background: #08A4A4;  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-weight: 600;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 247, 241, 0.9);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.site-header__logo img { display: block; }
.site-header__logo-text {
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -0.01em;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:hover { color: var(--color-button); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 76px 0 64px;
}
.hero__content { max-width: 540px; }
.hero__subtext { font-size: 1.08rem; color: var(--color-text-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero__media img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -30px rgba(53, 51, 46, 0.35);
}

/* ---------- Founder note ---------- */
.founder {
  background: #F1EBE1;
  border-radius: 16px;
  padding: 42px clamp(24px, 5vw, 64px);
  border: 1px solid #DDD4C7;
  border-top: 4px solid #08A4A4;
  max-width: 860px;
  margin: 0 auto;
}
.founder__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-brand);
  margin: 0 0 12px;
}
.founder__quote {
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  margin: 0;
  color: var(--color-text);
}

/* ---------- Product grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.pcard {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.pcard--live:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -28px rgba(53,51,46,.4);
}
.pcard__media { position: relative; aspect-ratio: 4 / 3; background: var(--color-surface); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(53,51,46,.82);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.pcard__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.pcard__title { font-size: 1.12rem; margin: 0 0 4px; }
.pcard__meta { color: var(--color-text-muted); font-size: 0.88rem; margin: 0 0 10px; }
.pcard__desc { color: var(--color-text-muted); font-size: 0.95rem; flex: 1; margin: 0 0 18px; }

/* ---------- Brand story ---------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story__media img { border-radius: var(--radius); aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.story__list { list-style: none; padding: 0; margin: 18px 0 0; }
.story__list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--color-text);
}
.story__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-brand);
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--color-border);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 4px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  color: var(--color-brand);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__answer { padding: 0 4px 22px; color: var(--color-text-muted); }

/* ---------- Product page ---------- */
.product {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.product__gallery-main img { border-radius: var(--radius); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.product__thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.product__thumbs img {
  width: 84px; height: 84px; object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  cursor: pointer;
}
.product__price { font-size: 1.5rem; font-weight: 700; margin: 6px 0 18px; }
.product__form .btn { width: 100%; text-align: center; margin-top: 12px; }
.product__variants { margin: 18px 0; }
.product__variants select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff; font-size: 1rem; color: var(--color-text);
}
.product__reassure { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 8px; }
.product__reassure li { color: var(--color-text-muted); padding-left: 26px; position: relative; }
.product__reassure li::before {
  content: "\2713"; position: absolute; left: 0; color: var(--color-brand); font-weight: 700;
}

/* ---------- Footer ---------- */
.site-footer {
background: #35332E;  color: #EFEAE0;
  padding: 56px 0 28px;
  margin-top: 12px;
}
.site-footer a { color: #EFEAE0; }
.site-footer a:hover { color: #fff; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer__brand-name {
  font-family: {{ settings.type_heading_font.family }}, {{ settings.type_heading_font.fallback_families }};
  font-size: 1.4rem; font-weight: 700; color: var(--color-brand); margin: 0 0 10px;
}
.footer__col h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer__signup { display: flex; gap: 8px; margin-top: 12px; max-width: 340px; }
.footer__signup input {
  flex: 1; padding: 11px 14px; border-radius: 999px; border: none; font-size: 0.9rem;
}
.footer__bottom {
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 0.82rem; color: rgba(239,234,224,.7);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Rich text / page ---------- */
.rte { max-width: 760px; margin: 0 auto; }
.rte h2 { margin-top: 1.4em; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 34px; padding: 48px 0; }
  .hero__media { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .story { grid-template-columns: 1fr; gap: 28px; }
  .story__media { order: -1; }
  .product { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 52px 0; }
  .nav { display: none; }
}
/* ---------- Product buy row ---------- */
.product__buy {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 4px 0 20px;
}
.product__buy .product__price {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.btn--buy {
  background: #08A4A4;
  color: #FAF7F1;
  border: none;
  border-radius: 999px;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}
.btn--buy:hover { background: #068f8f; transform: translateY(-1px); }