/** Shopify CDN: Minification failed

Line 965:13 Expected identifier but found whitespace
Line 965:22 Unexpected "0.2s"
Line 1216:1 Expected ")" to go with "("

**/
/** Shopify CDN: Minification failed

Line 917:13 Expected identifier but found whitespace
Line 917:22 Unexpected "0.2s"
Line 1075:23 Expected ")" to go with "("

**/
/** Shopify CDN: Minification failed

Line 908:13 Expected identifier but found whitespace
Line 908:22 Unexpected "0.2s"
Line 1066:23 Expected ")" to go with "("

**/
/* =========================================================
   Cart Drawer \u2014 Mademoiselle Marcelle
   Symmetry theme \u00b7 CRO-optimised
   ========================================================= */

/* ----- Design tokens ----- */
:root {
  --mm-font-body: 'Jost', sans-serif;
  --mm-font-heading: 'EB Garamond', Georgia, serif;
  --mm-color-text: #171717;
  --mm-color-muted: #707173;
  --mm-color-border: #e8e8e8;
  --mm-color-bg: #ffffff;
  --mm-color-bg-soft: #f7f7f7;
  --mm-color-btn-bg: #212121;
  --mm-color-btn-text: #ffffff;
  --mm-color-accent: #212121;
  --mm-color-success: #3d8c40;
  --mm-color-danger: #c0392b;
  --mm-radius-btn: 3px;
  --mm-radius-card: 3px;
  --mm-letter-spacing-cta: 0.08em;
  --mm-drawer-width: 420px;
  --mm-z-overlay: 9998;
  --mm-z-drawer: 9999;
  --mm-transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Overlay ----- */
.mm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: var(--mm-z-overlay);
  opacity: 0;
  transition: opacity var(--mm-transition);
}

.mm-overlay.is-open {
  display: block;
  opacity: 1;
}

/* ----- Drawer shell ----- */
.mm-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(var(--mm-drawer-width), 100vw);
  background: var(--mm-color-bg);
  z-index: var(--mm-z-drawer);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--mm-transition);
  font-family: var(--mm-font-body);
  color: var(--mm-color-text);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
}

.mm-drawer.is-open {
  transform: translateX(0);
}

/* ----- Header ----- */
.mm-drawer__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--mm-color-border);
  flex-shrink: 0;
}

.mm-drawer__title {
  font-family: var(--mm-font-body);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  color: var(--mm-color-text);
}

.mm-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: transparent;
  border: 1px solid var(--mm-color-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--mm-color-text);
  padding: 0;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.mm-drawer__close:hover {
  background: var(--mm-color-text);
  color: var(--mm-color-bg);
  border-color: var(--mm-color-text);
}

/* ----- Shipping bar \u2014 compact, milestones ON the bar ----- */
.mm-shipping {
  padding: 10px 20px 12px;
  background: var(--mm-color-bg-soft);
  border-bottom: 1px solid var(--mm-color-border);
  flex-shrink: 0;
}

.mm-shipping__msg {
  font-size: 12px;
  color: var(--mm-color-text);
  text-align: center;
  margin: 0 0 8px;
  font-weight: 500;
  min-height: 17px;
}

.mm-shipping__bar {
  position: relative;
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  overflow: visible;
}

.mm-shipping-track {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 2px;
}

.mm-shipping__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--mm-color-accent);
  border-radius: 2px;
  transition: width 0.5s ease;
  width: 0%;
}

/* Milestones positioned ON the bar */
.mm-shipping__milestones {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Default: small, subtle dot \u2014 icon hidden */
.mm-milestone {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: var(--mm-color-bg);
  border: 1.5px solid #d0d0d0;
  border-radius: 50%;
  color: var(--mm-color-muted);
  transition: color 0.3s, border-color 0.3s, background 0.3s, width 0.3s, height 0.3s;
}

/* Icon hidden by default */
.mm-milestone svg {
  display: block;
  flex-shrink: 0;
  opacity: 1;
  transition: opacity 0.3s;
}

/* Reached: expand, go green, show icon */
.mm-milestone.reached {
  width: 22px;
  height: 22px;
  color: var(--mm-color-success);
  border-color: var(--mm-color-success);
  background: #f0f9f0;
}

.mm-milestone.reached svg {
  opacity: 1;
}

/* ----- Scrollable body ----- */
.mm-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
}

