/* Musthaves by Kell — theme components
   Real CSS translation of the Claude Design System's React component styles. */

/* ---------- Layout ---------- */
.mbk-container {
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 16px;
}
.mbk-container-narrow { max-width: var(--content-max-width-narrow); }

.mbk-stack-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.mbk-desktop-only { display: none; }
.mbk-mobile-only { display: block; }

@media (min-width: 860px) {
  .mbk-stack-2 { grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
  .mbk-stack-2-reverse { grid-template-columns: 0.85fr 1.15fr; }
  .mbk-desktop-only { display: block; }
  .mbk-mobile-only { display: none; }
  .mbk-cat-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .mbk-search-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .mbk-brand-icons-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .mbk-brand-story-grid { grid-template-columns: 1fr 1.1fr !important; }
  .mbk-review-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .mbk-footer-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .mbk-about-values-grid { grid-template-columns: repeat(4, 1fr) !important; }
}
@media (min-width: 1180px) {
  .mbk-cat-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .mbk-search-grid { grid-template-columns: repeat(4, 1fr) !important; }
}

/* ---------- Announcement bar ---------- */
.mbk-announcement {
  position: relative;
  background: var(--accent-inverse);
  color: var(--color-cream);
  font-size: 12px;
  letter-spacing: var(--tracking-wide);
  text-align: center;
  padding: 9px 40px 9px 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.mbk-announcement.is-dismissed { display: none; }
.mbk-announcement__close {
  position: absolute; top: 50%; right: 10px; transform: translateY(-50%);
  background: none; border: none; padding: 4px 6px; margin: 0; cursor: pointer;
  color: var(--color-cream); opacity: 0.7; font-size: 16px; line-height: 1;
  font-family: var(--font-sans-body);
}
.mbk-announcement__close:hover { opacity: 1; }

/* ---------- Header ---------- */
.mbk-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-subtle);
}
.mbk-header__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 16px;
  max-width: var(--content-max-width);
  margin: 0 auto;
}
.mbk-header__menu-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--text-heading); display: flex; align-items: center; gap: 14px;
}
.mbk-header__logo-link {
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
  height: 40px; max-width: 100%; overflow: hidden;
}
.mbk-header__logo-link .custom-logo-link { display: flex; min-width: 0; height: 100%; }
/* Some image-optimisation plugins (WebP delivery) wrap the logo <img> in a
   <picture> element and move the .custom-logo class onto that wrapper
   instead of leaving it on the <img> — so this can't rely on img.custom-logo
   alone. Target every element in the chain by tag so it applies no matter
   which one actually carries the class. */
