/** Shopify CDN: Minification failed

Line 843:0 Unexpected "}"
Line 853:12 Expected identifier but found whitespace
Line 853:13 Unexpected "12px"
Line 945:1 Unexpected bad string token
Line 945:2 Unterminated string token

**/
/* =====================================================
   CONSERVE UI TRIAL SYSTEM
   Homepage + product UI cleanup
   ===================================================== */

/* ---------- GLOBAL TOKENS ---------- */

:root {
  --conserve-max: 1120px;
  --conserve-cream: #fcfbf5;
  --conserve-soft: #f4efe6;
  --conserve-black: #0d0d0d;
  --conserve-text: #1a1a1a;
  --conserve-muted: #5f5f5f;
  --conserve-border: rgba(13, 13, 13, 0.10);
  --conserve-shadow: 0 10px 34px rgba(0,0,0,0.055);
  --conserve-radius: 14px;
  --conserve-teal: #95bbbf;
  --conserve-terra: #8c4a32;
}

html,
body {
  overflow-x: hidden !important;
}

body * {
  box-sizing: border-box;
}

.page-width,
.shopify-section .page-width,
.wrapper {
  max-width: var(--conserve-max) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

@media (max-width: 768px) {
  .page-width,
  .shopify-section .page-width,
  .wrapper {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (min-width: 1400px) {
  :root {
    --content-max: 1120px !important;
  }
}

/* ---------- SECTION RHYTHM ---------- */

.conserve-section {
  padding-top: 68px;
  padding-bottom: 68px;
}

@media (max-width: 768px) {
  .conserve-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
}

/* ---------- TYPOGRAPHY ---------- */

.conserve-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--conserve-muted);
}

.conserve-title {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.98;
  font-weight: 650;
  letter-spacing: -0.045em;
  color: var(--conserve-black);
}

.conserve-subtitle {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 17px;
  line-height: 1.62;
  color: var(--conserve-muted);
}

.conserve-section-head {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.conserve-section-head--left {
  max-width: 720px;
  margin: 0 0 24px;
  text-align: left;
}

/* ---------- BUTTONS ---------- */

.conserve-btn,
a.conserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid var(--conserve-black);
  background: var(--conserve-black);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.conserve-btn:hover,
a.conserve-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.conserve-btn--secondary {
  background: transparent;
  color: var(--conserve-black) !important;
}

/* Theme button normalization */
button,
.button,
.btn,
.shopify-payment-button__button,
.product-form__submit {
  border-radius: 8px !important;
}

.product-form__submit,
.button--add-to-cart,
button[type="submit"] {
  min-height: 50px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* ---------- HERO OVERRIDE CARD ---------- */

.conserve-hero-card {
  max-width: 540px;
  background: rgba(252, 251, 245, 0.92);
  backdrop-filter: blur(6px);
  padding: 36px;
  border: 1px solid rgba(13,13,13,0.08);
  box-shadow: 0 14px 46px rgba(0,0,0,0.08);
}

.conserve-hero-title {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.055em;
  color: var(--conserve-black);
}

.conserve-hero-sub {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.58;
  color: #2f2f2f;
}

.conserve-hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.conserve-price {
  font-size: 22px;
  line-height: 1;
  font-weight: 650;
  color: var(--conserve-black);
}

.conserve-price-note {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--conserve-muted);
}

@media (max-width: 768px) {
  .conserve-hero-card {
    padding: 24px;
  }

  .conserve-hero-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .conserve-btn,
  a.conserve-btn {
    width: 100%;
  }
}

/* ---------- VALUE STRIP ---------- */

.conserve-value-strip {
  background: var(--conserve-cream);
}

.conserve-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.conserve-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 16px 20px;
  border: 1px solid var(--conserve-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 24px rgba(0,0,0,0.025);
}

.conserve-value-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--conserve-border);
  font-size: 13px;
  color: var(--conserve-black);
}

.conserve-value-text {
  font-size: 14px;
  line-height: 1.25;
  font-weight: 650;
  color: var(--conserve-black);
}

@media (max-width: 768px) {
  .conserve-value-grid {
    grid-template-columns: 1fr;
  }

  .conserve-value-item {
    border-radius: 14px;
  }
}

/* ---------- SPLIT SECTION ---------- */

.conserve-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
}

@media (max-width: 900px) {
  .conserve-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.conserve-media-shell {
  overflow: hidden;
  border-radius: 18px;
  background: var(--conserve-soft);
  border: 1px solid var(--conserve-border);
}

.conserve-media-shell img {
  display: block;
  width: 100%;
  height: auto;
}

.conserve-bullets {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.conserve-bullets li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.62;
  color: var(--conserve-text);
}

.conserve-bullets li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--conserve-black);
}

/* ---------- CARD SYSTEM ---------- */

.conserve-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.conserve-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 980px) {
  .conserve-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .conserve-card-grid,
  .conserve-card-grid--4 {
    grid-template-columns: 1fr;
  }
}