.mm-drawer__body::-webkit-scrollbar {
  width: 4px;
}

.mm-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}

.mm-drawer__body::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 2px;
}

/* ----- Empty state ----- */
.mm-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 24px 32px;
  text-align: center;
}

.mm-empty__icon {
  color: #c8c8c8;
  margin-bottom: 16px;
}

.mm-empty__title {
  font-family: var(--mm-font-heading);
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 6px;
  color: var(--mm-color-text);
}

.mm-empty__sub {
  font-size: 13px;
  color: var(--mm-color-muted);
  margin: 0 0 20px;
}

/* ----- Cart items section ----- */
.mm-drawer__items {
  padding: 0 0 4px;
}

/* Individual cart item */
.mm-cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--mm-color-border);
  position: relative;
}

.mm-cart-item:last-child {
  border-bottom: none;
}

.mm-item-img {
  width: clamp(68px, 20%, 90px);
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--mm-radius-card);
  flex-shrink: 0;
  background: var(--mm-color-bg-soft);
}

.mm-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mm-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--mm-color-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
  text-decoration: none;
}

.mm-item-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}

.mm-item-variant {
  font-size: 11px;
  color: var(--mm-color-muted);
  background: var(--mm-color-bg-soft);
  border: 1px solid var(--mm-color-border);
  border-radius: 2px;
  padding: 1px 6px;
}

.mm-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  width: fit-content;
  border: 1px solid var(--mm-color-border);
  border-radius: var(--mm-radius-btn);
  overflow: hidden;
}

.mm-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--mm-color-text);
  font-size: 16px;
  line-height: 1;
  padding: 0;
  transition: background 0.15s;
}

.mm-qty-btn:hover {
  background: var(--mm-color-bg-soft);
}

.mm-qty-value {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--mm-color-text);
  border-left: 1px solid var(--mm-color-border);
  border-right: 1px solid var(--mm-color-border);
  padding: 0 4px;
  height: 28px;
  line-height: 28px;
}

.mm-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 58px;
}

.mm-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--mm-color-text);
  white-space: nowrap;
}

.mm-item-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--mm-color-muted);
  padding: 0;
  display: flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  gap: 3px;
  transition: color 0.2s;
}

.mm-item-remove:hover {
  color: var(--mm-color-danger);
}

/* ----- Addon toggle (now inside footer) ----- */
.mm-addon {
  padding: 10px 20px;
  border-top: 1px solid var(--mm-color-border);
  border-bottom: 1px solid var(--mm-color-border);
}

/* When addon is inside footer, no extra border (box has its own) */
.mm-footer .mm-addon {
  padding: 10px 0;
  border-top: none;
  border-bottom: none;
  margin-bottom: 10px;
}

.mm-addon__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}