.mbk-header__logo-link picture,
.mbk-header__logo-link img {
  height: 40px !important; width: auto !important; max-width: 180px !important; object-fit: contain !important;
  display: block;
}
.mbk-header__logo-text { font-family: var(--font-serif-display); font-size: 22px; color: var(--text-heading); }
.mbk-header__icons {
  display: flex; gap: 16px; align-items: center; justify-content: flex-end; color: var(--text-heading);
}
.mbk-header__icons a { color: inherit; text-decoration: none; display: flex; }
.mbk-header__cart { position: relative; }
.mbk-header__cart-count {
  position: absolute; top: -7px; right: -9px; background: var(--accent-primary); color: var(--color-cream);
  font-size: 9px; width: 15px; height: 15px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.mbk-header__account-icon { display: none; }
@media (min-width: 640px) { .mbk-header__account-icon { display: flex; } }

.mbk-header__nav {
  border-top: 1px solid var(--border-subtle);
  padding: 8px 16px 16px;
  display: none;
  flex-direction: column;
  font-size: var(--text-body-md);
  color: var(--text-body);
}
/*
 * Opened as its own fixed, independently-scrollable panel rather than a
 * normal-flow block — a long expanded category tree can easily be taller
 * than the screen, and relying on the page itself to scroll past a tall
 * block inside a position:sticky header doesn't reliably scroll on iOS
 * Safari. --mbk-header-height is measured and kept in sync by main.js.
 */
.mbk-header__nav.is-open {
  display: flex;
  position: fixed;
  top: var(--mbk-header-height, 64px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  background: var(--bg-page);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mbk-header__menu { list-style: none; margin: 0; padding: 0; }
.mbk-header__nav li,
.mbk-footer__links li { list-style: none; margin: 0; padding: 0; }
.mbk-header__nav a {
  padding: 12px 0; border-bottom: 1px solid var(--border-subtle);
  color: var(--text-body); text-decoration: none; display: block;
}

/* Nested categories/sub-categories inside the mobile nav drawer. Collapsed by
   default; main.js adds a per-item toggle button that reveals only that
   item's direct .sub-menu, so a 3-level category tree stays scannable
   instead of dumping every level open at once. */
.mbk-header__nav li.menu-item-has-children { position: relative; }
.mbk-header__nav li.menu-item-has-children > a { padding-right: 44px; }
.mbk-header__nav .sub-menu {
  display: none; list-style: none; margin: 0 0 0 8px; padding: 0 0 0 20px;
  border-left: 1px solid var(--border-subtle);
}
.mbk-header__nav li.is-open > .sub-menu { display: block; }
.mbk-nav-toggle {
  position: absolute; top: 0; right: 0; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: none; padding: 0; margin: 0; cursor: pointer; color: var(--text-muted);
}
.mbk-nav-toggle svg { transition: transform var(--duration-fast) var(--ease-standard); }
.mbk-header__nav li.is-open > .mbk-nav-toggle svg { transform: rotate(180deg); }
/* ---------- Footer ---------- */
.mbk-footer { background: var(--accent-inverse); padding: 48px 16px 28px; }
.mbk-footer__logo { height: 42px; margin-bottom: 24px; filter: brightness(0) invert(1); opacity: 0.9; }
.mbk-footer__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 16px; margin-bottom: 36px;
}
.mbk-footer__col-title {
  font-size: var(--text-body-xs); letter-spacing: var(--tracking-wide); color: var(--color-cream);
  font-weight: 500; margin-bottom: 14px;
}
.mbk-footer__links { display: flex; flex-direction: column; gap: 9px; }
.mbk-footer__links a { font-size: var(--text-body-sm); color: var(--color-taupe-light); text-decoration: none; }
.mbk-footer__links a:hover { color: var(--color-cream); }
.mbk-footer__bottom {
  border-top: 1px solid rgba(250,248,243,0.15); padding-top: 22px;
  font-size: var(--text-body-xs); color: var(--color-taupe-light); text-align: center;
}
.mbk-footer__newsletter-form { display: flex; gap: 8px; margin-top: 8px; }
.mbk-footer__newsletter-form input {
  flex: 1; min-width: 0; border-radius: var(--radius-sm); border: 1px solid rgba(250,248,243,0.3);
  background: rgba(250,248,243,0.08); color: var(--color-cream); padding: 10px 12px; font: inherit;
}
.mbk-footer__newsletter-form input::placeholder { color: var(--color-taupe-light); }

/* ---------- USP bar ---------- */
.mbk-usp-bar {
  background: var(--bg-surface-muted); border-top: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle);
}
.mbk-usp-bar__track {
  display: flex; gap: 28px; overflow-x: auto; padding: 13px 16px;
  max-width: var(--content-max-width); margin: 0 auto; scrollbar-width: none;
}
.mbk-usp-bar__track::-webkit-scrollbar { display: none; }
.mbk-usp-bar__item { font-size: var(--text-body-xs); color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }

/* ---------- Heritage banner (between the two homepage sliders) ---------- */
.mbk-heritage {
  background: var(--bg-surface-muted); text-align: center; padding: 56px 24px;
}
.mbk-heritage__icon { color: var(--color-taupe-light); margin-bottom: 14px; }
.mbk-heritage__divider {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 auto 22px; max-width: 220px;
}
.mbk-heritage__divider-line { flex: 1; height: 1px; background: var(--border-subtle); }
.mbk-heritage__divider-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-taupe); flex-shrink: 0; }
.mbk-heritage__eyebrow {
  font-family: var(--font-serif-display); font-size: var(--text-display-sm); color: var(--text-muted); margin-bottom: 4px;
}
.mbk-heritage__title {
  font-family: var(--font-serif-display); font-style: italic; font-weight: var(--weight-medium);
  font-size: clamp(2.5rem, 6vw, 3.75rem); color: var(--color-taupe-darker); line-height: var(--leading-tight);
  margin-bottom: 10px;
}
.mbk-heritage__subtitle { font-size: var(--text-body-md); color: var(--text-muted); margin-bottom: 26px; }
.mbk-heritage__divider--bottom { color: var(--color-taupe-light); max-width: 280px; }
.mbk-heritage__divider-leaf-flip { display: inline-flex; transform: scaleX(-1); }

