/** Shopify CDN: Minification failed

Line 686: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);
}

/* USP-bar */
.ib-usp-bar{
  /* Theme tokens (easy to tweak) */
  --usp-bg: #F3EEFE;                 /* slightly less "warning" */
  --usp-fg: #1B4332;
  --usp-accent: #2D6A4F;

  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0)) , var(--usp-bg);
  color: var(--usp-fg);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;

  padding: 4px 22px;
  border-radius: 999px;
  margin: 0 auto 10px;
  max-width: 1250px;

  /* More "component" look */
  border: 1px solid rgba(27,67,50,0.12);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.07),
    inset 0 1px 0 rgba(255,255,255,0.65);

  font-size: 14px;
  line-height: 1.35;

  /* Smooth hover BOTH ways */
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

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

  /* subtle clarity */
  letter-spacing: 0.1px;
}

/* Icon (inline SVG) */
.ib-usp-item svg{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;

  stroke: var(--usp-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;

  /* micro-optical alignment */
  transform: translateY(0.5px);
}

/* Hover subtle (desktop) */
@media (hover: hover){
  .ib-usp-bar:hover{
    box-shadow:
      0 14px 34px rgba(0,0,0,0.10),
      inset 0 1px 0 rgba(255,255,255,0.70);
    transform: translateY(-1px);
  }
}

/* Keyboard accessibility */
.ib-usp-bar:focus-within{
  outline: 2px solid rgba(45,106,79,0.35);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .ib-usp-bar{ transition: none; }
  .ib-usp-bar:hover{ transform: none; }
}

/* Responsive */
@media (max-width: 1024px){
  .ib-usp-bar{
    gap: 18px;
    padding: 4px 16px;
    margin: 0 12px 10px;
  }
}

@media (max-width: 768px){
  .ib-usp-bar{
    justify-content: flex-start;     /* reads better when wrapping */
    flex-wrap: wrap;
    gap: 10px 14px;
    border-radius: 18px;
    padding: 10px 14px;
  }
  .ib-usp-item{
    white-space: normal;
    font-size: 13px;
  }
}

/* Cart Improvements */
.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,

#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;
}

.article-cta {
  margin: 40px 0;
}

.cta-box {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 2px 28px 28px 28px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.cta-button {
  display: inline-block;
  margin-top: 12px;
  background: #2a6df4;
  color: white;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
}

/* Clean, readable bullet layout for your recommendation blocks (InnerBuddies dark theme) */
.ib-reco-copy{
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 18px;
  border: 1px solid rgba(243, 238, 254, 0.22); /* subtle light border on dark bg */
  border-radius: 12px;
  background: #391161; /* requested */
  font-size: 15px;
  line-height: 1.6;
  color: #F3EEFE; /* requested */
}

.ib-reco-copy p{
  margin: 0 0 10px;
}

.ib-reco-copy ul{
  margin: 0 0 14px;
  padding: 0;
  list-style: none; /* we'll render our own bullets for perfect alignment */
}

.ib-reco-copy li{
  position: relative;
  padding-left: 26px;  /* space for bullet */
  margin: 8px 0;
}

/* Bullet dot */
.ib-reco-copy li::before{
  content: "";
  position: absolute;
  left: 8px;
  top: 0.75em;              /* aligns with first text line */
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #6b7280;      /* neutral gray */
}

/* Nested list styling */
.ib-reco-copy li > ul{
  margin-top: 8px;
  margin-bottom: 0;
}

.ib-reco-copy li > ul > li{
  padding-left: 24px;
  margin: 6px 0;
}

.ib-reco-copy li > ul > li::before{
  left: 9px;
  width: 6px;
  height: 6px;
  background: #9ca3af;      /* lighter dot for sub-bullets */
}

/* Make strong text pop a bit without looking heavy */
.ib-reco-copy strong{
  font-weight: 600;
  color: ##F3EEF;
}

/* Nice spacing on mobile */
@media (max-width: 480px){
  .ib-reco-copy{
    padding: 12px 14px;
    font-size: 14.5px;
  }
  .ib-reco-copy li{
    padding-left: 24px;
  }
  .ib-reco-copy li::before{
    left: 7px;
  }
}

/* =========================================
   Tag Rich Text (Shopify rich_text output)
   Scope: .tag-richtext
   ========================================= */

.tag-richtext{
  /* layout */
  max-width: 100%;
  margin: 0 auto;
  padding: 18px 18px;
  border-radius: 14px;

  /* typography */
  line-height: 1.65;
  font-size: 16px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Headings */
.tag-richtext h1,
.tag-richtext h2,
.tag-richtext h3,
.tag-richtext h4{
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 1.1em 0 0.45em;
}

.tag-richtext h1{ font-size: clamp(26px, 2.2vw, 34px); }
.tag-richtext h2{ font-size: clamp(22px, 1.8vw, 28px); }
.tag-richtext h3{ font-size: clamp(18px, 1.4vw, 22px); }
.tag-richtext h4{ font-size: 16px; }

.tag-richtext h1:first-child,
.tag-richtext h2:first-child,
.tag-richtext h3:first-child,
.tag-richtext h4:first-child{
  margin-top: 0;
}

/* Paragraphs + spacing */
.tag-richtext p{
  margin: 0.75em 0;
}

.tag-richtext p:first-child{ margin-top: 0; }
.tag-richtext p:last-child{ margin-bottom: 0; }

/* Links */
.tag-richtext a{
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 0.08em;
}

.tag-richtext a:hover{
  text-decoration-thickness: 0.12em;
}

/* Lists */
.tag-richtext ul,
.tag-richtext ol{
  margin: 0.75em 0;
  padding-left: 1.25em;
}

.tag-richtext li{
  margin: 0.35em 0;
}

.tag-richtext li > ul,
.tag-richtext li > ol{
  margin: 0.45em 0 0.45em;
}

/* Blockquotes */
.tag-richtext blockquote{
  margin: 1em 0;
  padding: 0.75em 1em;
  border-left: 3px solid currentColor;
  opacity: 0.9;
}

/* Horizontal rule */
.tag-richtext hr{
  border: 0;
  border-top: 1px solid currentColor;
  opacity: 0.18;
  margin: 1.25em 0;
}

/* Inline code + code blocks */
.tag-richtext code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  padding: 0.1em 0.35em;
  border-radius: 8px;
}

.tag-richtext pre{
  margin: 1em 0;
  padding: 0.9em 1em;
  border-radius: 14px;
  overflow: auto;
}

.tag-richtext pre code{
  padding: 0;
  border-radius: 0;
}

/* Tables (if present) */
.tag-richtext table{
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0;
  overflow: hidden;
  border-radius: 14px;
}

.tag-richtext th,
.tag-richtext td{
  padding: 0.75em 0.8em;
  vertical-align: top;
  border-bottom: 1px solid currentColor;
  opacity: 0.95;
}

.tag-richtext tr:last-child td{
  border-bottom: 0;
}

.tag-richtext thead th{
  font-weight: 600;
}

/* Images (if present) */
.tag-richtext img{
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin: 0.9em 0;
}

/* Mobile tweaks */
@media (max-width: 768px){
  .tag-richtext{
    padding: 16px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .tag-richtext ul,
  .tag-richtext ol{
    padding-left: 1.1em;
  }
}

/* ============= InnerBuddies FAQ (scoped) ============= */
.ib-faq {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  padding-left:30px;
  padding-right:30px;
  background-color:#F3EEFE;

}

.ib-faq__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ib-faq__intro {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(17, 24, 39, 0.85);
}

.ib-faq__group {
  margin: 22px 0;
}

.ib-faq__group-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #111827;
}

.ib-faq__list {
  display: grid;
  gap: 10px;
}

/* Accordion item */
.ib-faq__item {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 12px;
  background: #F3EEFE;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.03);
}

.ib-faq__item[open] {
  border-color: rgba(57, 17, 97, 0.30);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.06);
}