.mm-addon__left {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.mm-addon__body {
  flex: 1;
  min-width: 0;
}

.mm-addon__icon {
  color: var(--mm-color-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Teal shield icon wrap */
.mm-addon__icon-wrap {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: #fde8f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mm-addon__icon--crown {
  color: #c9a84c;
}

.mm-addon__name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.mm-addon__name {
  font-size: 12.5px;
  font-weight: 600;
  display: inline;
  color: var(--mm-color-text);
}

.mm-addon__price {
  font-size: 11px;
  font-weight: 500;
  color: var(--mm-color-muted);
  white-space: nowrap;
}

.mm-addon__desc {
  font-size: 11px;
  color: var(--mm-color-muted);
  display: block;
  line-height: 1.4;
}

.mm-addon__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 1px;
}

.mm-addon__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.mm-addon__switch {
  display: block;
  width: 36px;
  height: 20px;
  background: #ccc;
  border-radius: 10px;
  position: relative;
  transition: background 0.2s;
}

.mm-addon__switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.mm-addon__input:checked ~ .mm-addon__switch,
.mm-addon-toggle .mm-addon__input:checked + .mm-addon__switch {
  background: var(--mm-color-accent);
}

.mm-addon__input:checked ~ .mm-addon__switch::after,
.mm-addon-toggle .mm-addon__input:checked + .mm-addon__switch::after {
  transform: translateX(16px);
}

.mm-addon__input:checked + .mm-addon__switch {
  background: var(--mm-color-accent);
}

.mm-addon__input:checked + .mm-addon__switch::after {
  transform: translateX(16px);
}

/* ----- Upsell carousel ----- */
.mm-upsell {
  padding: 14px 20px 16px;
  border-top: 1px solid var(--mm-color-border);
}

.mm-upsell--empty {
  border-top: none;
  padding-top: 20px;
}

.mm-upsell__head {
  margin-bottom: 10px;
  text-align: center;
}

.mm-upsell__title {
  font-family: var(--mm-font-body);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--mm-color-text);
  letter-spacing: 0.02em;
  text-align: center;
}

/* Carousel: arrow | card | arrow */
.mm-upsell__carousel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mm-upsell__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--mm-color-bg-soft);
  border: 1px solid var(--mm-color-border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--mm-color-text);
  padding: 0;
  transition: background 0.2s, color 0.2s;
  z-index: 1;
}

.mm-upsell__arrow:hover {
  background: var(--mm-color-text);
  color: var(--mm-color-bg);
}

.mm-upsell__track {
  flex: 1;
  overflow-x: scroll;
  min-width: 0;
  display: flex;
  gap: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mm-upsell__track::-webkit-scrollbar {
  display: none;
}

/* Each card takes exactly half the track width for 2-up layout */
/* 1 produit \u00e0 la fois */
.mm-upsell__track .mm-upsell-card {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
}

/* Dots hidden \u2014 navigation via side arrows */
.mm-upsell__dots {
  display: none;
}

/* Upsell card \u2014 horizontal layout (image left, info right) */
.mm-upsell-card {
  width: 100%;
  background: var(--mm-color-bg);
  border: 1px solid var(--mm-color-border);
  border-radius: var(--mm-radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  transition: box-shadow 0.2s;
}

.mm-upsell-card:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.mm-upsell-img-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  min-width: 90px;
  overflow: hidden;
  align-self: stretch;
  background: var(--mm-color-bg-soft);
}

.mm-upsell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.mm-upsell-info {
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.mm-upsell-name {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--mm-color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.mm-upsell-price {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mm-color-text);
  margin-bottom: 8px;
}

.mm-upsell-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mm-upsell-select {
  width: 100%;
  font-size: 11px;
  font-family: var(--mm-font-body);
  border: 1px solid var(--mm-color-border);
  border-radius: var(--mm-radius-btn);
  padding: 4px 6px;
  color: var(--mm-color-text);
  background: var(--mm-color-bg);
  cursor: pointer;
}

.mm-upsell-add {
  width: 100%;
  font-family: var(--mm-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: #ffffff !important;
  background: #000000 !important;
  border: none;
  border-radius: 0 !important;
  padding: 10px 10px;
  cursor: pointer;
  transition: opacity 0.2s;
  display: block;
  text-align: center;
}

.mm-upsell-add:hover {
  opacity: 0.85;
}

/* Suppress any theme-injected counter badges on upsell elements */
.mm-upsell-add::before,
.mm-upsell-add::after,
.mm-upsell-card[data-upsell-idx]::before,
.mm-upsell-card[data-upsell-idx]::after {
  content: none !important;
    display: none !important;
    }
/* ----- Discount row ----- */
.mm-discount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 6px;
  padding: 7px 12px;
  margin-bottom: 8px;
  font-size: 12px;
}

.mm-discount-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #15803D;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
}

.mm-discount-amount {
  font-weight: 700;
  color: #15803D;
  font-size: 12.5px;
  white-space: nowrap;
}

/* ----- Sticky footer ----- */
.mm-footer {
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: #f5f5f5;
  border-top: 1px solid var(--mm-color-border);
  padding: 12px 20px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.07);
  margin-top: auto;
}

