/** Shopify CDN: Minification failed

Line 855:57 Unexpected "{"

**/
/* reset */
div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1rem;
	font: inherit;
	vertical-align: baseline;
}

ul:empty,
dl:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty,
code:empty {
  display: none;
}

details {
  display: block;
}

summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

dialog {
  margin: 0;
  padding: 0;
  border: none !important;
}

/* Manages focus and allows for transitions */
dialog[hidden],
[role="dialog"][hidden] {
  display: block;
  visibility: hidden;
}

/* base-focus */
*:focus {
  outline: 0;
  box-shadow: none;
}

/* Focus styles includes a fallback for browsers that don't support :focus-visible, with JS polyfill and browser with no JS */
*:focus-visible,
.no-js *:focus {
  outline: 2px solid hsla(var(--color-foreground-raw), 0.3);
  outline-offset: 2px;
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* manage js alterations */
.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

/* page layout */
.page-layout {
  display: grid;
  grid-template-areas:  "header"
                        "main"
                        "footer";
  grid-template-rows: max-content minmax(max-content, 1fr) max-content;
  height: 100%;
  position: relative;
}

.group--header {
  grid-area: header;
}

#MainContent {
  grid-area: main;
}

.group--footer {
  grid-area: footer;
  overflow: hidden;
}

/* Freeze page so there's no page scroll when certain modals/popups are open */
html.overlay-on,
html.search-open,
html.promo-popup-open,
html.age-verifier-open {
  overflow: hidden;
}

.page-layout__main {
  overflow: hidden;
  width: 100%;
}

.page-layout__overlay {
  background-color: var(--color-overlay);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-duration) var(--transition-timing-function);
  visibility: hidden;
  z-index: var(--z-index-background);
}

@media screen and (min-width: 900px) and (hover: hover) and (pointer: fine) {
  html.search-open {
    overflow: unset;
  }

  html.search-open .page-layout__overlay {
    opacity: 1;
    visibility: visible;
    z-index: var(--z-index-pop-up-overlay);
  }
}

html.overlay-on .page-layout__overlay {
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  z-index: var(--z-index-freeze-overlay);
}

html.overlay-on--no-pointer .page-layout__overlay {
  cursor: default;
}

a,
summary {
  --color-link: var(--color-foreground);
  --color-link-raw: var(--color-foreground-raw);

  color: var(--color-link);
  cursor: pointer;
  fill: currentColor;
  text-decoration: underline;
  text-decoration-color: hsla(var(--color-link-raw), 0.3);
  text-underline-offset: var(--link-underline-offset);
  text-decoration-thickness: var(--border-size--thick);
  transition-duration: var(--transition-duration);
  transition-property: color, fill, opacity, text-decoration;
  transition-timing-function: var(--transition-timing-function);
}

a svg,
summary svg {
  fill: inherit;
}


a:focus-visible,
summary:focus-visible {
  box-shadow: none;
  color: var(--color-link);
  outline: 2px solid hsla(var(--color-link-raw), 0.3);
  outline-offset: 2px;
}

a:hover,
summary:hover {
  color: var(--color-link);
  text-decoration-color: transparent;
}

a svg,
summary svg {
  fill: currentColor;
  vertical-align: middle;
}

a.active {
  text-decoration: underline;
  text-decoration-color: hsla(var(--color-link-raw), 0.3);
  text-underline-offset: var(--link-underline-offset);
  text-decoration-thickness: var(--border-size--thick);
}

svg {
  fill: currentColor;
}

hr {
  border-bottom: var(--border-size--thick) solid var(--color-border);
  border-left: 0;
  border-right: 0;
  border-top: 0;
  margin: 0;
}

/* media */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
}

strong,
b {
  font-weight: bold;
}

em,
i {
  font-style: italic;
}

small {
  font-size: var(--font-copy-size-small);
}

blockquote,
q {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: var(--space-medium);
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}

/* tables */
table {
	border-collapse: collapse;
	border-spacing: 0;
  margin: 0;
  table-layout: fixed;
  text-align: left;
  width: 100%;
}