/* ---------- Brand icons ---------- */
.mbk-brand-icons { padding: 36px 16px; max-width: var(--content-max-width); margin: 0 auto; }
.mbk-brand-icons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
.mbk-brand-icon { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; }
.mbk-brand-icon__circle {
  width: 52px; height: 52px; border-radius: 50%; background: var(--bg-surface-tinted);
  display: flex; align-items: center; justify-content: center; color: var(--accent-primary);
}
.mbk-brand-icon__label { font-size: var(--text-body-xs); letter-spacing: var(--tracking-wide); color: var(--text-heading); }

/* ---------- Hero ---------- */
.mbk-hero { position: relative; }
.mbk-hero__media {
  position: relative; width: 100%; aspect-ratio: 4 / 5; max-height: 640px;
  overflow: hidden; background: var(--bg-surface-muted);
}
.mbk-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.mbk-hero__scrim {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(69,62,57,0) 45%, rgba(69,62,57,0.55) 100%);
}
.mbk-hero__content { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 20px 32px; text-align: center; }
.mbk-hero__title {
  font-family: var(--font-serif-display); color: var(--color-cream);
  font-size: clamp(2.1rem, 7vw, 3.2rem); font-weight: var(--weight-medium);
  line-height: var(--leading-tight); margin: 0 0 20px;
}
.mbk-hero__ctas { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin: 0 auto; }
@media (min-width: 640px) { .mbk-hero__ctas { flex-direction: row; justify-content: center; max-width: none; } }

/* ---------- Category tiles ---------- */
.mbk-category-tiles { padding: 8px 0 40px; }
.mbk-category-tiles__heading { max-width: var(--content-max-width); margin: 0 auto 18px; padding: 0 16px; }
.mbk-category-tiles__row {
  display: flex; gap: 12px; overflow-x: auto; padding: 0 16px 4px;
  max-width: var(--content-max-width); margin: 0 auto; scrollbar-width: none;
}
.mbk-category-tiles__row::-webkit-scrollbar { display: none; }
.mbk-category-tile { display: block; text-decoration: none; width: 132px; min-width: 132px; flex-shrink: 0; text-align: center; }
.mbk-category-tile__img {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; margin-bottom: 10px;
  background: var(--bg-surface-muted); border: 1px solid var(--border-subtle);
}
.mbk-category-tile__img img { width: 100%; height: 100%; object-fit: cover; }
.mbk-category-tile__name { font-size: var(--text-body-sm); color: var(--text-heading); }

/* ---------- Sliders ---------- */
.mbk-slider { position: relative; }
.mbk-slider__track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 2px 16px 6px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.mbk-slider__track::-webkit-scrollbar { display: none; }
.mbk-slider__item { min-width: 210px; max-width: 210px; scroll-snap-align: start; flex-shrink: 0; }
.mbk-slider__arrow {
  position: absolute; top: 38%; transform: translateY(-50%); width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid var(--border-subtle); background: var(--bg-surface);
  color: var(--text-heading); font-size: 20px; line-height: 1; cursor: pointer;
  display: none; align-items: center; justify-content: center; box-shadow: var(--shadow-sm);
}
.mbk-slider__arrow--prev { left: 4px; }
.mbk-slider__arrow--next { right: 4px; }
@media (min-width: 860px) { .mbk-slider__arrow { display: flex; } }

/* ---------- Category tabs (CategorySliders) ---------- */
.mbk-cat-tabs__eyebrow {
  font-size: var(--text-body-xs); letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--text-accent); margin-bottom: 8px; padding: 0 16px;
}
.mbk-cat-tabs {
  display: flex; gap: 22px; overflow-x: auto; padding: 0 16px 14px; border-bottom: 1px solid var(--border-subtle);
  max-width: var(--content-max-width); margin: 0 auto; scrollbar-width: none;
}
.mbk-cat-tabs::-webkit-scrollbar { display: none; }
.mbk-cat-tab {
  font-size: var(--text-body-sm); white-space: nowrap; cursor: pointer; color: var(--text-muted);
  border-bottom: 2px solid transparent; padding-bottom: 12px; margin-bottom: -13px; background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-sans-body);
}
.mbk-cat-tab.is-active { color: var(--text-heading); border-bottom-color: var(--accent-primary); }
.mbk-cat-tabs__panel { display: none; margin-top: 18px; }
.mbk-cat-tabs__panel.is-active { display: block; }