/* Trust badges \u2014 single ligne */
.mm-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 5px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.mm-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 9.5px;
  color: var(--mm-color-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.mm-trust__sep {
  color: var(--mm-color-border);
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

/* ----- Checkout button avec total int\u00e9gr\u00e9 ----- */
.mm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--mm-font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: var(--mm-letter-spacing-cta);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--mm-radius-btn);
  cursor: pointer;
  padding: 13px 20px;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  border: 1px solid transparent;
  line-height: 1;
}

.mm-btn--primary {
  background: var(--mm-color-btn-bg);
  color: var(--mm-color-btn-text);
  border-color: var(--mm-color-btn-bg);
  width: 100%;
}

.mm-btn--primary:hover {
  opacity: 0.88;
}

.mm-btn--outline {
  background: transparent;
  color: var(--mm-color-text);
  border-color: var(--mm-color-text);
}

.mm-btn--outline:hover {
  background: var(--mm-color-text);
  color: var(--mm-color-btn-text);
}

.mm-checkout-btn {
  width: 100%;
  margin-bottom: 10px;
  background: #000000 !important;
  border: none !important;
  font-family: var(--mm-font-body) !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  border-radius: 0 !important;
  padding: 18px 20px !important;
  min-height: 54px !important;
  color: #ffffff !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  gap: 8px !important;
}

.mm-checkout-sep {
  opacity: 0.5;
  font-weight: 300;
}

.mm-checkout-amount {
  font-family: var(--mm-font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
  text-transform: none !important;
  color: #ffffff !important;
}

/* ----- Payment logos ----- */
.mm-payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.mm-pay-logo {
  width: 36px;
  height: 23px;
  border-radius: 3px;
  border: 1px solid #e8e8e8;
  display: block;
  flex-shrink: 0;
}

/* ----- Loading spinner ----- */
.mm-cart-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  flex: 1;
}

.mm-spinner {
  width: 28px;
  height: 28px;
  border: 2.5px solid var(--mm-color-border);
  border-top-color: var(--mm-color-text);
  border-radius: 50%;
  animation: mm-spin 0.65s linear infinite;
}

@keyframes mm-spin {
  to { transform: rotate(360deg); }
}

/* ----- Responsive ----- */
@media (max-width: 480px) {
  :root {
    --mm-drawer-width: 100vw;
  }

  .mm-drawer__title {
    font-size: 20px;
  }

  .mm-upsell-card {
    flex: 0 0 calc(60% - 5px);
  }

  .mm-trust__item {
    font-size: 9px;
  }

  .mm-trust__item svg {
    display: none;
  }
}
  transition: opacity 0.2s, background 0.2s;
  border: none;
  width: 100%;
}

.mm-btn--outline {
  background: transparent;
  border: 1.5px solid var(--mm-color-text);
  color: var(--mm-color-text);
}

.mm-btn--outline:hover { opacity: 0.7; }

/* ===== CHECKOUT BUTTON \u2014 full-width, bold, noir ===== */
.mm-btn--primary,
.mm-checkout-btn {
  display: flex  !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #000000 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 20px;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.mm-btn--primary:hover,
.mm-checkout-btn:hover { background: #000 !important; }

.mm-checkout-sep { opacity: 0.4; font-size: 14px; margin: 0 4px; }

.mm-checkout-amount {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
}

/* ===== TRUST BAR \u2014 centr\u00e9, plus visible ===== */
 .mm-trust {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 10px;
  margin-bottom: 8px;
  border-bottom: none;
}

.mm-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}

.mm-trust__item svg { flex-shrink: 0; opacity: 0.75; }
.mm-trust__sep { color: var(--mm-color-border); font-size: 11px; flex-shrink: 0; }

/* ===== PAYMENT LOGOS \u2014 centr\u00e9, plus visible ===== */
.mm-payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 8px;
}