/* Summary (question row) */
.ib-faq__q {
  list-style: none;
  cursor: pointer;
  padding: 14px 46px 14px 16px;
  position: relative;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  color: #111827;
  user-select: none;
}

.ib-faq__q::-webkit-details-marker { display: none; }

/* Toggle icon */
.ib-faq__q::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  color: rgba(17, 24, 39, 0.80);
  font-weight: 800;
  line-height: 1;
}

.ib-faq__item[open] .ib-faq__q::after {
  content: "–";
  border-color: rgba(57, 17, 97, 0.28);
  color: #391161;
}

/* Answer */
.ib-faq__a {
  padding: 0 16px 14px;
  color: rgba(17, 24, 39, 0.86);
  font-size: 15px;
  line-height: 1.7;
}

.ib-faq__a p { margin: 10px 0 0; }
.ib-faq__a p:first-child { margin-top: 10px; }

.ib-faq__hint {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(57, 17, 97, 0.06);
  border: 1px solid rgba(57, 17, 97, 0.14);
  color: rgba(17, 24, 39, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 767px) {
  .ib-faq__q { padding: 14px 44px 14px 14px; }
  .ib-faq__a { padding: 0 14px 14px; }
}

.ib-linkbox {
  margin: 14px 0 22px;
}

.ib-linkbox__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid #10b981;
  background: linear-gradient(180deg, rgba(16,185,129,.08), rgba(16,185,129,.03));
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.ib-linkbox__inner:hover {
  border-color: #059669;
  box-shadow: 0 10px 28px rgba(16,185,129,.14);
  transform: translateY(-1px);
}

.ib-linkbox__icon {
  color: #10b981;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  line-height: 1;
}

.ib-linkbox__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.ib-linkbox__content {
  min-width: 0;
}

.ib-linkbox__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(16,185,129,.28);
  background: rgba(16,185,129,.10);
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.ib-linkbox__title {
  display: block;
  margin: 0;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.ib-linkbox__desc {
  display: block;
  margin-top: 6px;
  color: #374151;
  font-size: 15px;
  line-height: 1.45;
}

.ib-linkbox__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 12px;
}

.ib-linkbox__benefit {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(16,185,129,.18);
  color: #065f46;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.ib-linkbox__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  padding: 12px 16px;
  border-radius: 999px;
  background: #1f1363;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(31,19,99,.18);
}

.ib-linkbox__cta span {
  line-height: 1;
}

@media (max-width: 990px) {
  .ib-linkbox__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .ib-linkbox__cta {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}

@media (max-width: 640px) {
  .ib-linkbox__inner {
    gap: 12px;
    padding: 16px;
    border-radius: 16px;
  }

  .ib-linkbox__icon svg {
    width: 24px;
    height: 24px;
  }

  .ib-linkbox__title {
    font-size: 17px;
  }

  .ib-linkbox__desc {
    font-size: 14px;
  }

  .ib-linkbox__benefits {
    gap: 8px;
  }

  .ib-linkbox__benefit {
    white-space: normal;
  }

  .ib-linkbox__cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}