/* ---------- Buttons ---------- */
.mbk-btn {
  font-family: var(--font-sans-body); font-weight: var(--weight-medium); letter-spacing: var(--tracking-wide);
  border: 1px solid transparent; border-radius: var(--radius-pill); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard),
    border-color var(--duration-fast) var(--ease-standard), transform var(--duration-fast) var(--ease-standard);
  text-decoration: none; padding: 12px 26px; font-size: var(--text-body-sm);
}
.mbk-btn:active { transform: scale(0.97); }
.mbk-btn:disabled { opacity: 0.45; cursor: not-allowed; }
.mbk-btn--sm { padding: 8px 18px; font-size: var(--text-body-xs); }
.mbk-btn--lg { padding: 16px 34px; font-size: var(--text-body-md); }
.mbk-btn--primary { background: var(--accent-primary); color: var(--color-cream); border-color: var(--accent-primary); }
.mbk-btn--primary:hover { background: var(--accent-primary-hover); border-color: var(--accent-primary-hover); color: var(--color-cream); text-decoration: none; }
.mbk-btn--dark { background: var(--accent-inverse); color: var(--color-cream); border-color: var(--accent-inverse); }
.mbk-btn--dark:hover { background: var(--accent-inverse-hover); border-color: var(--accent-inverse-hover); color: var(--color-cream); text-decoration: none; }
.mbk-btn--outline { background: transparent; color: var(--text-heading); border-color: var(--border-default); }
.mbk-btn--outline:hover { background: var(--color-taupe-pale); color: var(--text-heading); text-decoration: none; }
.mbk-btn--ghost { background: transparent; color: var(--text-heading); border-color: transparent; }
.mbk-btn--ghost:hover { background: var(--bg-surface-muted); color: var(--text-heading); text-decoration: none; }
.mbk-btn--full { width: 100%; }

/* ---------- Badge / Tag ---------- */
.mbk-badge {
  display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-pill);
  font-size: var(--text-body-xs); letter-spacing: var(--tracking-wide); font-weight: var(--weight-medium);
  background: var(--color-taupe-pale); color: var(--color-taupe-darker);
}
.mbk-badge--dark { background: var(--accent-inverse); color: var(--color-cream); }
.mbk-badge--neutral { background: var(--bg-surface-muted); color: var(--text-body); }
.mbk-badge--success { background: #EAEEE4; color: #5C6A4E; }

.mbk-tag {
  display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle); background: var(--bg-surface); color: var(--text-body);
  font-size: var(--text-body-sm);
}
.mbk-tag.is-selected { border-color: var(--accent-primary); background: var(--color-taupe-pale); }