thead {
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

th {
  font-weight: bold;
}

th,
td {
  padding: var(--space-small);
  vertical-align: middle;
}

code {
  background: hsla(var(--color-foreground-raw), 0.075);
  font-family: monospace;
  padding: 0.1em 0 0.2em;
  word-wrap: break-word;
}

/* lists */
ol,
ul {
  margin-left: 1.5em;
}

.list--unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list--inline > li {
  display: inline-block;
}

/* forms */
form:focus,
form:focus-visible {
  outline: 0;
}

a,
area,
button,
[role="button"],
input,
label,
select,
summary,
textarea {
  margin: 0;
  touch-action: manipulation;
}

button,
input[type="submit"],
label[for] {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

fieldset {
  background-color: transparent;
  border: 0;
}

legend {
  font-weight: bold;
}

label,
legend,
.label {
  display: block;
  font-family: var(--font-body-family);
  font-size: 0.85rem;
  font-style: var(--font-body-style);
  font-weight: bold;
}

input,
select,
textarea {
  display: block;
  font-family: var(--font-body-family);
  font-size: 1rem;
  height: var(--pointer-element-min-height);
}

input {
  border-radius: var(--border-radius);
}

[type="email"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="date"],
input:not([type]),
textarea {
  -webkit-appearance: none;
  appearance: none;
  background-color: var(--color-background);
  border-radius: var(--border-radius);
  border: var(--border-size--thin) solid var(--color-border);
  box-shadow: none;
  color: var(--color-foreground);
  display: block;
  font-size: 1rem;
  padding: 0.75em 1em;
  transition: border-color var(--transition-duration) var(--transition-timing-function);
  width: 100%;
}

[type="email"]:focus-visible,
[type="number"]:focus-visible,
[type="password"]:focus-visible,
[type="search"]:focus-visible,
[type="tel"]:focus-visible,
[type="text"]:focus-visible,
[type="date"]:focus-visible,
input:not([type]):focus-visible,
textarea:focus-visible {
  border-color: var(--color-primary);
  border-radius: var(--border-radius);
  outline: 0;
}

[type="email"]:disabled,
[type="number"]:disabled,
[type="password"]:disabled,
[type="search"]:disabled,
[type="tel"]:disabled,
[type="text"]:disabled,
[type="date"]:disabled,
input:not([type]):disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

[type="email"]::placeholder,
[type="number"]::placeholder,
[type="password"]::placeholder,
[type="search"]::placeholder,
[type="tel"]::placeholder,
[type="text"]::placeholder,
[type="date"]::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
  color: hsla(var(--color-foreground-raw), 0.5);
  opacity: 0.5;
}

[type="search"] {
  -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-decoration,
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-results-button,
[type="search"]::-webkit-search-results-decoration {
  display: none;
}

textarea {
  border-radius: var(--border-radius);
  min-height: 6rem;
  resize: vertical;
}

[type="checkbox"],
[type="radio"] {
  display: inline;
  margin-right: var(--space-small);
}

[type="file"] {
  width: 100%;
}

select {
  color: hsl(var(--color-default-text));
}

[type="checkbox"]:focus-visible,
[type="radio"]:focus-visible,
[type="file"]:focus-visible,
select:focus-visible {
  border-color: var(--color-primary);
  outline: 0;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: var(--space-small);
}

/* CTA block on blog page */
.ib-linkbox { margin: 10px 0 18px; }
.ib-linkbox__inner {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 16px;
  border: 1px solid var(--color-border, #e5e7eb);
  background: linear-gradient(180deg, rgba(16,185,129,.08), rgba(16,185,129,.02));
  text-decoration: none; color: inherit; transition: all .18s ease;
}
.ib-linkbox__inner:hover {
  border-color: #10b981; box-shadow: 0 8px 22px rgba(16,185,129,.18);
  transform: translateY(-1px);
}
.ib-linkbox__icon { color: #10b981; flex: 0 0 auto; }
.ib-linkbox__badge {
  display: inline-block; font-size: 12px; line-height: 1; font-weight: 700;
  color: #065f46; background: rgba(16,185,129,.15);
  border: 1px solid rgba(16,185,129,.25); padding: 5px 8px; border-radius: 999px;
  margin-bottom: 6px;
}
.ib-linkbox__content { flex: 1 1 auto; min-width: 0; }
.ib-linkbox__title { font-size: 16px; font-weight: 700; line-height: 1.35; }
.ib-linkbox__cta {
  display: flex; align-items: center; gap: 6px; font-weight: 700; flex: 0 0 auto;
}
@media (max-width: 640px) {
  .ib-linkbox__inner { align-items: flex-start; }
  .ib-linkbox__cta { margin-left: auto; }
}

.ib-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
  padding: 25px 16px;
  font-family: inherit;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.ib-sticky-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 12px;
  align-items: center;
  padding-left: 50px;  /* ruimte links */
  padding-right: 50px; /* ruimte rechts */
}

.ib-sticky-cta-text {
  flex: 1;
}

.ib-sticky-cta-text h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 2px;
  color: #111827;
}

.ib-sticky-cta-text p {
  font-size: 13px;
  margin: 0;
  color: #4b5563;
}

.ib-sticky-cta-button {
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  background: #16a34a; /* InnerBuddies groen */
  color: #ffffff;
}

.ib-sticky-cta-button:hover {
  background: #15803d;
}

.ib-sticky-cta-close {
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  color: #9ca3af;
}

@media (max-width: 640px) {
  .ib-sticky-cta-content {
    flex-direction: row;
    align-items: flex-start;
    padding-left: 30px;  /* ruimte links */
    padding-right: 30px; /* ruimte rechts */
  }
  .ib-sticky-cta-text p {
    display: none; /* mobiel super kort houden */
  }
}
.ib-sticky-cta.visible {
  transform: translateY(0);
}
.hidden { display: block; } /* helper so Liquid shows but JS hides */

/* Link blocks on silo pages */
.silo-links-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.silo-link-card {
  display: block;
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  text-decoration: none;
  padding: 1.25rem 1.5rem;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.silo-link-card:hover {
  background: linear-gradient(135deg, #e6fffa, #ebf8ff);
  border-color: #81e6d9;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.silo-link-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.silo-link-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

.silo-link-icon {
  font-size: 1.2rem;
  color: #319795;
  transition: transform 0.25s ease;
}

.silo-link-card:hover .silo-link-icon {
  transform: translateX(4px);
}

.silo-up-card {
  display: block;
  background: linear-gradient(145deg, #f8fafc, #ecfeff);
  border: 1px solid rgba(56, 178, 172, 0.2); /* zachte teal border */
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  margin: 2.5rem 0;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease-in-out;
}

.silo-up-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #e6fffa, #e0f2fe);
  border-color: rgba(56, 178, 172, 0.35);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.silo-up-content {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.silo-up-icon {
  font-size: 1.6rem;
  color: #2c7a7b; /* InnerBuddies turquoise */
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.silo-up-card:hover .silo-up-icon {
  transform: translateY(-2px);
  color: #319795; /* iets lichtere teal bij hover */
}

.silo-up-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
  letter-spacing: 0.01em;
}

/* USP-bar */
/* Container USP-bar */
.ib-usp-bar {
  background-color: #FFF3CD;        /* zachte geel highlight */
  color: #1B4332;                   /* donkergroen: vertrouwd & leesbaar */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 10px 24px;
  border-radius: 999px;             /* pill shape */
  margin: 0px auto 10px;
  max-width: 1250px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  font-size: 14px;
  line-height: 1.4;
}

/* Individuele USP items */
.ib-usp-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

/* Icon (inline SVG) */
.ib-usp-item svg {
  width: 20px;
  height: 20px;
  stroke:#2D6A4F;
}

/* Hover subtle (desktop) */
@media (hover: hover) {
  .ib-usp-bar:hover {
    box-shadow: 0 10px 28px rgba(0,0,0,0.10);
    transform: translateY(-1px);
    transition: all 0.18s ease-out;
  }
}

/* Responsive: stack netjes op kleinere schermen */
@media (max-width: 768px) {
  .ib-usp-bar {
    flex-wrap: wrap;
    gap: 12px 18px;
    padding: 10px 16px;
    border-radius: 18px;
  }
  .ib-usp-item {
    white-space: normal;
    font-size: 13px;
  }
}

/* Micro guarantee block above Buy button */
.ib-micro-guarantee {
  margin-bottom: 12px; /* space before the Buy button */
}

/* Main guarantee box */
.ib-micro-guarantee__box {
  padding: 5px 14px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb; /* light background */
  font-size: 14px;
  line-height: 1.5;
}

.cart-drawer__empty {
  padding: 24px 16px;
  text-align: center;
}

.cart-drawer__empty-text {
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
  margin-bottom: 16px;
}

.cart-drawer__empty-cta {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
}

/* Legal note above Buy button */
.ib-legal-note {
  margin-top: 8px;        /* space above (from price/guarantee box) */
  margin-bottom: 8px;     /* space below, before Buy button */
}

.ib-legal-note__text {
  font-size: 12px;
  line-height: 1.5;
  color: #6b7280;         /* subtle grey */
}

.ib-legal-note__text a {
  text-decoration: underline;
}
/* Reassurance line in cart */
.ib-cart-reassurance {
  margin: 10px 0 16px;
  text-align: center;
}

.ib-cart-reassurance__text {
  font-size: 11.5px;
  line-height: 1.4;
  color: #6b7280; /* subtle grey */
}


.rte ul {
  list-style-position: inside;
  padding-left: 0;
}

/* Center content inside each column */
.multicolumn__item {
  text-align: center;
}

/* Center lists but keep bullet + text aligned nicely */
.multicolumn__item .rte ul {
  list-style-position: inside;
  padding-left: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: center;
}

/* Center buttons inside each column */
.multicolumn__item .button,
.multicolumn__item .btn {
  margin: 24px auto 0;
  display: inline-block;
}

/* Rich text sections with 2-column buttons */
.rich-text--template--24150126854412__rich_text_8MQH37,
.rich-text--template--24150126854412__rich_text_jeU6KN,
.rich-text--template--24150126854412__rich_text_U8zyaY,
.rich-text--template--24150127804684__rich_text_cA7yhK,
.rich-text--template--24150127804684__rich_text_Py94jx,
.rich-text--template--24150127804684__rich_text_DUPL6i,
.rich-text--template--24150127935756__rich_text_myzYPm,
.rich-text--template--24150127935756__rich_text_8zHJqt,
.rich-text--template--24150127935756__rich_text_4HUGVg,  {
}

/* Split buttons into 2 columns */
.rich-text--template--24150126854412__rich_text_8MQH37
.buttons-block.content-box__buttons,
.rich-text--template--24150126854412__rich_text_jeU6KN
.buttons-block.content-box__buttons,
.rich-text--template--24150126854412__rich_text_U8zyaY
.buttons-block.content-box__buttons,

.rich-text--template--24150127804684__rich_text_cA7yhK
.buttons-block.content-box__buttons,
.rich-text--template--24150127804684__rich_text_Py94jx
.buttons-block.content-box__buttons,
.rich-text--template--24150127804684__rich_text_DUPL6i
.buttons-block.content-box__buttons,
.rich-text--template--24150127935756__rich_text_myzYPm
.buttons-block.content-box__buttons,
.rich-text--template--24150127935756__rich_text_8zHJqt
.buttons-block.content-box__buttons,
.rich-text--template--24150127935756__rich_text_4HUGVg
.buttons-block.content-box__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Center each button */
.rich-text--template--24150126854412__rich_text_8MQH37
.buttons-block.content-box__buttons .button,
.rich-text--template--24150126854412__rich_text_jeU6KN
.buttons-block.content-box__buttons .button,
.rich-text--template--24150126854412__rich_text_U8zyaY
.buttons-block.content-box__buttons .button,

.rich-text--template--24150127804684__rich_text_cA7yhK
.buttons-block.content-box__buttons .button,
.rich-text--template--24150127804684__rich_text_Py94jx
.buttons-block.content-box__buttons .button,
.rich-text--template--24150127804684__rich_text_DUPL6i
.buttons-block.content-box__buttons .button,
.rich-text--template--24150127935756__rich_text_myzYPm
.buttons-block.content-box__buttons .button,
.rich-text--template--24150127935756__rich_text_8zHJqt
.buttons-block.content-box__buttons .button,
.rich-text--template--24150127935756__rich_text_4HUGVg
.buttons-block.content-box__buttons .button{
  justify-self: center;
}


#shopify-block-AcDJIcC9GUHdHMEgxV__judge_me_reviews_testimonials_carousel_73Wx8L,
#shopify-section-template--24150127935756__questions_xHtXw8,
#shopify-section-template--24150127804684__questions_iDrfKL {
  background-color: #ad68d9 !important;
}

#shopify-section-template--24150126854412__blog_posts_ttp96X
.blog-posts {
  background-color: #f1ecfe;
}


.sealsubs-container label.sls-selling-plan-group-name,
.sealsubs-container .sls-option-container label,
.sealsubs-container label.sls-purchase-options-label,
.sls-subscription-details-label,
.sls-price,
.sls-sub-icon,
.spice-spa-addon-right,
.spice-spa-addon-product-link,
.ciwi-money {
  color: #ffffff !important;
}


#shopify-section-template--24150127804684__questions_iDrfKL {
  color: #ffffff;
}

#shopify-section-template--24150127804684__questions_iDrfKL
.accordion__title,
#shopify-section-template--24150127804684__questions_iDrfKL
.accordion__button,
#shopify-section-template--24150127804684__questions_iDrfKL
summary {
  color: #ffffff !important;
}
/* FAQ section 1 */
#shopify-section-template--24150127804684__questions_iDrfKL,
#shopify-section-template--24150127804684__questions_iDrfKL * {
  color: #ffffff !important;
}

/* FAQ section 2 */
#shopify-section-template--24150127935756__questions_xHtXw8,
#shopify-section-template--24150127935756__questions_xHtXw8 * {
  color: #ffffff !important;
}