.conserve-card {
  height: 100%;
  min-height: 250px;
  padding: 28px;
  border-radius: var(--conserve-radius);
  background: #fff;
  border: 1px solid var(--conserve-border);
  box-shadow: var(--conserve-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.conserve-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
}

.conserve-card__kicker {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #777;
}

.conserve-card__title {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--conserve-black);
}

.conserve-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.62;
  color: var(--conserve-muted);
}

.conserve-card--teal {
  border-color: rgba(149, 187, 191, 0.40);
}

.conserve-card--terra {
  border-color: rgba(140, 74, 50, 0.30);
}

/* ---------- PRODUCT STRIP ---------- */

.conserve-product-strip {
  background: var(--conserve-soft);
}

.conserve-buy-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  padding: 36px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--conserve-border);
  box-shadow: var(--conserve-shadow);
}

.conserve-buy-card img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.conserve-buy-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0;
}

.conserve-buy-price strong {
  font-size: 30px;
  letter-spacing: -0.03em;
}

.conserve-buy-price span {
  font-size: 14px;
  color: var(--conserve-muted);
}

@media (max-width: 900px) {
  .conserve-buy-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* ---------- IMAGE SLIDE-UP ANIMATION ---------- */

.conserve-image-stack {
  position: relative;
  overflow: hidden;
}

.conserve-image-stack img {
  width: 100%;
  display: block;
  transform: translateY(48px);
  opacity: 0;
  transition: transform 0.85s ease, opacity 0.85s ease;
}

.conserve-image-stack.visible img {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- PREMIUM IMAGE PAIR ---------- */

.conserve-image-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.conserve-image-tile {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--conserve-black);
}

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

.conserve-image-tile__copy {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  color: #fff;
}

.conserve-image-tile__copy h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.conserve-image-tile__copy p {
  max-width: 520px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .conserve-image-pair {
    grid-template-columns: 1fr;
  }

  .conserve-image-tile {
    min-height: 360px;
  }
}

/* ---------- FINAL CTA ---------- */

.conserve-final-cta {
  text-align: center;
  padding: 78px 24px;
  background: var(--conserve-black);
  color: #fff;
}

.conserve-final-cta .conserve-title,
.conserve-final-cta .conserve-subtitle,
.conserve-final-cta .conserve-eyebrow {
  color: #fff;
}

.conserve-final-cta .conserve-subtitle {
  opacity: 0.78;
}

.conserve-final-cta .conserve-btn {
  margin-top: 28px;
  background: #fff;
  border-color: #fff;
  color: var(--conserve-black) !important;
}

/* ---------- CHAT BOT + BACK TO TOP ---------- */

#chat-button,
.chat-button,
[class*="chat"] button {
  border-radius: 999px !important;
}

/* ---------- CLEANUP HELPERS ---------- */

.conserve-hide {
  display: none !important;
}

/* reduce overly wide rich text */
.rte,
.section__description,
.rich-text__text {
  max-width: 760px;
}

/* keep large images from breaking layout */
img,
video,
iframe {
  max-width: 100%;
}
.conserve-card h3 {
  margin-top: 0;
}
/* FINAL OVERRIDES */

html {
  scroll-behavior: smooth;
}

.conserve-card h3 {
  margin-top: 0;
}

.conserve-card {
  min-height: 220px !important;
  padding: 24px !important;
}

.conserve-card__title {
  font-size: 20px !important;
}

.conserve-card__text {
  font-size: 14px !important;
}

.conserve-review-anchor {
  margin: 22px 0 14px !important;
}

.conserve-review-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #0f8f74 !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.conserve-review-link:hover {
  text-decoration: underline !important;
  text-underline-offset: 4px !important;
}

.conserve-stars {
  color: #0f8f74 !important;
  font-size: 20px !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
}

.conserve-price {
  font-size: 30px !important;
  font-weight: 700 !important;
}

.conserve-price-note {
  font-size: 14px !important;
  color: #666 !important;
}