/* ---------- Form fields ---------- */
.mbk-field { display: flex; flex-direction: column; gap: 6px; width: 100%; }
.mbk-field__label { font-size: var(--text-body-xs); letter-spacing: var(--tracking-wide); color: var(--text-muted); }
.mbk-field input[type="text"],
.mbk-field input[type="email"],
.mbk-field input[type="tel"],
.mbk-field input[type="password"],
.mbk-field input[type="search"],
.mbk-field input[type="number"],
.mbk-field select,
.mbk-field textarea,
.mbk-input {
  font: inherit; font-size: var(--text-body-md); color: var(--text-body); background: var(--bg-surface);
  border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); padding: 12px 14px; width: 100%;
  outline: none; transition: border-color var(--duration-fast) var(--ease-standard), box-shadow var(--duration-fast) var(--ease-standard);
}
.mbk-field select { appearance: none; padding-right: 40px; background: var(--bg-surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23A68D7A' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 14px center; }
.mbk-field input:focus, .mbk-field select:focus, .mbk-field textarea:focus, .mbk-input:focus {
  border-color: var(--border-default); box-shadow: 0 0 0 3px var(--color-taupe-pale);
}
.mbk-field__help { font-size: var(--text-body-xs); color: var(--text-faint); }
.mbk-field__error { font-size: var(--text-body-xs); color: var(--state-error); }

.mbk-checkbox, .mbk-radio {
  display: inline-flex; align-items: center; gap: 10px; font-size: var(--text-body-sm); color: var(--text-body); cursor: pointer;
}
.mbk-checkbox input, .mbk-radio input { position: absolute; opacity: 0; width: 20px; height: 20px; margin: 0; cursor: pointer; }
.mbk-checkbox__box {
  width: 20px; height: 20px; border-radius: var(--radius-sm); border: 1px solid var(--border-subtle);
  background: var(--bg-surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background var(--duration-fast) var(--ease-standard), border-color var(--duration-fast) var(--ease-standard);
}
.mbk-checkbox input:checked ~ .mbk-checkbox__box { background: var(--accent-primary); border-color: var(--accent-primary); }
.mbk-checkbox__box svg { opacity: 0; }
.mbk-checkbox input:checked ~ .mbk-checkbox__box svg { opacity: 1; }
.mbk-radio__circle {
  width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--border-subtle); background: var(--bg-surface);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mbk-radio input:checked ~ .mbk-radio__circle { border-color: var(--accent-primary); }
.mbk-radio__circle::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--accent-primary); opacity: 0;
}
.mbk-radio input:checked ~ .mbk-radio__circle::after { opacity: 1; }

/* ---------- Product card ---------- */
.mbk-product-card { font-family: var(--font-sans-body); width: 100%; color: inherit; }
.mbk-product-card__link { text-decoration: none; color: inherit; display: block; }
.mbk-product-card__media {
  position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-surface-muted); margin-bottom: 14px;
}
.mbk-product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--duration-slow) var(--ease-gentle); }
.mbk-product-card:hover .mbk-product-card__media img { transform: scale(1.04); }
.mbk-product-card__badge { position: absolute; top: 12px; left: 12px; }
.mbk-product-card__title { font-size: var(--text-body-md); color: var(--text-heading); margin-bottom: 6px; }
.mbk-product-card__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mbk-product-card__price { font-size: var(--text-body-md); color: var(--text-accent); }
.mbk-product-card__price del { margin-left: 8px; color: var(--text-faint); font-size: var(--text-body-sm); font-weight: 400; }

/* Quick add-to-cart: always a compact "+" circle, regardless of product
   type. Simple products add via WooCommerce's own AJAX add-to-cart in one
   click; variable/grouped/external products go to the product page to
   pick options, same as tapping the card itself — the button text is
   emptied out theme-wide (woocommerce_product_add_to_cart_text filter in
   inc/woocommerce.php) so there's never real label text fighting the icon
   for space. */
.mbk-product-card__cta { flex-shrink: 0; }
.mbk-product-card__cta a.button {
  display: inline-flex; align-items: center; justify-content: center; text-decoration: none;
  width: 30px; height: 30px; border-radius: 50%; font-size: 18px; line-height: 1;
  background: var(--bg-surface-tinted); color: var(--accent-primary);
  transition: background var(--duration-fast) var(--ease-standard), color var(--duration-fast) var(--ease-standard);
}
.mbk-product-card__cta a.button:hover { background: var(--accent-primary); color: var(--color-cream); }
.mbk-product-card__cta a.button::before { content: "+"; }
.mbk-product-card__cta a.button.loading::before { content: "…"; }
.mbk-product-card__cta a.added_to_cart { display: none; }

/* ---------- Breadcrumb / trust row ---------- */
.mbk-crumb { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; font-size: var(--text-body-xs); color: var(--text-muted); }
.mbk-crumb a { color: var(--text-muted); text-decoration: none; }
.mbk-crumb a:hover { color: var(--text-heading); }
.mbk-crumb .sep { opacity: 0.5; }
.mbk-crumb .current { color: var(--text-heading); }

.mbk-trust-row { display: flex; gap: 18px; overflow-x: auto; padding: 4px 0; scrollbar-width: none; }
.mbk-trust-row::-webkit-scrollbar { display: none; }
.mbk-trust-item { display: flex; align-items: center; gap: 8px; font-size: var(--text-body-xs); color: var(--text-muted); white-space: nowrap; flex-shrink: 0; }
.mbk-trust-item svg, .mbk-trust-item i { flex-shrink: 0; color: var(--accent-primary); width: 16px; height: 16px; }

.mbk-pill-btn {
  font-size: var(--text-body-xs); border: 1px solid var(--border-subtle); background: var(--bg-surface);
  color: var(--text-heading); border-radius: var(--radius-pill); padding: 8px 14px; cursor: pointer; white-space: nowrap;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-sans-body);
}
.mbk-pill-btn.is-active { background: var(--accent-primary); border-color: var(--accent-primary); color: var(--color-cream); }