.mm-pay-logo {
  width: 34px;
  height: 22px;
  border-radius: 3px;
  border: 1px solid #e8e8e8;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  background: #fff;
}

/* ===== TRUST BAR \u2014 s\u00e9parateur point au lieu de | ===== */
.mm-trust__sep {
  font-size: 0 !important; /* masque le caract\u00e8re | dans le HTML */
}
.mm-trust__sep::before {
  content: '\u00b7';
  font-size: 16px;
  line-height: 1;
  color: #ccc;
  display: inline-block;
}

/* ===== MILESTONES \u2014 look am\u00e9lior\u00e9 ===== */
 .mm-milestone {
  width: 18px;
  height: 18px;
  background: var(--mm-color-bg);
  border: 1.5px solid #c8c8c8;
  box-shadow: 0 0 0 2px var(--mm-color-bg);
  transition: width 0.35s ease, height 0.35s ease,
              border-color 0.35s ease, background 0.35s ease,
              box-shadow 0.35s ease;
                color: var(--mm-color-muted);
}

.mm-milestone.reached {
  width: 26px;
  height: 26px;
  color: var(--mm-color-success);
  border-color: var(--mm-color-success);
  background: #f0f9f0;
  box-shadow: 0 0 0 2px var(--mm-color-bg), 0 0 0 4px rgba(46,125,50,0.15);
}

.mm-milestone svg {
  width: 12px;
  height: 12px;
  transition: opacity 0.3s, transform 0.3s;
  transform: scale(0.7);
}

.mm-milestone.reached svg {
  opacity: 1;
  transform: scale(1);
}

/* ===== ADDON \u2014 premium look (style UpCart) ===== */
 .mm-footer .mm-addon {
  background: linear-gradient(135deg, #fdf9ed 0%, #fff8e7 100%);
  border: 1px solid #e8c94f !important;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 10px;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

/* Gris\u00e9 quand le toggle est d\u00e9sactiv\u00e9 */
 .mm-footer .mm-addon:has(#mm-addon-toggle-input:not(:checked)) {
  opacity: 0.45;
  filter: grayscale(0.7);
}

.mm-addon__icon--crown {
  color: #c9a84c;
  filter: drop-shadow(0

/* ---- Ligne livraison (footer) ---- */
.mm-shipping-line {
  font-size: 13px;
  margin-bottom: 6px;
  color: #555;
}
.mm-sl-amount {
  font-weight: 600;
}
.mm-sl-gratuit {
  color: #16a34a !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.mm-sl-sub {
  color: #888;
  font-size: 12px;
}

/* ---- S\u00e9lecteur de pays ---- */
.mm-country-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 0 2px;
}
.mm-country-selector__icon {
  color: #888;
  flex-shrink: 0;
}
.mm-country-selector__select {
  flex: 1;
  font-size: 12.5px;
  color: #444;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 5px 8px;
  background: #fafafa;
  cursor: pointer;
  outline: none;
}
.mm-country-selector__select:focus {
  border-color: #0d9488;
}

.mm-header-sep {
  width: 1px;
  height: 14px;
  background: #ddd;
  flex-shrink: 0;
}
.mm-trust-slider {
  flex: 1;
  position: relative;
  height: 18px;
  overflow: hidden;
  min-width: 0;
}
.mm-trust-slide {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #777;
  opacity: 0;
  transition: opacity 0.5s ease;
  white-space: nowrap;
}
.mm-trust-slide--active { opacity: 1; }
.mm-trust-slide strong { color: #111; font-weight: 500; }
.mm-trust-dots {
  display: flex;
  gap: 3px;
  align-items: center;
  flex-shrink: 0;
}
.mm-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s;
  display: block;
}
.mm-trust-dot--active { background: #222; }
@media (max-width: 768px) {
  .mm-trust-dots { flex-direction: column; }
}