.conserve-formula-section .conserve-section-head {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.conserve-formula-section .conserve-card-grid {
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.conserve-final-cta {
  text-align: center !important;
  padding: 86px 24px !important;
  background: #151515 !important;
  color: #fff !important;
  margin-bottom: 0 !important;
}

.conserve-final-cta .conserve-title,
.conserve-final-cta .conserve-subtitle,
.conserve-final-cta .conserve-eyebrow {
  color: #fff !important;
}

.conserve-final-cta .conserve-subtitle {
  opacity: 0.78 !important;
}

.conserve-final-cta .conserve-btn {
  margin-top: 28px !important;
  background: #fff !important;
  border-color: #fff !important;
  color: #0d0d0d !important;
}

.site-footer,
.footer,
footer {
  background: #000 !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
}
body:not(.template-index):not(.template-product) .jdgm-widget,
body:not(.template-index):not(.template-product) .jdgm-review-widget,
body:not(.template-index):not(.template-product) [class*="jdgm-rev"],
body:not(.template-index):not(.template-product) .jdgm-carousel-wrapper {
  display: none !important;
}
button,
.btn,
.conserve-btn,
.header__button,
.button {
  text-transform: none !important;
}
/* Force Judge.me homepage review styling */
section[id*="judgeme"],
div[id*="judgeme"],
[class*="jdgm"] {
  font-family: inherit !important;
  letter-spacing: 0 !important;
}

[class*="jdgm"] h2,
[class*="jdgm"] h3,
[class*="jdgm"] [class*="title"],
[class*="jdgm"] [class*="Title"] {
  font-family: inherit !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.15 !important;
  text-transform: none !important;
}

[class*="jdgm"] p,
[class*="jdgm"] span,
[class*="jdgm"] div {
  letter-spacing: 0 !important;
}

[class*="jdgm"] [class*="body"],
[class*="jdgm"] [class*="review"],
[class*="jdgm"] [class*="content"] {
  font-size: 14px !important;
  line-height: 1.55 !important;
}
.pswp__caption,
.pswp__top-bar ~ h1,
.product-media-modal__content .product__title {
  display: none !important;
}
@media screen and (max-width: 749px) {

  /* HOMEPAGE HERO ONLY */
  .template-index .hero__content__wrapper h1,
  .template-index .hero__content__wrapper h2 {
    font-size: 36px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
    max-width: 248px !important;
  }

  .template-index .hero__content__wrapper p {
    font-size: 18px !important;
    line-height: 1.35 !important;
    max-width: 260px !important;
  }

  .template-index .hero__content__wrapper .btn {
    width: 100% !important;
    max-width: 260px !important;
  }

  /* HOMEPAGE CARDS */
  .template-index .conserve-card-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .template-index .conserve-card--minimal {
    grid-column: span 1 !important;
  }

  /* BLOG / ARTICLE ONLY */
  .template-article .hero__content__wrapper,
  .template-article .hero_content_wrapper,
  .template-article .hero_content,
  .template-article .hero_rte,
  .template-article .study-section,
  .template-article .rte,
  .template-article .section-rich-text .page-width,
  .template-article main .page-width {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  .template-article h1,
  .template-article h2 {
    font-size: 28px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
  }

  .template-article p,
  .template-article li {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }

  .template-article .study-citation {
    font-size: 13px !important;
    color: #888 !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
  }

/* FLOATING ASK BUTTON */
#ask-conserve-button {
  bottom: 47px !important;
  right: 12px !important;
  font-size: 11px !important;
  padding: 6px 10px !important;
}

@media screen and (max-width: 749px) {
  body:not(.template-index) #ask-conserve-button {
    bottom: 90px !important;
  }
}
@media screen and (max-width: 749px) {
  [class*="scroll"][class*="top"],
  [id*="scroll"][id*="top"],
  .back-to-top,
  .back-to-top-button,
  .js-back-to-top {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
}
  }
}.conserve-research-disclaimer {
  display: block !important;
  font-size: 12px !important;
  color: #888 !important;
  font-style: italic !important;
  line-height: 1.5 !important;
  margin-top: 32px !important;
  padding-top: 18px !important;
  border-top: 1px solid #e6e6e6 !important;
}
  font-size: 12px !important;
  color: #6f6f6f !important;
  font-style: italic !important;
  line-height: 1.55 !important;
  margin-top: 24px !important;
  padding-top: 14px !important;
  border-top: 1px solid #eaeaea !important;
}
/* Judge.me mobile review cards — final */
@media screen and (max-width: 749px) {
  .jdgm-review-card {
    height: 300px !important;
    overflow: hidden !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 22px !important;
  }

  .jdgm-review-card__details {
    display: grid !important;
    grid-template-rows: 1fr auto auto !important;
    align-items: center !important;
    justify-items: center !important;
    height: 100% !important;
    width: 100% !important;
    padding: 48px 0 34px !important;
    box-sizing: border-box !important;
  }

 .jdgm-review-card__details-body,
.jdgm-review-card__details-body * {
  max-width: 250px !important;
  text-align: center !important;
  margin: 0 auto !important;
.jdgm-review-card__details-body p {
  margin: 0 !important;
}
  display: -webkit-box !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical !important;

  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: normal !important;
}
  .jdgm-review-card__details-body * {
    text-align: center !important;
    white-space: normal !important;
  }

  .jdgm-review-card__footer {
    margin-top: 22px !important;
    text-align: center !important;
  }
}/* Normalize all science blog article typography */
body.template-article .hero__rte,
body.template-article .hero__rte p,
body.template-article .hero__rte li,
body.template-article .hero__rte blockquote {
  font-family: inherit !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}

body.template-article .hero__rte h2 {
  font-family: inherit !important;
  font-size: 30px !important;
  line-height: 1.15 !important;
  letter-spacing: -0.03em !important;
  font-weight: 700 !important;
}

body.template-article .hero__rte h3 {
  font-family: inherit !important;
  font-size: 22px !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em !important;
  font-weight: 700 !important;
}

body.template-article .hero__rte blockquote {
  margin: 18px 0 28px !important;
  padding-left: 18px !important;
  border-left: 3px solid #111 !important;
  font-style: italic !important;
  color: #444 !important;
}
.template-article .hero__rte p:last-child {
  margin-top: 16px !important;
  padding-top: 12px !important;
}'