/* ---------- Accordion ---------- */
.mbk-accordion { border-top: 1px solid var(--border-subtle); }
.mbk-accordion__item { border-bottom: 1px solid var(--border-subtle); }
.mbk-accordion__trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: none; border: none; padding: 18px 0; cursor: pointer; text-align: left;
  font-family: var(--font-sans-body); font-size: var(--text-body-md); color: var(--text-heading);
}
.mbk-accordion__icon { transition: transform var(--duration-fast) var(--ease-standard); flex-shrink: 0; }
.mbk-accordion__item.is-open .mbk-accordion__icon { transform: rotate(45deg); }
.mbk-accordion__panel {
  font-size: var(--text-body-sm); color: var(--text-muted); line-height: var(--leading-relaxed);
  padding: 0 0 18px; margin: 0; display: none;
}
.mbk-accordion__item.is-open .mbk-accordion__panel { display: block; }

/* ---------- Stepper (checkout) ---------- */
.mbk-stepper { display: flex; align-items: center; gap: 6px; margin-bottom: 28px; }
.mbk-stepper__step { display: flex; align-items: center; gap: 8px; }
.mbk-stepper__dot {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; background: var(--bg-surface-muted); color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}
.mbk-stepper__step.is-done .mbk-stepper__dot,
.mbk-stepper__step.is-current .mbk-stepper__dot { background: var(--accent-primary); color: var(--color-cream); border: none; }
.mbk-stepper__label { font-size: var(--text-body-xs); color: var(--text-muted); display: none; }
.mbk-stepper__step.is-done .mbk-stepper__label,
.mbk-stepper__step.is-current .mbk-stepper__label { color: var(--text-heading); }
@media (min-width: 860px) { .mbk-stepper__label { display: block; } }
.mbk-stepper__line { flex: 1; height: 1px; background: var(--border-subtle); }

/* ---------- Summary / cart boxes ---------- */
.mbk-summary-box { background: var(--bg-surface-muted); border-radius: var(--radius-lg); padding: 20px; }
.mbk-summary-row { display: flex; justify-content: space-between; padding: 4px 0; font-size: var(--text-body-sm); color: var(--text-heading); }
.mbk-summary-row--total { font-size: var(--text-body-md); font-weight: 600; padding-top: 8px; }
.mbk-summary-divider { border-top: 1px solid var(--border-subtle); margin: 12px 0; }

.mbk-freeship {
  background: var(--color-taupe-pale); border-radius: var(--radius-md); padding: 12px 16px; margin-bottom: 24px;
  font-size: var(--text-body-sm); color: var(--text-heading);
}
.mbk-freeship__bar { height: 6px; border-radius: var(--radius-pill); background: var(--color-taupe-light); margin-top: 8px; overflow: hidden; }
.mbk-freeship__fill { height: 100%; background: var(--accent-primary); border-radius: var(--radius-pill); }
.mbk-freeship.is-complete { display: flex; align-items: center; gap: 8px; }

/* ---------- Empty states ---------- */
.mbk-empty { text-align: center; padding: 48px 16px; }
.mbk-empty__icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg-surface-muted);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--text-muted);
}

/* ---------- Aanbiedingen (scheduled offer banners/strips) ---------- */
.mbk-offer-banner {
  position: relative;
  background: var(--accent-inverse) center/cover no-repeat;
  color: var(--color-cream);
}
/* Full-bleed dark scrim behind the photo, edge to edge, not just behind the text column. */
.mbk-offer-banner[style*="background-image"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(69,62,57,0.35), rgba(69,62,57,0.55));
}
.mbk-offer-banner__inner {
  position: relative;
  z-index: 1;
  padding: 32px 16px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.mbk-offer-banner[style*="background-image"] .mbk-offer-banner__inner { padding: 56px 16px; }
.mbk-offer-banner__title { font-size: var(--text-display-md); color: var(--color-cream); }
.mbk-offer-banner__body { font-size: var(--text-body-md); color: var(--color-taupe-light); max-width: var(--content-max-width-narrow); }

/* ---------- Utility ---------- */
/* Breaks a child out of the #main.mbk-container width constraint to full viewport width. */
.mbk-full-bleed { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }
.mbk-eyebrow { font-size: var(--text-body-xs); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--text-accent); }
.mbk-serif-italic { font-family: var(--font-serif-display); font-style: italic; color: var(--text-accent); }
.mbk-stars { color: var(--accent-primary); }
.mbk-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
