/*
Theme Name: MyBoosta
Theme URI: https://myboosta.com
Author: MyBoosta
Description: Premium standalone WooCommerce theme for MyBoosta. No parent theme dependency.
Version: 5.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: myboosta
Tags: e-commerce, woocommerce, custom-menu, custom-logo, full-width-template, responsive-layout
*/

/* =====================================================================
   MYBOOSTA v4 — PREMIUM DESIGN SYSTEM
   Tokens: #F7F7FA bg / #FFFFFF cards / #0F172A ink / #64748B muted
           gradient #7C3AED → #EC4899 (CTA only)
   Spacing scale: 8 / 16 / 24 / 32 / 56
   Radius: 12 / 14 / 999
===================================================================== */

:root{
  --mbp-bg: #F7F7FA;
  --mbp-card: #FFFFFF;
  --mbp-ink: #0F172A;
  --mbp-ink-2: #475569;
  --mbp-muted: #64748B;
  --mbp-border: #E5E7EB;
  --mbp-border-2: #EEF0F4;
  --mbp-accent-1: #7C3AED;
  --mbp-accent-2: #EC4899;
  --mbp-accent-grad: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --mbp-shadow-sm: 0 1px 2px rgba(15,23,42,.04);
  --mbp-shadow-md: 0 4px 16px rgba(15,23,42,.06);
  --mbp-shadow-lg: 0 12px 40px rgba(15,23,42,.08);
  --mbp-radius: 14px;
  --mbp-radius-sm: 12px;
}

/* ======== RESET / BASE ======== */
.mbp-body{
  margin: 0;
  padding: 0;
  background: var(--mbp-bg);
  color: var(--mbp-ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mbp-body *,
.mbp-body *::before,
.mbp-body *::after{ box-sizing: border-box; }
.mbp-body img{ max-width: 100%; height: auto; display: block; }
.mbp-body a{ color: var(--mbp-ink); text-decoration: none; }

/* ======== KILL ASTRA / WOOCOMMERCE WRAPPERS ON PRODUCT ======== */
.mbp-body .site-main,
.mbp-body .content-area,
.mbp-body .ast-container,
.mbp-body .woocommerce,
.mbp-body .woocommerce div.product,
.mbp-body .product,
.mbp-body .summary,
.mbp-body .entry-summary,
.mbp-body .woocommerce-product-gallery,
.mbp-body .ast-article-single,
.mbp-body .desktop-align-left,
.mbp-body .tablet-align-left,
.mbp-body .mobile-align-left{
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
.mbp-body .woocommerce ul.products,
.mbp-body .woocommerce-tabs,
.mbp-body .related,
.mbp-body .upsells,
.mbp-body .product_meta,
.mbp-body .breadcrumb,
.mbp-body .woocommerce-breadcrumb{ display: none !important; }

/* ======== CONTAINER + PAGE ======== */
.mbp-page{
  width: 100%;
  background: var(--mbp-bg);
  padding-bottom: 80px;
}
.mbp-container{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ======== SITE HEADER ======== */
.mbp-site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--mbp-border-2);
}
.mbp-site-header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.mbp-logo{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--mbp-ink);
}
.mbp-site-nav{ flex: 1; }
.mbp-site-nav-list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mbp-site-nav-list a{
  font-size: 14px;
  font-weight: 500;
  color: var(--mbp-ink-2);
  transition: color .15s;
}
.mbp-site-nav-list a:hover{ color: var(--mbp-ink); }

.mbp-cart-trigger{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  color: var(--mbp-ink);
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s, transform .1s;
}

/* === Mobile menu toggle (hamburger) === */
.mbp-mobile-menu-toggle{
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--mbp-border);
  background: #fff;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: border-color .15s, transform .12s;
  position: relative;
  z-index: 60;
}
.mbp-mobile-menu-bar{
  display: block;
  width: 18px;
  height: 2px;
  background: var(--mbp-ink);
  border-radius: 2px;
  transition: transform .25s, opacity .15s;
}
.mbp-mobile-menu-toggle.is-open .mbp-mobile-menu-bar:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.mbp-mobile-menu-toggle.is-open .mbp-mobile-menu-bar:nth-child(2){
  opacity: 0;
}
.mbp-mobile-menu-toggle.is-open .mbp-mobile-menu-bar:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}
.mbp-mobile-menu-toggle:active{ transform: scale(.94); }
.mbp-cart-trigger:hover{ border-color: var(--mbp-ink); box-shadow: var(--mbp-shadow-sm); }
.mbp-cart-trigger:active{ transform: scale(.98); }
.mbp-cart-icon{ display: inline-flex; }
.mbp-cart-count{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--mbp-ink);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

/* ======== HERO ======== */
.mbp-hero{
  padding: 56px 0 32px;
}
.mbp-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: start;
}

/* ======== DASHBOARD VISUAL ======== */
.mbp-dashboard{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--mbp-shadow-lg);
  position: relative;
  overflow: hidden;
}
.mbp-dashboard::before{
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(124,58,237,.08), transparent 70%);
  pointer-events: none;
}
.mbp-dash-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.mbp-dash-platform{
  display: flex;
  align-items: center;
  gap: 12px;
}
.mbp-dash-platform-dot{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mbp-accent-grad);
  flex-shrink: 0;
}
.mbp-dash-platform-label{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--mbp-muted);
  font-weight: 600;
}
.mbp-dash-platform-name{
  font-size: 15px;
  font-weight: 600;
  color: var(--mbp-ink);
}
.mbp-dash-status{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,.08);
  color: #15803D;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.mbp-dash-pulse{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22C55E;
  position: relative;
  display: inline-block;
}
.mbp-dash-pulse::after{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: #22C55E;
  opacity: .35;
  animation: mbp-pulse 1.6s ease-out infinite;
}
@keyframes mbp-pulse{
  0%   { transform: scale(.8); opacity: .35; }
  100% { transform: scale(2.5); opacity: 0; }
}

.mbp-dash-body{ position: relative; }
.mbp-dash-metric-row{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}
.mbp-dash-metric{
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  align-items: center;
  gap: 12px;
}
.mbp-dash-metric-label{
  font-size: 13px;
  color: var(--mbp-ink-2);
  font-weight: 500;
}
.mbp-dash-metric-bar{
  height: 8px;
  background: #F1F5F9;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.mbp-dash-metric-bar > span{
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--mbp-accent-grad);
  animation: mbp-bar-grow 1.4s cubic-bezier(.2,.7,.3,1) both;
}
@keyframes mbp-bar-grow{
  from { width: 0 !important; }
}
.mbp-dash-metric-val{
  font-size: 13px;
  font-weight: 600;
  color: var(--mbp-ink);
  text-align: right;
}
.mbp-dash-chip-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mbp-dash-chip{
  background: #F1F5F9;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mbp-ink-2);
}
.mbp-dash-foot{
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--mbp-border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--mbp-muted);
  font-weight: 500;
}
.mbp-dash-progress{
  flex: 1;
  max-width: 120px;
  height: 4px;
  background: #F1F5F9;
  border-radius: 999px;
  overflow: hidden;
}
.mbp-dash-progress-bar{
  display: block;
  height: 100%;
  width: 30%;
  background: var(--mbp-accent-grad);
  border-radius: 999px;
  animation: mbp-queue 2.2s ease-in-out infinite;
}
@keyframes mbp-queue{
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ======== HERO PRODUCT CARD ======== */
.mbp-hero-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: var(--mbp-radius);
  padding: 32px;
  box-shadow: var(--mbp-shadow-md);
}
.mbp-trust-line{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
  color: var(--mbp-ink-2);
}
.mbp-stars{
  display: inline-flex;
  gap: 1px;
  color: #F59E0B;
  letter-spacing: 1px;
  font-size: 14px;
}
.mbp-stars-lg{ font-size: 22px; gap: 2px; }
.mbp-trust-rating{ font-weight: 700; color: var(--mbp-ink); }
.mbp-trust-source{ color: var(--mbp-muted); }
.mbp-title{
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.mbp-subtitle{
  color: var(--mbp-muted);
  font-size: 15px;
  margin: 0 0 24px;
  line-height: 1.55;
}
.mbp-price-row{
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 24px;
}
.mbp-price-current{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--mbp-ink);
}
.mbp-price-old{
  font-size: 16px;
  color: var(--mbp-muted);
  text-decoration: line-through;
}

/* ======== FORM ======== */
.mbp-buy-form{ display: flex; flex-direction: column; gap: 20px; }
.mbp-field{ border: 0; padding: 0; margin: 0; min-width: 0; }
.mbp-field-label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--mbp-ink);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.mbp-field-required{
  color: var(--mbp-muted);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  margin-left: 4px;
}

/* ======== PILLS (Dawn pattern) ======== */
.mbp-pill-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mbp-pill-input{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.mbp-pill-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1.5px solid var(--mbp-border);
  border-radius: 12px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--mbp-ink);
  cursor: pointer;
  transition: all .15s;
  user-select: none;
}
.mbp-pill-label:hover{ border-color: var(--mbp-ink-2); }
.mbp-pill-input:focus-visible + .mbp-pill-label{
  outline: 2px solid var(--mbp-accent-1);
  outline-offset: 2px;
}
.mbp-pill-input:checked + .mbp-pill-label{
  background: #0F172A;
  color: #fff;
  border-color: #0F172A;
}

/* ======== INPUT ======== */
.mbp-input{
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1.5px solid var(--mbp-border);
  border-radius: 12px;
  font-size: 15px;
  color: var(--mbp-ink);
  transition: border-color .15s, box-shadow .15s;
  font-family: inherit;
}
.mbp-input:focus{
  outline: 0;
  border-color: var(--mbp-ink);
  box-shadow: 0 0 0 4px rgba(15,23,42,.06);
}
.mbp-input.mbp-invalid{
  border-color: #EF4444;
}
.mbp-field-hint{
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--mbp-muted);
}

/* ======== BUTTONS ======== */
.mbp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: transform .12s, box-shadow .15s, opacity .15s, filter .15s;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

/* === UNIVERSAL CONTRAST RULES =========================================
   Force readable text on every button variant, regardless of cascading
   from global a/p/h color rules. Light text on dark backgrounds, dark
   text on light backgrounds. NEVER black-on-black. =====================*/
a.mbp-btn-primary,   button.mbp-btn-primary,   .mbp-btn-primary,
a.mbp-btn-secondary, button.mbp-btn-secondary, .mbp-btn-secondary,
a.mbp-btn-dark,      button.mbp-btn-dark,      .mbp-btn-dark,
.mbp-drawer-checkout-cta,
.mbp-show-more,
.mbp-cta-buynow{
  color: #ffffff !important;
}
a.mbp-btn-ghost,     button.mbp-btn-ghost,     .mbp-btn-ghost,
.mbp-drawer-continue-link{
  color: var(--mbp-ink) !important;
}
/* Default for any unstyled .mbp-btn (force visible text) */
.mbp-btn:not([class*="mbp-btn-"]){
  background: var(--mbp-ink);
  color: #ffffff !important;
}
/* Disabled state must keep readable contrast (no transparent text) */
.mbp-btn:disabled,
.mbp-btn[disabled]{
  color: rgba(255,255,255,.85) !important;
}
.mbp-btn-ghost:disabled,
.mbp-btn-ghost[disabled]{
  color: var(--mbp-muted) !important;
}
.mbp-btn-primary{
  color: #fff;
  background: var(--mbp-accent-grad);
  box-shadow: 0 8px 20px rgba(124,58,237,.25);
}
.mbp-btn-primary:hover{
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(124,58,237,.32);
  transform: translateY(-1px);
}
.mbp-btn-primary:active{ transform: translateY(0) scale(.98); filter: brightness(.95); }
.mbp-btn:active{ transform: scale(.97); }
.mbp-drawer-offer:active{ transform: scale(.97); }
.mbp-drawer-checkout-cta:active{ transform: scale(.985); filter: brightness(.85); }
.mbp-drawer-remove:active{ color: #EF4444; }

/* === UNIVERSAL PRESS FEEDBACK ============================================
   Every interactive element gets a tactile press response. Uses transform
   only (no layout shift, no reflow). =======================================*/
.mbp-btn,
.mbp-cart-trigger,
.mbp-mobile-menu-toggle,
.mbp-platform-tab,
.mbp-coupon-btn,
.mbp-show-more,
.mbp-drawer-offer,
.mbp-qty-card,
.mbp-target-card,
.mbp-delivery-card,
.mbp-pill-label,
.mbp-tp-cta,
.mbp-fp-platform-card,
.mbp-faq-item summary,
.mbp-drawer-close,
.mbp-drawer-xsell-cta,
.mbp-drawer-xsell-add,
.mbp-faq-order-btn,
.mbp-final-cta,
.mbp-fp-cta,
.mbp-fp-faq-more{
  transition: transform .12s ease, filter .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.mbp-cart-trigger:active,
.mbp-mobile-menu-toggle:active,
.mbp-platform-tab:active,
.mbp-coupon-btn:active,
.mbp-show-more:active,
.mbp-tp-cta:active,
.mbp-fp-platform-card:active,
.mbp-drawer-close:active,
.mbp-drawer-xsell-cta:active,
.mbp-drawer-xsell-add:active,
.mbp-faq-item summary:active,
.mbp-faq-order-btn:active,
.mbp-final-cta:active,
.mbp-fp-cta:active,
.mbp-fp-faq-more:active{
  transform: scale(.96);
  filter: brightness(.95);
}

/* === TOAST ===============================================================
   In-app feedback replacing native alert(). Top-right, slides in/out. =====*/
#mbp-toast-host{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 40px);
}
.mbp-toast{
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--mbp-ink);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(15,23,42,.25);
  min-width: 280px;
  max-width: 380px;
  pointer-events: auto;
  opacity: 0;
  transform: translateX(110%);
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.7,.3,1);
  font-size: 14px;
  line-height: 1.4;
}
.mbp-toast.is-visible{ opacity: 1; transform: translateX(0); }
.mbp-toast-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.mbp-toast-error .mbp-toast-icon{ background: #ef4444; color: #fff; }
.mbp-toast-success .mbp-toast-icon{ background: #22C55E; color: #fff; }
.mbp-toast-info .mbp-toast-icon{ background: var(--mbp-accent-1); color: #fff; }
.mbp-toast-msg{ flex: 1; min-width: 0; }
.mbp-toast-x{
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0 4px;
  flex-shrink: 0;
  transition: color .15s;
}
.mbp-toast-x:hover{ color: #fff; }
@media (max-width: 640px){
  #mbp-toast-host{ top: 12px; right: 12px; left: 12px; }
  .mbp-toast{ min-width: 0; max-width: 100%; }
}
.mbp-btn-primary:disabled,
.mbp-btn-primary[disabled]{
  opacity: .55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
  filter: grayscale(.3);
}
.mbp-btn-secondary{
  background: var(--mbp-ink);
  color: #fff;
}
.mbp-btn-ghost{
  background: transparent;
  color: var(--mbp-ink);
  border: 1px solid var(--mbp-border);
}
.mbp-btn-ghost:hover{ border-color: var(--mbp-ink); }

.mbp-cta{ width: 100%; }
.mbp-cta-spinner{
  display: none;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mbp-spin .7s linear infinite;
}
.mbp-cta.is-loading .mbp-cta-label{ opacity: .6; }
.mbp-cta.is-loading .mbp-cta-spinner{ display: inline-block; }
.mbp-cta.is-loading{ pointer-events: none; }
@keyframes mbp-spin{ to { transform: rotate(360deg); } }

.mbp-buy-meta{
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  font-size: 13px;
  color: var(--mbp-ink-2);
}

/* ======== TRUST BAR ======== */
.mbp-trust-bar{
  padding: 24px 0;
}
.mbp-trust-bar-inner{
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 14px 22px;
  box-shadow: var(--mbp-shadow-sm);
}
.mbp-trust-bar-inner > .mbp-tp-mini-info{
  flex: 1;
  min-width: 0;
}
.mbp-trust-bar-inner .mbp-tp-mini-info strong{
  font-size: 16px;
  color: var(--mbp-ink);
  font-weight: 700;
  line-height: 1.1;
}
.mbp-trust-bar-inner .mbp-tp-mini-info > span{
  font-size: 12px;
  color: var(--mbp-muted);
  line-height: 1.1;
}
.mbp-trust-bar-inner .mbp-tp-mini-brand{
  margin-left: auto;
}
.mbp-trust-bar-text{ color: var(--mbp-ink-2); font-size: 14px; }

/* ======== SECTIONS ======== */
.mbp-section{ padding: 56px 0; }
.mbp-section-alt{ background: #fff; border-top: 1px solid var(--mbp-border-2); border-bottom: 1px solid var(--mbp-border-2); }
.mbp-section-head{ text-align: center; max-width: 640px; margin: 0 auto 40px; }
.mbp-section-head .mbp-stars{ display: inline-flex; margin-bottom: 12px; }
.mbp-section-title{
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.mbp-section-sub{
  color: var(--mbp-muted);
  margin: 0;
  font-size: 16px;
}

/* ======== STEPS ======== */
.mbp-steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mbp-step{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform .15s, box-shadow .15s;
}
.mbp-step:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); }
.mbp-step-num{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--mbp-accent-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.mbp-step h3{ margin: 0 0 6px; font-size: 17px; font-weight: 600; }
.mbp-step p{ margin: 0; color: var(--mbp-muted); font-size: 14px; line-height: 1.55; }

/* ======== WHY GRID ======== */
.mbp-why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mbp-why-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 24px;
  transition: transform .15s, box-shadow .15s;
}
.mbp-why-card:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); }
.mbp-why-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #F1F5F9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.mbp-why-card h3{ margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.mbp-why-card p{ margin: 0; color: var(--mbp-muted); font-size: 13.5px; line-height: 1.55; }

/* ======== INCLUDED ======== */
.mbp-included{
  list-style: none;
  margin: 0 auto;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  max-width: 820px;
}
.mbp-included li{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--mbp-ink-2);
}
.mbp-included li > span{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  color: #15803D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ======== TRUSTPILOT SECTION ======== */
:root{
  --tp-green: #00B67A;
  --tp-green-dark: #009C66;
  --tp-green-light: rgba(0,182,122,.25);
  --tp-empty: #DCDCE0;   /* grey for unfilled portion of partial star */
  --tp-bg: #E8F7F1;
  --tp-card-border: #E5E7EB;
}

/* Universal star alignment — applies everywhere stars appear */
.mbp-tp-stars-row{
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  gap: 2px !important;
  line-height: 1 !important;
  flex-shrink: 0;
}
.mbp-tp-star{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: middle !important;
  flex-shrink: 0;
  line-height: 1;
}
.mbp-tp-star svg{
  display: block !important;
  width: 70% !important;
  height: 70% !important;
}

/* Make every child of a trust-pill container the SAME height as the stars row,
   then center their inner content. That guarantees visual baseline alignment
   regardless of font line-height differences. */
.mbp-trust-bar-inner,
.mbp-tp-mini,
.mbp-drawer-trust-pill,
.mbp-fp-trust-mini{
  align-items: center !important;
  line-height: 1.2 !important;
}
.mbp-trust-bar-inner > *,
.mbp-tp-mini > *,
.mbp-drawer-trust-pill > *,
.mbp-fp-trust-mini > *{
  display: inline-flex !important;
  align-items: center !important;
  min-height: 22px !important;       /* match star box height */
  line-height: 1.2 !important;
}
/* Re-add proper whitespace inside text spans (inline-flex squeezes spaces) */
.mbp-trust-bar-text,
.mbp-tp-mini-info,
.mbp-fp-trust-mini > .mbp-tp-mini-info{
  white-space: normal;
}
.mbp-trust-bar-text strong,
.mbp-trust-bar-text span{
  display: inline;
  white-space: normal;
}

/* BRUTE-FORCE optical nudge — text glyphs render slightly above their box center
   because of font ascender/descender asymmetry. Pull stars down 2-3px so they
   visually align with the chars, not just the math. */
.mbp-trust-bar-inner .mbp-tp-stars-row,
.mbp-tp-mini .mbp-tp-stars-row,
.mbp-drawer-trust-pill .mbp-tp-stars-row,
.mbp-fp-trust-mini .mbp-tp-stars-row{
  transform: translateY(2px) !important;
}
/* Stacked rating + reviews block (column flex, more specific to override parent > * rule) */
.mbp-trust-bar-inner > .mbp-tp-mini-info,
.mbp-tp-mini > .mbp-tp-mini-info,
.mbp-drawer-trust-pill > .mbp-tp-mini-info,
.mbp-fp-trust-mini > .mbp-tp-mini-info{
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  align-items: flex-start !important;
  justify-content: center !important;
}
/* Partial-fill last star based on data-rating decimal. Default fill if no data-rating: 80% (=4.8) */
.mbp-tp-stars-row[data-rating="4.8"] .mbp-tp-star:last-child,
.mbp-tp-stars-row[data-rating="4.5"] .mbp-tp-star:last-child{
  background: linear-gradient(to right, var(--tp-green) 80%, var(--tp-empty) 80%) !important;
}
.mbp-tp-stars-row[data-rating="4.5"] .mbp-tp-star:last-child{
  background: linear-gradient(to right, var(--tp-green) 50%, var(--tp-empty) 50%) !important;
}
.mbp-tp-stars-row[data-rating="4.0"] .mbp-tp-star:last-child{
  background: var(--tp-empty) !important;
}
.mbp-tp-section{
  padding: 56px 0 64px;
  background: linear-gradient(180deg, #F0FAF5 0%, var(--tp-bg) 100%);
}
.mbp-tp-summary{
  text-align: center;
  background: #fff;
  border: 1px solid var(--tp-card-border);
  border-radius: 16px;
  padding: 36px 24px 32px;
  max-width: 720px;
  margin: 0 auto 32px;
  box-shadow: var(--mbp-shadow-sm);
}
.mbp-tp-rating-word{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--mbp-ink);
  margin: 0 0 16px;
}
.mbp-tp-stars-row{
  display: inline-flex;
  gap: 4px;
  margin-bottom: 16px;
}
.mbp-tp-star{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--tp-green);
  border-radius: 3px;
  width: 36px;
  height: 36px;
  padding: 4px;
}
.mbp-tp-star-sm{
  width: 22px;
  height: 22px;
  padding: 3px;
  border-radius: 2px;
}
.mbp-tp-star svg{ width: 100%; height: 100%; }
.mbp-tp-rated{
  font-size: 15px;
  color: var(--mbp-ink-2);
  margin: 0 0 18px;
}
.mbp-tp-rated strong{ color: var(--mbp-ink); font-weight: 700; }
.mbp-tp-logo{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--mbp-ink);
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.mbp-tp-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tp-green);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,182,122,.25);
  transition: transform .12s, box-shadow .15s, background .15s;
}
.mbp-tp-cta:hover{
  background: var(--tp-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,182,122,.32);
}
.mbp-tp-cta-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  display: inline-block;
}

/* Trustpilot review cards */
.mbp-tp-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.mbp-tp-card{
  background: #fff;
  border: 1px solid var(--tp-card-border);
  border-radius: 12px;
  padding: 18px 18px 16px;
  box-shadow: var(--mbp-shadow-sm);
  transition: transform .15s, box-shadow .15s;
  display: flex;
  flex-direction: column;
}
.mbp-tp-card:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); }
.mbp-tp-card-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 10px;
}
.mbp-tp-card-stars{
  display: inline-flex;
  gap: 2px;
}
.mbp-tp-verified{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--mbp-ink-2);
  font-weight: 500;
  white-space: nowrap;
}
.mbp-tp-check{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--tp-green);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.mbp-tp-card-title{
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--mbp-ink);
  letter-spacing: -.005em;
}
.mbp-tp-card-text{
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--mbp-ink-2);
  flex: 1;
}
.mbp-tp-card-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--mbp-muted);
  border-top: 1px solid var(--mbp-border-2);
  padding-top: 12px;
}
.mbp-tp-card-foot strong{ color: var(--mbp-ink); font-weight: 700; }

/* Legacy reviews grid (still used by alt sections if present) */
.mbp-reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mbp-review{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--mbp-shadow-sm);
}

/* ======== FAQ ======== */
.mbp-faq{ max-width: 760px; margin: 0 auto; }
.mbp-faq-item{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.mbp-faq-item[open]{
  border-color: var(--mbp-ink);
  box-shadow: var(--mbp-shadow-md);
}
.mbp-faq-item summary{
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.mbp-faq-item summary::-webkit-details-marker{ display: none; }
.mbp-faq-item summary::after{
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #F1F5F9;
  color: var(--mbp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform .2s, background .2s;
}
.mbp-faq-item[open] summary::after{
  transform: translateY(-50%) rotate(45deg);
  background: var(--mbp-ink);
  color: #fff;
}
.mbp-faq-item > p{
  margin: 0;
  padding: 0 20px 20px;
  color: var(--mbp-ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ======== STICKY MOBILE CTA ======== */
.mbp-sticky-mobile{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-top: 1px solid var(--mbp-border-2);
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 40;
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.mbp-sticky-mobile.is-visible{ transform: translateY(0); }
.mbp-sticky-info{ flex: 1; min-width: 0; }
.mbp-sticky-name{
  font-size: 13px;
  font-weight: 600;
  color: var(--mbp-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mbp-sticky-price{
  font-size: 14px;
  font-weight: 700;
  color: var(--mbp-ink);
}
.mbp-sticky-cta{
  height: 48px;
  padding: 0 18px;
  font-size: 14px;
  width: auto;
  flex-shrink: 0;
}

/* ======== CART DRAWER ======== */
.mbp-drawer-overlay{
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  z-index: 90;
}
.mbp-drawer-overlay.is-open{ opacity: 1; pointer-events: auto; }
.mbp-drawer{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 48px rgba(15,23,42,.12);
}
.mbp-drawer.is-open{ transform: translateX(0); }
.mbp-drawer-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--mbp-border-2);
}
.mbp-drawer-title{
  font-weight: 700;
  font-size: 16px;
}
.mbp-drawer-count{
  margin-left: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mbp-muted);
}
.mbp-drawer-close{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #F1F5F9;
  color: var(--mbp-ink);
  border: 0;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.mbp-drawer-close:hover{ background: #E2E8F0; }

.mbp-drawer-body{ flex: 1; overflow-y: auto; padding: 16px 22px 8px; }

/* === Offers panel === */
.mbp-drawer-offers{
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
  border: 1px solid #fda4af;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.mbp-drawer-offers-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
}
.mbp-drawer-offers-title{ font-weight: 700; color: var(--mbp-ink); }
.mbp-drawer-offers-sub{ color: var(--mbp-muted); font-size: 11px; }
.mbp-drawer-offers-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.mbp-drawer-offer{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--mbp-border);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all .15s;
  position: relative;
}
.mbp-drawer-offer:hover{ border-color: #fda4af; }
.mbp-drawer-offer.is-applied{ background: #ECFDF5; border-color: #22C55E; }
.mbp-drawer-offer.is-locked{ opacity: .55; cursor: not-allowed; }

/* Disable the OTHER coupon when one is applied (visual hint, click is blocked in JS) */
.mbp-drawer-offers-row:has(.is-applied) .mbp-drawer-offer:not(.is-applied){
  opacity: .5;
  cursor: not-allowed;
}

/* Shake feedback when user clicks a locked / blocked coupon */
@keyframes mbp-shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(6px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
}
.mbp-drawer-offer.is-shake{
  animation: mbp-shake .5s ease-in-out;
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}
.mbp-drawer-offer-check{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--mbp-border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 11px;
  color: #fff;
  flex-shrink: 0;
}
.mbp-drawer-offer.is-applied .mbp-drawer-offer-check{
  background: #22C55E;
  border-color: #22C55E;
}
.mbp-drawer-offer-pct{
  background: linear-gradient(135deg, #ff8a00, #e91e63);
  color: #fff;
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
}
.mbp-drawer-offer-info{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.mbp-drawer-offer-code{ font-weight: 700; font-size: 11px; color: var(--mbp-ink); letter-spacing: .04em; }
.mbp-drawer-offer-min{ font-size: 10px; color: var(--mbp-muted); }

/* === Bonus unlock progress === */
.mbp-drawer-progress{
  background: #F8FAFC;
  border-radius: 14px;
  padding: 12px 14px 10px;
  margin-bottom: 16px;
}
.mbp-drawer-progress-msg{
  font-size: 12.5px;
  color: var(--mbp-ink-2);
  text-align: center;
  margin-bottom: 8px;
}
.mbp-drawer-progress-msg strong{ color: var(--mbp-ink); font-weight: 700; }
.mbp-drawer-progress-bar{
  height: 6px;
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}
.mbp-drawer-progress-fill{
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #ff8a00, #e91e63 50%, #c084fc);
  border-radius: 999px;
  /* No transition: width changes apply instantly so the bar always
     reflects the true cart subtotal. With a transition, fragment swaps
     would show the bar briefly hitting its previous (wrong) value
     before animating to the correct one. */
}
.mbp-drawer-progress-tiers{
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.mbp-drawer-progress-tier{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--mbp-muted);
  opacity: .55;
  transition: opacity .15s;
}
.mbp-drawer-progress-tier.is-reached{ opacity: 1; color: var(--mbp-ink); }
.mbp-drawer-progress-icon{ font-size: 14px; }
.mbp-drawer-progress-amount{ font-weight: 700; }

/* === Cart item card === */
.mbp-drawer-items{ list-style: none; margin: 0; padding: 0; }
.mbp-drawer-item-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 22px 14px 14px;        /* extra top so the Progressive tag fits inside */
  margin-bottom: 12px;
  position: relative;
  transition: opacity .2s, transform .2s, max-height .25s, padding .25s, margin .25s, border .25s;
  max-height: 400px;
  overflow: hidden;
}
.mbp-drawer-item-card.is-removing,
.mbp-drawer-item.is-removing{
  opacity: 0;
  transform: translateX(40px);
  max-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  border-color: transparent !important;
  pointer-events: none;
}
.mbp-drawer-item-mode-tag{
  position: absolute;
  top: 6px;                       /* inside card so overflow:hidden doesn't clip it */
  left: 14px;
  background: #0a0a0a;
  color: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
}
.mbp-drawer-item-row{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.mbp-drawer-item-thumb{
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffe2e2, #fff0d6, #f5e6ff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}
.mbp-drawer-item-thumb span{
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
}
.mbp-drawer-item-meta-block{ flex: 1; min-width: 0; }
.mbp-drawer-item-card .mbp-drawer-item-name{
  font-weight: 700;
  font-size: 14px;
  color: var(--mbp-ink);
  margin-bottom: 4px;
}
.mbp-drawer-item-card .mbp-drawer-item-price{
  font-weight: 800;
  font-size: 18px;
  color: var(--mbp-ink);
  margin-bottom: 2px;
}
.mbp-drawer-igline{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--mbp-muted);
  margin-top: 4px;
}
.mbp-drawer-igline img{ border-radius: 999px; }
.mbp-drawer-item-deliver{
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(124,58,237,.08), rgba(236,72,153,.06));
  border: 1px solid rgba(124,58,237,.18);
  border-radius: 10px;
  padding: 8px 12px;
  margin: 4px 0 10px;
  font-size: 13px;
  color: var(--mbp-ink-2);
}
.mbp-drawer-item-deliver-icon{ font-size: 14px; }
.mbp-drawer-item-deliver-text strong{
  background: linear-gradient(135deg, #ff8a00, #e91e63 50%, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 14px;
}
.mbp-drawer-item-deliver-bonus{
  display: inline-block;
  background: rgba(34,197,94,.12);
  color: #15803D;
  padding: 2px 8px;
  border-radius: 6px;
  margin-left: 6px;
  font-size: 12.5px;
  font-weight: 600;
}
.mbp-drawer-item-deliver-bonus strong{
  background: none !important;
  -webkit-text-fill-color: #15803D !important;
  color: #15803D !important;
  font-weight: 800;
  font-size: 13px;
}

/* Cart-tier unlock banner under progress bar */
.mbp-drawer-unlocked-banner{
  margin-top: 10px;
  background: linear-gradient(135deg, rgba(34,197,94,.10), rgba(124,58,237,.06));
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--mbp-ink);
  animation: mbp-unlock-pop .35s cubic-bezier(.2,.7,.3,1.4);
}
@keyframes mbp-unlock-pop{
  from { opacity: 0; transform: translateY(-4px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mbp-drawer-unlocked-icon{ font-size: 16px; }
.mbp-drawer-unlocked-text strong{
  color: #15803D;
  font-weight: 800;
}

.mbp-drawer-item-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.mbp-drawer-chip{
  background: #F1F5F9;
  border: 1px solid var(--mbp-border-2);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mbp-ink-2);
}
.mbp-drawer-chip-bonus{
  background: #ECFDF5;
  color: #15803D;
  border-color: rgba(34,197,94,.3);
}
.mbp-drawer-item-foot{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--mbp-border-2);
}

/* === Cross-sell === */
.mbp-drawer-xsell{
  background: #F8FAFC;
  border-radius: 14px;
  padding: 14px;
  margin-top: 4px;
  margin-bottom: 8px;
}
.mbp-drawer-xsell-title{
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--mbp-ink);
}
.mbp-drawer-xsell-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.mbp-drawer-xsell-card:last-child{ margin-bottom: 0; }
.mbp-drawer-xsell-head{
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.mbp-drawer-xsell-thumb{
  width: 38px; height: 38px;
  border-radius: 8px;
  font-size: 18px;
}
.mbp-drawer-xsell-thumb span{
  width: 26px; height: 26px;
  border-radius: 6px;
  font-size: 14px;
}
.mbp-drawer-xsell-name{
  font-weight: 700;
  font-size: 13px;
  color: var(--mbp-ink);
}
.mbp-drawer-xsell-from{
  font-size: 11.5px;
  color: var(--mbp-muted);
}
.mbp-drawer-xsell-cta,
.mbp-drawer-xsell-add{
  background: #0a0a0a;
  color: #fff !important;
  height: 38px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.mbp-drawer-xsell-cta:hover,
.mbp-drawer-xsell-add:hover{ filter: brightness(1.18); }
.mbp-drawer-xsell-add:disabled{ opacity: .6; cursor: not-allowed; }
.mbp-drawer-xsell-add.is-loading{ opacity: .7; }

.mbp-drawer-xsell-info{ flex: 1; min-width: 0; }
.mbp-drawer-xsell-pickers{
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.mbp-drawer-xsell-select{
  flex: 1;
  min-width: 0;
  height: 38px;
  padding: 0 36px 0 12px;
  border: 1.5px solid var(--mbp-border);
  border-radius: 10px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--mbp-ink);
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 12px center;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font-family: inherit;
}
.mbp-drawer-xsell-select:focus{
  outline: 0;
  border-color: var(--mbp-ink);
  box-shadow: 0 0 0 3px rgba(15,23,42,.08);
}
.mbp-drawer-empty{
  text-align: center;
  padding: 40px 0;
  color: var(--mbp-muted);
}
.mbp-drawer-empty-icon{
  font-size: 36px;
  margin-bottom: 8px;
}
.mbp-drawer-empty p{ margin: 0 0 16px; }

.mbp-drawer-items{ list-style: none; margin: 0; padding: 0; }
.mbp-drawer-item{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--mbp-border-2);
}
.mbp-drawer-item:last-child{ border-bottom: 0; }
.mbp-drawer-item-info{ flex: 1; min-width: 0; }
.mbp-drawer-item-name{
  font-weight: 600;
  font-size: 14.5px;
  color: var(--mbp-ink);
  margin-bottom: 4px;
}
.mbp-drawer-item-meta{
  font-size: 12.5px;
  color: var(--mbp-muted);
  margin-bottom: 4px;
}
.mbp-drawer-item-price{
  font-weight: 700;
  font-size: 14px;
  color: var(--mbp-ink);
  margin-top: 6px;
}
.mbp-drawer-item-actions{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.mbp-qty-control{
  display: inline-flex;
  align-items: center;
  background: #F1F5F9;
  border-radius: 999px;
  height: 32px;
  padding: 0 4px;
  gap: 2px;
}
.mbp-qty-btn{
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--mbp-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.mbp-qty-btn:hover{ background: #fff; }
.mbp-qty-btn:active{ transform: scale(.86); background: #c084fc; color: #fff; }
.mbp-qty-btn{ transition: background .12s, transform .08s, color .12s; }
.mbp-qty-num{
  min-width: 22px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}
.mbp-drawer-remove{
  background: transparent;
  border: 0;
  color: var(--mbp-muted);
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  padding: 0;
  transition: color .15s;
}
.mbp-drawer-remove:hover{ color: #EF4444; }

.mbp-drawer-foot{
  border-top: 1px solid var(--mbp-border-2);
  padding: 16px 22px 18px;
  background: #FAFBFC;
}
.mbp-drawer-trust-pill{
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1;
}
.mbp-drawer-trust-pill > *{
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.mbp-drawer-trust-pill .mbp-tp-stars-row{
  gap: 2px;
  display: inline-flex;
  align-items: center;
  height: 16px;
}
.mbp-drawer-trust-pill .mbp-tp-star-xs{
  width: 16px;
  height: 16px;
  padding: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mbp-drawer-trust-pill .mbp-tp-star-xs svg{
  width: 100%;
  height: 100%;
  display: block;
}
.mbp-drawer-trust-rating strong{ font-weight: 700; }
.mbp-drawer-trust-pill > .mbp-tp-mini-info strong{
  font-size: 13px; color: #fff; font-weight: 700; line-height: 1.1;
}
.mbp-drawer-trust-pill > .mbp-tp-mini-info > span{
  font-size: 11px; color: rgba(255,255,255,.65); line-height: 1.1;
}
/* Dark-mode Trustpilot logo on dark drawer (image-based, official logo) */
.mbp-tp-mini-brand-dark{
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
}
.mbp-tp-mini-brand-dark img{
  display: block !important;
  width: auto !important;
  height: 41px !important;
  max-width: 205px;
}
@media (max-width: 480px){
  .mbp-tp-mini-brand-dark img{ height: 34px !important; max-width: 170px; }
}
.mbp-drawer-trust-brand{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
}
.mbp-drawer-trust-no1{ display: none !important; }
.mbp-drawer-total-row{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0 12px;
}
.mbp-drawer-total-label{
  font-size: 14px;
  color: var(--mbp-ink-2);
  font-weight: 500;
}
.mbp-drawer-total-amount{
  font-size: 22px;
  font-weight: 800;
  color: var(--mbp-ink);
  letter-spacing: -.01em;
}
.mbp-drawer-total-amount .woocommerce-Price-amount{ font-size: 22px !important; font-weight: 800 !important; }
.mbp-drawer-checkout-cta{
  width: 100%;
  height: 56px;
  background: #0a0a0a;
  color: #fff;
  border: 0;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: filter .15s, transform .12s;
}
.mbp-drawer-checkout-cta::after{
  content: "ORDER";
  background: linear-gradient(135deg, #ff8a00, #e91e63 50%, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: .12em;
}
/* Replace the text via gradient — simpler: keep PLACE ORDER as one block with gradient on the second word */
.mbp-drawer-checkout-cta{
  background: #0a0a0a !important;
  color: #fff !important;
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.mbp-drawer-checkout-cta::after{ content: none; }
.mbp-drawer-checkout-cta:hover{ filter: brightness(1.18); }
.mbp-drawer-continue-link{
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--mbp-muted);
  font-size: 13px;
  cursor: pointer;
  padding: 6px;
  font-family: inherit;
  text-align: center;
}
.mbp-drawer-continue-link:hover{ color: var(--mbp-ink); }

/* ======== SITE FOOTER ======== */
.mbp-site-footer{
  background: #fff;
  border-top: 1px solid var(--mbp-border-2);
  padding: 40px 0 32px;
  margin-top: 32px;
}
.mbp-site-footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.mbp-footer-brand .mbp-logo{ display: block; margin-bottom: 6px; }
.mbp-footer-tag{ color: var(--mbp-muted); font-size: 14px; margin: 0; }
.mbp-footer-list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mbp-footer-list a{
  font-size: 13.5px;
  color: var(--mbp-ink-2);
  transition: color .15s;
}
.mbp-footer-list a:hover{ color: var(--mbp-ink); }
.mbp-footer-meta{
  grid-column: 1 / -1;
  border-top: 1px solid var(--mbp-border-2);
  padding-top: 16px;
  color: var(--mbp-muted);
  font-size: 12px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 980px){
  .mbp-hero-grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .mbp-hero-card{ padding: 24px; order: 0; }
  .mbp-hero-visual{ order: 1; }
  .mbp-steps{ grid-template-columns: 1fr; }
  .mbp-why-grid{ grid-template-columns: 1fr 1fr; }
  .mbp-reviews-grid{ grid-template-columns: 1fr 1fr; }
  .mbp-tp-grid{ grid-template-columns: 1fr 1fr; }
  .mbp-included{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .mbp-container{ padding: 0 16px; }
  .mbp-mobile-menu-toggle{ display: inline-flex; }
  .mbp-site-nav{
    position: fixed;
    top: 64px;            /* sits below header */
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--mbp-border-2);
    padding: 8px 16px 24px;
    transform: translateY(-110%);
    transition: transform .28s cubic-bezier(.2,.7,.3,1);
    z-index: 55;
    box-shadow: 0 16px 40px rgba(15,23,42,.12);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .mbp-site-nav.is-open{ transform: translateY(0); }
  .mbp-site-nav-list{
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    margin: 0;
  }
  .mbp-site-nav-list li{
    list-style: none;
    border-bottom: 1px solid var(--mbp-border-2);
  }
  .mbp-site-nav-list li:last-child{ border-bottom: 0; }
  .mbp-site-nav-list a{
    display: flex;
    align-items: center;
    padding: 14px 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--mbp-ink);
    transition: color .15s;
  }
  .mbp-site-nav-list a:active,
  .mbp-site-nav-list a:hover{
    color: var(--mbp-accent-1);
  }
  .mbp-hero{ padding: 32px 0 24px; }
  .mbp-hero-card{ padding: 20px; }
  .mbp-section{ padding: 40px 0; }
  .mbp-why-grid{ grid-template-columns: 1fr; }
  .mbp-reviews-grid{ grid-template-columns: 1fr; }
  .mbp-tp-grid{ grid-template-columns: 1fr; }
  .mbp-tp-rating-word{ font-size: 26px; }
  .mbp-tp-star{ width: 30px; height: 30px; }
  .mbp-buy-meta{ grid-template-columns: 1fr; }
  .mbp-fp-platform-grid,
  .mbp-about-grid{ grid-template-columns: 1fr; }
  .mbp-about-stats-grid{ grid-template-columns: 1fr 1fr; padding: 20px; gap: 16px; }
  .mbp-contact-row{ grid-template-columns: 1fr; }
  .mbp-page-article,
  .mbp-post{ padding: 24px 20px; border-radius: 14px; }
  .mbp-page{ padding-bottom: 96px; }
  .mbp-sticky-mobile{ display: flex; }
  .mbp-drawer{ width: 100%; }
  .mbp-trust-bar-inner{ gap: 10px; padding: 12px 14px; }
  .mbp-trust-bar-inner .mbp-tp-mini-info strong{ font-size: 14px; }
  .mbp-trust-bar-inner .mbp-tp-mini-info > span{ font-size: 11px; }
  .mbp-trust-bar-inner .mbp-tp-mini-brand{ font-size: 12px; }
  .mbp-trust-bar-inner .mbp-tp-star-sm{ width: 18px !important; height: 18px !important; }
  .mbp-dash-metric{ grid-template-columns: 80px 1fr 36px; }
  .mbp-site-footer-inner{ grid-template-columns: 1fr; }
}

/* ======== UTILITIES ======== */
/* Fade-in only activates when JS sets html.mbp-js + prefers-reduced-motion isn't set.
   Fail-safe: if JS doesn't run, sections render visible by default. */
@media (prefers-reduced-motion: no-preference){
  html.mbp-js .mbp-fade-in{
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .5s ease, transform .5s ease;
  }
  html.mbp-js .mbp-fade-in.is-visible{
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   V5 — STEP CONFIGURATOR HERO (overrides relevant v4 styles)
   ============================================================================ */

/* Announcement bar */
.mbp-anno{
  position: relative;
  background: #0a0a0a;
  color: #fff;
}
.mbp-anno-edge{
  height: 4px;
  background: linear-gradient(90deg, #ff8a00 0%, #e91e63 25%, #9c27b0 50%, #3f51b5 75%, #00bcd4 100%);
}
.mbp-anno-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.mbp-anno-icon{ font-size: 14px; }

/* Hero override */
.mbp-hero{ padding: 32px 0; }
.mbp-hero-grid{
  align-items: start !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 48px !important;
}
@media (max-width: 980px){
  .mbp-hero-grid{ grid-template-columns: 1fr !important; gap: 24px !important; }
}

/* Promo card (left hero) */
.mbp-promo{ position: sticky; top: 80px; }
@media (max-width: 980px){ .mbp-promo{ position: static; } }
.mbp-promo-card{
  position: relative;
  border-radius: 24px;
  padding: 32px 28px 28px;
  min-height: 520px;
  background: linear-gradient(135deg, #ffe9f3 0%, #fff5e9 50%, #e9f5ff 100%);
  overflow: hidden;
  box-shadow: var(--mbp-shadow-md);
  display: flex;
  flex-direction: column;
}
.mbp-promo-edge{
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #ff8a00, #e91e63, #9c27b0, #3f51b5, #00bcd4);
}
.mbp-promo-instagram{ background: linear-gradient(135deg, #ffe2e2 0%, #fff0d6 50%, #f5e6ff 100%); }
.mbp-promo-tiktok{ background: linear-gradient(135deg, #ffe2f3 0%, #d6f0ff 50%, #e6fffb 100%); }
.mbp-promo-youtube{ background: linear-gradient(135deg, #ffd6d6 0%, #fff0f0 50%, #ffe6e6 100%); }
.mbp-promo-spotify{ background: linear-gradient(135deg, #d6ffd6 0%, #f0ffe6 50%, #e6ffe6 100%); }

.mbp-promo-tag-row{ display: flex; gap: 8px; margin-bottom: 18px; }
.mbp-promo-tag{
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.mbp-promo-tag-discount{
  background: linear-gradient(135deg, #ff8a00, #e91e63);
  color: #fff;
}
.mbp-promo-tag-limited{
  background: rgba(15,23,42,.85);
  color: #fff;
}
.mbp-promo-title{
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #0F172A;
}
.mbp-promo-title-strike{
  font-size: 70%;
  background: linear-gradient(135deg, #ff8a00, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mbp-promo-visual{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 12px 0;
}
.mbp-promo-platform-orb{
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.95), rgba(255,255,255,.4) 60%, transparent 70%);
  filter: blur(2px);
}
.mbp-promo-platform-icon{
  position: relative;
  font-size: 96px;
  width: 180px;
  height: 180px;
  border-radius: 36px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
}
.mbp-promo-tiktok .mbp-promo-platform-icon{ background: linear-gradient(135deg, #25f4ee, #000, #fe2c55); }
.mbp-promo-youtube .mbp-promo-platform-icon{ background: #ff0000; }
.mbp-promo-x   .mbp-promo-platform-icon,
.mbp-promo-twitter .mbp-promo-platform-icon{ background: #000; }
.mbp-promo-facebook .mbp-promo-platform-icon{ background: #1877f2; }
.mbp-promo-spotify .mbp-promo-platform-icon{ background: #1db954; }

.mbp-promo-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  align-self: flex-start;
  margin-top: 8px;
}
.mbp-promo-badge-no{
  background: linear-gradient(135deg, #c084fc, #f0abfc, #fda4af);
  color: #0a0a0a;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
}

/* Right config column */
.mbp-config{ display: flex; flex-direction: column; gap: 20px; }
.mbp-config-title{
  font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0;
  color: var(--mbp-ink);
  text-align: center;
}
.mbp-grad-text{
  background: linear-gradient(135deg, #ff8a00, #e91e63 50%, #9c27b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mbp-arrow-down{
  text-align: center;
  font-size: 22px;
  color: var(--mbp-muted);
  margin: -8px 0;
}

.mbp-viral-pill{
  display: block;
  text-align: center;
  background: rgba(34,197,94,.08);
  color: #15803D;
  border: 1.5px dashed rgba(34,197,94,.45);
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .02em;
}

.mbp-tp-mini{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 13px;
}
.mbp-tp-stars-mini{ gap: 2px; }
.mbp-tp-star-xs{ width: 22px; height: 22px; padding: 4px; border-radius: 3px; background: var(--tp-green); }
.mbp-tp-mini-info{
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 1px;
}
.mbp-tp-mini-rating strong{ font-size: 15px; color: var(--mbp-ink); font-weight: 700; }
.mbp-tp-mini-count{ color: var(--mbp-muted); font-size: 12px; }
.mbp-tp-mini-brand{
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  color: var(--mbp-ink);
  white-space: nowrap;
}

.mbp-tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.mbp-tag{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--mbp-ink-2);
}

/* Step container */
.mbp-step{
  background: #fff;
  border: 1.5px solid var(--mbp-border);
  border-radius: 18px;
  padding: 24px 22px 22px;
  position: relative;
  transition: border-color .15s, box-shadow .15s;
}
.mbp-step:hover{ border-color: rgba(124,58,237,.35); }
.mbp-step-num-pill{
  position: absolute;
  top: 18px;
  left: 22px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--mbp-accent-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.mbp-step-label{
  font-weight: 700;
  font-size: 16px;
  color: var(--mbp-ink);
  margin-left: 36px;
  margin-bottom: 14px;
}

/* Step 1: Username input */
.mbp-input-wrap{ position: relative; }
.mbp-input-icon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--mbp-muted);
  pointer-events: none;
}
.mbp-input-icon-padded{ padding-left: 38px !important; }
.mbp-help-toggle{ margin-top: 10px; }
.mbp-help-toggle summary{
  cursor: pointer;
  list-style: none;
  font-size: 13px;
  color: var(--mbp-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.mbp-help-toggle summary::before{
  content: "?";
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.mbp-help-toggle summary::-webkit-details-marker{ display: none; }
.mbp-help-toggle p{
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--mbp-ink-2);
  background: #F8FAFC;
  border-radius: 10px;
  padding: 10px 12px;
}

/* Input status indicator (loading spinner / check) */
.mbp-input-status{
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.mbp-input-status.is-loading::after{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #E5E7EB;
  border-top-color: #7C3AED;
  border-radius: 50%;
  animation: mbp-spin .7s linear infinite;
}
.mbp-input-status.is-ok::after{
  content: "✓";
  color: #fff;
  background: #22C55E;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.mbp-input-status.is-error::after{
  content: "!";
  color: #fff;
  background: #EF4444;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

/* IG profile preview card */
.mbp-ig-preview{
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #fff5f7 0%, #fff 50%, #f5f0ff 100%);
  border: 1.5px solid var(--mbp-border);
  border-radius: 14px;
  padding: 12px 14px;
  margin-top: 10px;
  position: relative;
  animation: mbp-ig-pop .25s cubic-bezier(.2,.7,.3,1.4);
}
@keyframes mbp-ig-pop{
  from { opacity: 0; transform: translateY(-4px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mbp-ig-preview-pic{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px transparent;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  flex-shrink: 0;
}
.mbp-ig-preview-info{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mbp-ig-preview-handle{
  font-weight: 700;
  font-size: 14px;
  color: var(--mbp-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mbp-ig-preview-name{
  font-size: 12.5px;
  color: var(--mbp-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mbp-ig-preview-badge{
  background: #3b82f6;
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}
.mbp-ig-preview-clear{
  background: transparent;
  border: 0;
  color: var(--mbp-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color .15s;
}
.mbp-ig-preview-clear:hover{ color: var(--mbp-ink); }

/* Step 2: Quantity grid */
.mbp-qty-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.mbp-qty-hidden{ display: none; }
.mbp-qty-grid.is-expanded .mbp-qty-hidden{ display: block; }
.mbp-qty-grid.is-expanded{ grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 480px){ .mbp-qty-grid.is-expanded{ grid-template-columns: 1fr 1fr; } }

.mbp-qty-card{
  position: relative;
  cursor: pointer;
  user-select: none;
  border: 1.5px solid var(--mbp-border);
  border-radius: 14px;
  padding: 14px 12px;
  background: #fff;
  transition: all .15s;
  text-align: center;
}
.mbp-qty-card:hover{ border-color: var(--mbp-ink-2); transform: translateY(-1px); }
.mbp-qty-input{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.mbp-qty-input:checked + .mbp-qty-card-inner{
  /* triggered via has() / parent label */
}
.mbp-qty-card:has(.mbp-qty-input:checked),
.mbp-qty-card.is-checked{
  border-color: #0F172A;
  background: #0F172A;
  box-shadow: 0 6px 18px rgba(15,23,42,.18);
}
.mbp-qty-card:has(.mbp-qty-input:checked) .mbp-qty-num,
.mbp-qty-card:has(.mbp-qty-input:checked) .mbp-qty-price,
.mbp-qty-card.is-checked .mbp-qty-num,
.mbp-qty-card.is-checked .mbp-qty-price{
  color: #fff;
}
.mbp-qty-card:has(.mbp-qty-input:checked) .mbp-qty-bonus,
.mbp-qty-card.is-checked .mbp-qty-bonus{
  color: #FCA5A5;
}
.mbp-qty-card-inner{ display: flex; flex-direction: column; gap: 4px; }
.mbp-qty-num{ font-size: 18px; font-weight: 700; color: var(--mbp-ink); letter-spacing: -.01em; }
.mbp-qty-price{ font-size: 13.5px; font-weight: 600; color: var(--mbp-ink-2); }
.mbp-qty-bonus{
  font-size: 11.5px;
  font-weight: 700;
  color: #15803D;
  background: rgba(34,197,94,.1);
  border-radius: 999px;
  padding: 3px 8px;
  margin-top: 4px;
  display: inline-block;
  align-self: center;
}
.mbp-qty-limited-badge{
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff8a00, #e91e63);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(233,30,99,.3);
  z-index: 2;
}
.mbp-qty-card:has(.mbp-qty-limited-badge){
  padding-top: 18px;
}

.mbp-show-more{
  width: 100%;
  margin-top: 10px;
  background: #0F172A;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: filter .15s;
}
.mbp-show-more:hover{ filter: brightness(1.15); }
.mbp-show-more-count{
  background: rgba(255,255,255,.18);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}
.mbp-show-more-icon{
  display: inline-block;
  transition: transform .2s;
  font-size: 13px;
}
.mbp-show-more.is-expanded .mbp-show-more-icon{ transform: rotate(180deg); }

/* Step 3: Nationality */
.mbp-target-stack{ display: flex; flex-direction: column; gap: 8px; }
.mbp-target-card{
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--mbp-border);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  transition: all .15s;
}
.mbp-target-card:hover{ border-color: var(--mbp-ink-2); }
.mbp-target-input{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
}
.mbp-target-card:has(.mbp-target-input:checked),
.mbp-target-card.is-checked{
  background: #0F172A;
  border-color: #0F172A;
}
.mbp-target-card:has(.mbp-target-input:checked) .mbp-target-name,
.mbp-target-card:has(.mbp-target-input:checked) .mbp-target-price,
.mbp-target-card.is-checked .mbp-target-name,
.mbp-target-card.is-checked .mbp-target-price{ color: #fff; }
.mbp-target-card:has(.mbp-target-input:checked) .mbp-target-sub,
.mbp-target-card.is-checked .mbp-target-sub{ color: rgba(255,255,255,.7); }
.mbp-target-card:has(.mbp-target-input:checked) .mbp-target-check,
.mbp-target-card.is-checked .mbp-target-check{ background: #22C55E; color: #fff; opacity: 1; transform: scale(1); }

.mbp-target-card-inner{
  display: flex;
  align-items: center;
  gap: 14px;
}
.mbp-target-flag{ font-size: 24px; line-height: 1; }
.mbp-target-info{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mbp-target-name{ font-weight: 700; font-size: 14.5px; color: var(--mbp-ink); }
.mbp-target-sub{ font-size: 12.5px; color: var(--mbp-muted); }
.mbp-target-price{ font-weight: 700; font-size: 14px; color: var(--mbp-ink); margin-right: 8px; }
.mbp-target-check{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: transparent;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .25;
  transition: all .15s;
  border: 1.5px solid rgba(255,255,255,.4);
  flex-shrink: 0;
}

/* Step 4: Delivery mode (uses target-card classes shared) */
.mbp-delivery-stack{ display: flex; flex-direction: column; gap: 8px; }
.mbp-delivery-card{
  position: relative;
  cursor: pointer;
  border: 1.5px solid var(--mbp-border);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  transition: all .15s;
}
.mbp-delivery-card:hover{ border-color: var(--mbp-ink-2); }
.mbp-delivery-input{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
}
.mbp-delivery-card:has(.mbp-delivery-input:checked),
.mbp-delivery-card.is-checked{
  background: #0F172A;
  border-color: #0F172A;
}
.mbp-delivery-card:has(.mbp-delivery-input:checked) .mbp-delivery-name,
.mbp-delivery-card.is-checked .mbp-delivery-name{ color: #fff; }
.mbp-delivery-card:has(.mbp-delivery-input:checked) .mbp-delivery-sub,
.mbp-delivery-card.is-checked .mbp-delivery-sub{ color: rgba(255,255,255,.7); }
.mbp-delivery-card:has(.mbp-delivery-input:checked) .mbp-target-check,
.mbp-delivery-card.is-checked .mbp-target-check{ background: #22C55E; color: #fff; opacity: 1; }
.mbp-delivery-card-inner{
  display: flex;
  align-items: center;
  gap: 14px;
}
.mbp-delivery-icon{ font-size: 22px; line-height: 1; }
.mbp-delivery-info{ flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mbp-delivery-name{ font-weight: 700; font-size: 14.5px; color: var(--mbp-ink); }
.mbp-delivery-sub{ font-size: 12.5px; color: var(--mbp-muted); }
.mbp-delivery-rec-badge{
  position: absolute;
  top: -10px;
  left: 16px;
  background: linear-gradient(135deg, #7C3AED, #EC4899);
  color: #fff;
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Coupon panel */
.mbp-coupon-panel{
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
  border: 1.5px dashed #fda4af;
  border-radius: 16px;
  padding: 18px 20px;
}
.mbp-coupon-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--mbp-ink);
}
.mbp-coupon-cta-text{
  color: var(--mbp-muted);
  font-weight: 500;
  font-size: 12px;
}
.mbp-coupon-stack{ display: flex; flex-direction: column; gap: 8px; }
.mbp-coupon-btn{
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1.5px solid var(--mbp-border);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all .15s;
  position: relative;
}
.mbp-coupon-btn:hover{ border-color: #fda4af; transform: translateY(-1px); }
.mbp-coupon-btn.is-applied{
  background: #ECFDF5;
  border-color: #22C55E;
  border-style: solid;
}
.mbp-coupon-pct{
  background: linear-gradient(135deg, #ff8a00, #e91e63);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}
.mbp-coupon-info{ flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mbp-coupon-code{ font-weight: 700; font-size: 13.5px; color: var(--mbp-ink); letter-spacing: .04em; }
.mbp-coupon-min{ font-size: 12px; color: var(--mbp-muted); }
.mbp-coupon-tick{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--mbp-border);
  color: var(--mbp-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  transition: all .15s;
}
.mbp-coupon-btn.is-applied .mbp-coupon-tick{
  background: #22C55E;
  color: #fff;
}

/* Per-unit price */
.mbp-perunit{
  text-align: center;
  font-size: 13.5px;
  color: var(--mbp-muted);
  font-weight: 500;
  min-height: 22px;
}
.mbp-perunit strong{ color: var(--mbp-ink); }

/* CTAs (override defaults) */
.mbp-cta-buynow{
  background: #0a0a0a !important;
  color: #fff !important;
  font-size: 15.5px !important;
  height: 60px !important;
  letter-spacing: -.005em;
  border-radius: 14px !important;
  position: relative;
}
.mbp-cta-buynow:hover{
  filter: brightness(1.15);
  box-shadow: 0 14px 28px rgba(0,0,0,.32) !important;
  transform: translateY(-1px);
}
.mbp-cta-buynow:disabled{
  opacity: .5;
  filter: grayscale(.4);
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.mbp-cta-buynow .mbp-cta-divider{
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,.25);
  display: inline-block;
}
.mbp-cta-buynow .mbp-cta-price{
  background: linear-gradient(135deg, #ff8a00 0%, #e91e63 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.mbp-cta-cart{
  width: 100%;
  height: 50px;
  font-size: 14px;
}

.mbp-disclaimer{
  text-align: center;
  font-size: 12px;
  color: var(--mbp-muted);
  margin: 0;
}

/* Hide v4 hero-card (we use mbp-config now) */
.mbp-hero-card{ display: none; }
.mbp-hero-visual{ display: none; }

/* ============================================================================
   PHASE 2 — AVATARS + STATS + URGENCY
   ============================================================================ */
.mbp-social-section{ padding: 56px 0; }
.mbp-social-title{
  text-align: center;
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  margin: 0 0 32px;
  letter-spacing: -.01em;
}
.mbp-avatars-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: var(--mbp-shadow-sm);
  max-width: 760px;
  margin: 0 auto;
}
.mbp-avatars-row{
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.mbp-avatar{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
.mbp-avatar-ring{
  position: absolute;
  top: -3px;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  z-index: 0;
}
.mbp-avatar-img{
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #fff;
  z-index: 1;
}
.mbp-avatar-name{
  font-weight: 600;
  font-size: 13px;
  color: var(--mbp-ink);
}
.mbp-avatars-divider{
  height: 1px;
  background: var(--mbp-border-2);
  margin: 24px 0 20px;
}
.mbp-stats-row{
  display: flex;
  justify-content: center;
  gap: 48px;
}
.mbp-stat{ text-align: center; }
.mbp-stat-num{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.mbp-stat-lbl{
  font-size: 11px;
  color: var(--mbp-muted);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mbp-urgency-section{
  padding: 64px 0;
  background: linear-gradient(180deg, #fff 0%, #fff5f7 50%, #f5f0ff 100%);
  border-top: 1px solid var(--mbp-border-2);
  border-bottom: 1px solid var(--mbp-border-2);
}
.mbp-urgency-head{ text-align: center; margin-bottom: 36px; }
.mbp-urgency-title{
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.mbp-urgency-sub{ color: var(--mbp-muted); margin: 0; font-size: 15px; }
.mbp-urgency-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.mbp-urgency-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.mbp-urgency-card:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); }
.mbp-urgency-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #0F172A;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.mbp-urgency-card h3{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--mbp-ink);
}
.mbp-urgency-card p{
  margin: 0;
  color: var(--mbp-ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}
.mbp-urgency-highlight{
  background: linear-gradient(135deg, #ff8a00, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.mbp-urgency-quote{
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 18px 24px;
  border-radius: 14px;
  font-size: 14.5px;
  font-weight: 500;
}

/* ============================================================================
   PHASE 3 — HOW IT WORKS / WHY MYBOOSTA
   ============================================================================ */
.mbp-howit-section{
  padding: 64px 0;
  background: linear-gradient(180deg, #fff 0%, #f5f7ff 100%);
}
.mbp-badge-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0a0a0a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.mbp-howit-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mbp-howit-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 24px 22px;
  text-align: center;
}
.mbp-howit-step{
  display: inline-block;
  background: #0a0a0a;
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.mbp-howit-step strong{
  background: linear-gradient(135deg, #c084fc, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mbp-howit-card p{ margin: 0; color: var(--mbp-ink-2); font-size: 14px; line-height: 1.55; }

.mbp-why2-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mbp-why2-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
}
.mbp-why2-icon{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #0a0a0a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.mbp-why2-card h3{ margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.mbp-why2-card p{ margin: 0; color: var(--mbp-muted); font-size: 13.5px; line-height: 1.55; }

/* ============================================================================
   PHASE 3 — CROSS-SELL TABS
   ============================================================================ */
.mbp-xsell-section{ padding: 64px 0; }
.mbp-xsell-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--mbp-muted);
  margin-top: 8px;
}
.mbp-platform-tabs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.mbp-platform-tab{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  color: var(--mbp-ink);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.mbp-platform-tab:hover{ border-color: var(--mbp-ink-2); }
.mbp-platform-tab.is-active{
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.mbp-platform-tab-icon{ font-size: 14px; }

.mbp-xsell-pane{ display: none; }
.mbp-xsell-pane.is-active{ display: block; }
.mbp-xsell-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.mbp-xsell-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 16px;
  position: relative;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  cursor: pointer;
}
.mbp-xsell-card:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); border-color: var(--mbp-accent-1); }

/* Overlay link covers the whole card. z-index 1 puts it above content. */
.mbp-xsell-card-link{
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-decoration: none;
  background: transparent;
}

/* All visual content sits BELOW the overlay link by default and ignores pointer events
   so clicks fall through to the link. */
.mbp-xsell-card .mbp-xsell-banner,
.mbp-xsell-card .mbp-xsell-name,
.mbp-xsell-card .mbp-xsell-price-row,
.mbp-xsell-card .mbp-xsell-orders,
.mbp-xsell-card .mbp-xsell-best{
  position: relative;
  z-index: 0;
  pointer-events: none;
}

/* The visible Order button stays interactive ON TOP of the overlay link. */
.mbp-xsell-card .mbp-xsell-cta{
  position: relative;
  z-index: 2;
}
.mbp-xsell-card-best{ border-color: #fbbf24; box-shadow: 0 4px 14px rgba(251,191,36,.15); }
.mbp-xsell-best{
  position: absolute;
  top: -10px;
  left: 14px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  z-index: 2;
}
.mbp-xsell-banner{
  position: relative;
  border-radius: 12px;
  padding: 32px 12px 12px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#ffe2e2 0%,#fff0d6 50%,#f5e6ff 100%);
  margin-bottom: 14px;
  overflow: hidden;
}
.mbp-xsell-banner-tag{
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff8a00, #e91e63);
  color: #fff;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}
.mbp-xsell-banner-icon{
  font-size: 56px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.18));
}
.mbp-xsell-name{
  margin: 0 0 8px;
  font-size: 13.5px;
  font-weight: 800;
  text-align: center;
  letter-spacing: .04em;
  color: var(--mbp-ink);
}
.mbp-xsell-price-row{
  text-align: center;
  margin-bottom: 8px;
}
.mbp-xsell-from{ display: block; font-size: 12px; color: var(--mbp-muted); }
.mbp-xsell-price{ font-size: 22px; font-weight: 800; letter-spacing: -.01em; }
.mbp-xsell-orders{
  text-align: center;
  font-size: 12px;
  color: var(--mbp-muted);
  margin-bottom: 12px;
}
.mbp-xsell-cta{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
  letter-spacing: .01em;
  position: relative;
  z-index: 2;
}
.mbp-btn-dark{
  background: #0a0a0a;
  color: #fff;
}
.mbp-btn-dark:hover{ filter: brightness(1.18); }

.mbp-trust-pills-row{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 18px;
  border: 1px solid var(--mbp-border-2);
}
.mbp-trust-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--mbp-ink-2);
  border: 1px solid var(--mbp-border);
}
.mbp-trust-pill strong{ color: var(--mbp-ink); }
.mbp-tp-dot-green{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22C55E;
  display: inline-block;
}

/* ============================================================================
   PHASE 3 — PRESS LOGOS
   ============================================================================ */
.mbp-press-section{ padding: 56px 0; text-align: center; }
.mbp-press-title{
  font-style: italic;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  background: linear-gradient(135deg, #c084fc, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 32px;
}
.mbp-press-row{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px 56px;
  margin-bottom: 24px;
}
.mbp-press-logo{
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mbp-press-yahoo{ font-family: -apple-system, sans-serif; }
.mbp-press-yahoo-text{ color: #6001d2; font-weight: 800; font-size: 28px; letter-spacing: -.04em; }
.mbp-press-yahoo-finance{ color: #6001d2; font-weight: 600; font-size: 14px; }
.mbp-press-apple{ font-size: 14px; line-height: 1; text-align: left; }
.mbp-press-apple-icon{ font-size: 28px; background: linear-gradient(135deg,#a855f7,#ec4899); width: 36px; height: 36px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; }
.mbp-press-apple-small{ font-size: 11px; color: var(--mbp-muted); }
.mbp-press-forbes{ font-family: 'Times New Roman', serif; font-style: italic; }
.mbp-press-parisien{ color: #d4145a; font-style: italic; border-bottom: 2px solid #d4145a; }
.mbp-press-clients{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--mbp-ink-2);
  margin: 0;
}
.mbp-press-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22C55E;
  animation: mbp-pulse 1.6s ease-out infinite;
  display: inline-block;
}

/* ============================================================================
   PHASE 4 — RESULTS SHOWCASE (PHONE MOCKUPS)
   ============================================================================ */
.mbp-results-section{
  padding: 64px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.mbp-phones-row{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.mbp-phone{
  position: relative;
  width: 240px;
  flex-shrink: 0;
}
.mbp-phone-center{ transform: translateY(-12px); width: 260px; z-index: 2; }
@media (max-width: 980px){
  .mbp-phone-center{ transform: none; }
}
.mbp-phone-result-pill{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--mbp-ink-2);
  margin: 0 auto 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: var(--mbp-shadow-sm);
}
.mbp-phone-result-pill span{
  font-weight: 800;
  background: linear-gradient(135deg, #ec4899, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mbp-phone-frame{
  background: #0a0a0a;
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  position: relative;
}
.mbp-phone-notch{
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 18px;
  background: #0a0a0a;
  border-radius: 999px;
  z-index: 3;
}
.mbp-phone-screen{
  background: #fff;
  border-radius: 24px;
  padding: 36px 12px 12px;
  height: 380px;
  overflow: hidden;
  font-size: 11px;
  color: #0a0a0a;
}
.mbp-phone-statusbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 6px;
  padding: 0 4px;
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
}
.mbp-phone-dots{ letter-spacing: 1px; font-size: 8px; }
.mbp-phone-app-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.mbp-phone-back{ font-size: 18px; }
.mbp-phone-title{ font-weight: 700; font-size: 12.5px; }
.mbp-phone-verified{ color: #fbbf24; font-size: 10px; }
.mbp-phone-menu{ font-size: 16px; }

.mbp-phone-profile{ display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.mbp-phone-avatar{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #c084fc;
}
.mbp-phone-stats{
  flex: 1;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.mbp-phone-stats div{ display: flex; flex-direction: column; gap: 1px; }
.mbp-phone-stats strong{ font-size: 13px; font-weight: 700; }
.mbp-phone-after-num{ font-size: 14px; }
.mbp-phone-stats span{ font-size: 9px; color: #64748b; }

.mbp-phone-name-row{ font-size: 11px; margin-bottom: 4px; }
.mbp-phone-desc{ color: #64748b; }
.mbp-phone-bio{
  font-size: 10px;
  line-height: 1.4;
  color: #475569;
  margin-bottom: 8px;
}
.mbp-phone-buttons{
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}
.mbp-phone-buttons button{
  flex: 1;
  height: 26px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #0a0a0a;
  cursor: default;
  font-family: inherit;
}
.mbp-phone-btn-follow{
  background: #3b82f6 !important;
  color: #fff !important;
  border-color: #3b82f6 !important;
}
.mbp-phone-tabs{
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 6px 0;
  margin-bottom: 6px;
  font-size: 14px;
  color: #cbd5e1;
}
.mbp-phone-tabs .is-active{ color: #0a0a0a; }
.mbp-phone-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mbp-phone-grid > span{
  display: block;
  aspect-ratio: 1;
  border-radius: 2px;
}
.mbp-phone-overlay{
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0a0a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(0,0,0,.3);
}
.mbp-phone-overlay strong{ font-weight: 700; }
.mbp-phone-arrow{ color: #94a3b8; }

.mbp-call-bar{
  margin: 56px auto 0;
  max-width: 480px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 13.5px;
  color: var(--mbp-ink-2);
  box-shadow: var(--mbp-shadow-sm);
}

/* ============================================================================
   PHASE 5 — FAQ + FINAL CTA
   ============================================================================ */
.mbp-faq-section{
  padding: 64px 0;
  background: linear-gradient(180deg, #fff 0%, #fff5f7 50%, #f5f0ff 100%);
}
.mbp-faq-stack{ max-width: 760px; margin: 0 auto 24px; }
.mbp-faq-section .mbp-faq-item{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.mbp-faq-section .mbp-faq-item[open]{
  border-color: var(--mbp-ink);
  box-shadow: var(--mbp-shadow-md);
}
.mbp-faq-section .mbp-faq-item summary{
  padding: 18px 56px 18px 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mbp-faq-section .mbp-faq-item summary::-webkit-details-marker{ display: none; }
.mbp-faq-icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #0a0a0a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.mbp-faq-q{
  font-weight: 700;
  font-size: 15px;
  color: var(--mbp-ink);
  flex: 1;
}
.mbp-faq-section .mbp-faq-item summary::after{
  content: "›";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 22px;
  color: var(--mbp-muted);
  transition: transform .2s;
}
.mbp-faq-section .mbp-faq-item[open] summary::after{ transform: translateY(-50%) rotate(-90deg); color: var(--mbp-ink); }
.mbp-faq-section .mbp-faq-item > p{
  margin: 0;
  padding: 0 18px 20px 66px;
  color: var(--mbp-ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.mbp-faq-cta-bar{
  background: #0a0a0a;
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  font-size: 14px;
  margin: 0 auto 24px;
  max-width: 760px;
}
.mbp-faq-order-btn{
  background: linear-gradient(135deg, #ff8a00, #e91e63, #c084fc);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto;
  max-width: 280px;
  font-weight: 700;
  letter-spacing: .04em;
}

.mbp-final-section{
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.mbp-final-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0a0a0a;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}
.mbp-final-title{
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.mbp-final-sub{
  color: var(--mbp-ink-2);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto 32px;
}
.mbp-final-cta{
  background: linear-gradient(135deg, #ff8a00, #e91e63 50%, #c084fc);
  color: #fff;
  padding: 0 36px;
  font-size: 16px;
  height: 60px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: .01em;
}

/* ============================================================================
   DARK FOOTER
   ============================================================================ */
.mbp-dark-footer{
  background: #0a0a0a;
  color: #d1d5db;
  padding: 56px 0 24px;
  margin-top: 0;
}
.mbp-df-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #1f2937;
}
.mbp-df-col h4{
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 16px;
}
.mbp-df-col ul{ list-style: none; padding: 0; margin: 0; }
.mbp-df-col li{ margin-bottom: 8px; }
.mbp-df-col a{
  color: #9ca3af;
  font-size: 13.5px;
  transition: color .15s;
}
.mbp-df-col a:hover{ color: #fff; }
.mbp-df-social{
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.mbp-df-social a{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #1f2937;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  transition: background .15s, color .15s;
}
.mbp-df-social a:hover{ background: #fff; color: #0a0a0a; }

.mbp-df-newsletter{
  background: linear-gradient(135deg, rgba(168,85,247,.1), rgba(236,72,153,.06));
  border: 1px solid rgba(168,85,247,.2);
  border-radius: 16px;
  padding: 22px;
}
.mbp-df-newsletter h4{
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 8px;
  text-transform: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mbp-df-exclusive{
  background: linear-gradient(135deg, #ec4899, #c084fc);
  color: #fff;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}
.mbp-df-newsletter p{
  margin: 0 0 14px;
  font-size: 13px;
  color: #9ca3af;
}
.mbp-df-form{ display: flex; gap: 8px; margin-bottom: 14px; }
.mbp-df-form input{
  flex: 1;
  height: 40px;
  padding: 0 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid #374151;
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
}
.mbp-df-form input::placeholder{ color: #6b7280; }
.mbp-df-form input:focus{ outline: 0; border-color: #c084fc; background: rgba(255,255,255,.08); }
.mbp-df-form button{
  height: 40px;
  padding: 0 18px;
  background: linear-gradient(135deg, #ec4899, #c084fc);
  color: #fff;
  border: 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.mbp-df-contact-row{
  font-size: 12.5px;
  color: #9ca3af;
  margin-bottom: 4px;
}
.mbp-df-contact-row a{ color: #9ca3af; }

.mbp-df-bottom{
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #6b7280;
}
.mbp-df-bottom-links{ display: flex; gap: 18px; }
.mbp-df-bottom-links a{ color: #6b7280; }
.mbp-df-bottom-links a:hover{ color: #fff; }
.mbp-df-heart{ color: #ec4899; }

/* ============================================================================
   STANDALONE TEMPLATES (page / archive / 404 / search / comments)
   ============================================================================ */
.mbp-pad-y{ padding: 56px 0 64px; }
.mbp-page-article,
.mbp-post{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 36px 36px 32px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--mbp-shadow-sm);
}
.mbp-page-head,
.mbp-archive-head{
  margin-bottom: 24px;
  text-align: center;
}
.mbp-page-title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--mbp-ink);
}
.mbp-page-content,
.mbp-post-content{
  font-size: 16px;
  line-height: 1.7;
  color: var(--mbp-ink-2);
}
.mbp-page-content > h2,
.mbp-post-content > h2{
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--mbp-ink);
}
.mbp-page-content > h3,
.mbp-post-content > h3{
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--mbp-ink);
}
.mbp-page-content a,
.mbp-post-content a{
  color: var(--mbp-accent-1);
  text-decoration: underline;
}
.mbp-page-content ul,
.mbp-page-content ol{ padding-left: 22px; }
.mbp-page-content li{ margin-bottom: 6px; }
.mbp-page-content blockquote{
  border-left: 3px solid var(--mbp-accent-1);
  padding: 4px 16px;
  margin: 16px 0;
  color: var(--mbp-ink-2);
  font-style: italic;
}
.mbp-post-meta{
  font-size: 13px;
  color: var(--mbp-muted);
  margin-top: 8px;
}

.mbp-archive-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.mbp-archive-item{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 22px 24px;
  transition: transform .15s, box-shadow .15s;
}
.mbp-archive-item:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); }
.mbp-archive-item-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.mbp-archive-item-title a{ color: var(--mbp-ink); }
.mbp-archive-item-excerpt{
  color: var(--mbp-ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.mbp-empty{
  text-align: center;
  padding: 80px 24px;
  color: var(--mbp-muted);
}
.mbp-empty h1, .mbp-empty h2{
  font-size: 24px;
  font-weight: 700;
  color: var(--mbp-ink);
  margin: 0 0 16px;
}

.mbp-404{
  text-align: center;
  padding: 80px 24px 100px;
}
.mbp-404-num{
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.mbp-404-title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.mbp-404-sub{
  color: var(--mbp-muted);
  font-size: 17px;
  margin: 0 0 32px;
}
.mbp-404-actions{
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.mbp-404-actions .mbp-btn{ padding: 0 24px; }

.mbp-comments{
  max-width: 820px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 28px 32px;
}
.mbp-comments-title{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.mbp-searchform{
  display: flex;
  gap: 8px;
  max-width: 480px;
}
.mbp-searchform input{ flex: 1; }

.mbp-archive-desc{
  color: var(--mbp-ink-2);
  font-size: 15.5px;
  margin-top: 8px;
}

/* WooCommerce shop archive — reset chrome for our wrapper */
.mbp-page .woocommerce-products-header__title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  margin-bottom: 24px;
  color: var(--mbp-ink);
}
.mbp-page .woocommerce-result-count{
  text-align: center;
  color: var(--mbp-muted);
  font-size: 13.5px;
  margin-bottom: 12px;
}
.mbp-page .woocommerce-ordering{
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.mbp-page ul.products{
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px){
  .mbp-page ul.products{ grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 480px){
  .mbp-page ul.products{ grid-template-columns: 1fr; }
}
.mbp-page ul.products li.product{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  list-style: none;
  margin: 0;
  width: auto !important;
  float: none !important;
}
.mbp-page ul.products li.product:hover{ box-shadow: var(--mbp-shadow-md); transform: translateY(-2px); }
.mbp-page ul.products li.product img{
  margin: 0 auto 12px;
  border-radius: 10px;
  max-width: 160px;
}
.mbp-page ul.products li.product .woocommerce-loop-product__title{
  font-size: 15px !important;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--mbp-ink);
}
.mbp-page ul.products li.product .price{
  font-size: 18px !important;
  font-weight: 700;
  color: var(--mbp-ink);
  margin-bottom: 12px;
}
.mbp-page ul.products li.product .button{
  display: inline-block;
  background: var(--mbp-accent-grad);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: filter .15s;
}
.mbp-page ul.products li.product .button:hover{ filter: brightness(1.1); }

/* WooCommerce cart + checkout pages */
.mbp-page .woocommerce table.shop_table{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}
.mbp-page .woocommerce table.shop_table th{
  background: #F8FAFC;
  font-weight: 700;
  color: var(--mbp-ink);
  font-size: 13px;
  letter-spacing: .04em;
}
.mbp-page .woocommerce-info,
.mbp-page .woocommerce-message{
  background: #fff;
  border-left: 4px solid var(--mbp-accent-1);
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: var(--mbp-shadow-sm);
  color: var(--mbp-ink-2);
}

/* ============================================================================
   FRONT PAGE
   ============================================================================ */
.mbp-fp-hero{
  padding: 56px 0 40px;
}
.mbp-fp-hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.mbp-fp-hero-text{ max-width: 540px; }
.mbp-fp-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  color: var(--mbp-ink-2);
  margin-bottom: 18px;
  font-weight: 500;
}
.mbp-fp-eyebrow-dot{
  width: 8px;
  height: 8px;
  background: #22C55E;
  border-radius: 999px;
  display: inline-block;
  position: relative;
}
.mbp-fp-eyebrow-dot::after{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: #22C55E;
  opacity: .35;
  animation: mbp-pulse 1.6s ease-out infinite;
}
.mbp-fp-title{
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: 0 0 18px;
  color: var(--mbp-ink);
}
.mbp-fp-sub{
  font-size: 17px;
  line-height: 1.55;
  color: var(--mbp-ink-2);
  margin: 0 0 28px;
}
.mbp-fp-cta-row{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.mbp-fp-cta{
  padding: 0 28px;
  height: 56px;
  font-size: 15.5px;
}
.mbp-fp-trust-mini{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--mbp-ink-2);
  flex-wrap: wrap;
}
.mbp-fp-trust-mini strong{ color: var(--mbp-ink); font-weight: 700; }

.mbp-fp-hero-visual{ display: flex; justify-content: center; }
.mbp-fp-hero-visual .mbp-dashboard{
  max-width: 420px;
  width: 100%;
}

/* Platforms grid */
.mbp-fp-platforms-section{ padding: 64px 0; }
.mbp-fp-platform-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mbp-fp-platform-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 18px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  overflow: hidden;
}
.mbp-fp-platform-card::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--platform-grad, var(--mbp-accent-grad));
}
.mbp-fp-platform-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--mbp-shadow-lg);
  border-color: transparent;
}
.mbp-fp-platform-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--platform-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.mbp-fp-platform-name{
  font-weight: 700;
  font-size: 18px;
  color: var(--mbp-ink);
  margin-bottom: 4px;
}
.mbp-fp-platform-price{
  font-size: 13.5px;
  color: var(--mbp-muted);
  margin-bottom: 14px;
}
.mbp-fp-platform-price strong{ color: var(--mbp-ink); font-weight: 700; }
.mbp-fp-platform-arrow{
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 18px;
  color: var(--mbp-muted);
  transition: transform .15s, color .15s;
}
.mbp-fp-platform-card:hover .mbp-fp-platform-arrow{
  transform: translateX(4px);
  color: var(--mbp-ink);
}

.mbp-fp-faq-more{
  margin: 24px auto 0;
  display: flex;
  max-width: 280px;
  justify-content: center;
}

/* ============================================================================
   ABOUT PAGE
   ============================================================================ */
.mbp-about-hero{ padding: 80px 0 40px; text-align: center; }
.mbp-about-head{
  max-width: 720px;
  margin: 0 auto;
}
.mbp-about-head .mbp-fp-title{ margin: 12px 0 18px; }
.mbp-about-head .mbp-fp-sub{ margin: 0 auto 12px; max-width: 600px; }
.mbp-about-head .mbp-fp-eyebrow{ margin-bottom: 0; }

.mbp-about-stats-section{ padding: 24px 0 40px; }
.mbp-about-stats-grid{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
  box-shadow: var(--mbp-shadow-sm);
}
.mbp-about-stat{ text-align: center; }
.mbp-about-stat-num{
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.mbp-about-stat-label{
  font-size: 12.5px;
  color: var(--mbp-muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.mbp-about-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mbp-about-card{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 18px;
  padding: 30px;
  transition: transform .15s, box-shadow .15s;
}
.mbp-about-card:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); }
.mbp-about-icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--mbp-accent-grad);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.mbp-about-card h3{ margin: 0 0 8px; font-size: 18px; font-weight: 700; }
.mbp-about-card p{ margin: 0; color: var(--mbp-ink-2); font-size: 14.5px; line-height: 1.6; }

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */
.mbp-contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.mbp-contact-channels,
.mbp-contact-form-wrap{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--mbp-shadow-sm);
}
.mbp-contact-h3{
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
}
.mbp-contact-channel{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--mbp-border-2);
}
.mbp-contact-channel:first-of-type{ border-top: 0; padding-top: 0; }
.mbp-contact-channel-icon{
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #F1F5F9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.mbp-contact-channel-label{
  font-size: 12px;
  color: var(--mbp-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 600;
}
.mbp-contact-channel-value{
  font-size: 14.5px;
  color: var(--mbp-ink);
  font-weight: 500;
  text-decoration: none;
}
.mbp-contact-channel-value:hover{ color: var(--mbp-accent-1); }

.mbp-contact-form{ display: flex; flex-direction: column; gap: 16px; }
.mbp-contact-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mbp-textarea{ height: auto !important; padding: 12px 16px !important; resize: vertical; min-height: 120px; }
.mbp-contact-success{
  background: #ECFDF5;
  border: 1px solid #22C55E;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.mbp-contact-success-icon{
  width: 36px;
  height: 36px;
  background: #22C55E;
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.mbp-contact-success strong{ display: block; font-size: 15px; color: var(--mbp-ink); }
.mbp-contact-success p{ margin: 4px 0 0; color: var(--mbp-ink-2); font-size: 13.5px; }
.mbp-contact-error{
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: #B91C1C;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 8px;
}

/* ============================================================================
   SHOP / ARCHIVE
   ============================================================================ */
.mbp-shop-hero{ padding: 64px 0 24px; text-align: center; }
.mbp-shop-tabs-section{ padding-top: 0; }
.mbp-shop-tabs{ margin-bottom: 32px; }
.mbp-shop-tabs a.mbp-platform-tab{
  text-decoration: none;
}
.mbp-shop-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 768px){ .mbp-shop-grid{ grid-template-columns: 1fr 1fr; gap: 14px; } }
@media (max-width: 480px){ .mbp-shop-grid{ grid-template-columns: 1fr; } }

/* ============================================================================
   STANDALONE TEMPLATES (page / archive / 404 / search / comments)
   ============================================================================ */
.mbp-pad-y{ padding: 56px 0 64px; }
.mbp-page-article,
.mbp-post{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 36px 36px 32px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--mbp-shadow-sm);
}
.mbp-page-head,
.mbp-archive-head{
  margin-bottom: 24px;
  text-align: center;
}
.mbp-page-title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--mbp-ink);
}
.mbp-page-content,
.mbp-post-content{
  font-size: 16px;
  line-height: 1.7;
  color: var(--mbp-ink-2);
}
.mbp-page-content > h2,
.mbp-post-content > h2{
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--mbp-ink);
}
.mbp-page-content > h3,
.mbp-post-content > h3{
  font-size: 18px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: var(--mbp-ink);
}
.mbp-page-content a,
.mbp-post-content a{
  color: var(--mbp-accent-1);
  text-decoration: underline;
}
.mbp-page-content ul,
.mbp-page-content ol{ padding-left: 22px; }
.mbp-page-content li{ margin-bottom: 6px; }
.mbp-page-content blockquote{
  border-left: 3px solid var(--mbp-accent-1);
  padding: 4px 16px;
  margin: 16px 0;
  color: var(--mbp-ink-2);
  font-style: italic;
}
.mbp-post-meta{
  font-size: 13px;
  color: var(--mbp-muted);
  margin-top: 8px;
}

.mbp-archive-list{
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.mbp-archive-item{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  padding: 22px 24px;
  transition: transform .15s, box-shadow .15s;
}
.mbp-archive-item:hover{ transform: translateY(-2px); box-shadow: var(--mbp-shadow-md); }
.mbp-archive-item-title{
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}
.mbp-archive-item-title a{ color: var(--mbp-ink); }
.mbp-archive-item-excerpt{
  color: var(--mbp-ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.mbp-empty{
  text-align: center;
  padding: 80px 24px;
  color: var(--mbp-muted);
}
.mbp-empty h1, .mbp-empty h2{
  font-size: 24px;
  font-weight: 700;
  color: var(--mbp-ink);
  margin: 0 0 16px;
}

.mbp-404{
  text-align: center;
  padding: 80px 24px 100px;
}
.mbp-404-num{
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.mbp-404-title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -.02em;
}
.mbp-404-sub{
  color: var(--mbp-muted);
  font-size: 17px;
  margin: 0 0 32px;
}
.mbp-404-actions{
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.mbp-404-actions .mbp-btn{ padding: 0 24px; }

.mbp-comments{
  max-width: 820px;
  margin: 32px auto 0;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 28px 32px;
}
.mbp-comments-title{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.mbp-searchform{
  display: flex;
  gap: 8px;
  max-width: 480px;
}
.mbp-searchform input{ flex: 1; }

.mbp-archive-desc{
  color: var(--mbp-ink-2);
  font-size: 15.5px;
  margin-top: 8px;
}

/* ============================================================================
   WOOCOMMERCE — CART + CHECKOUT polish (CSS-only, no template fork)
   ============================================================================ */
.woocommerce-cart .mbp-page,
.woocommerce-checkout .mbp-page,
.woocommerce-account .mbp-page{
  padding: 32px 0 80px;
}
.woocommerce-cart .mbp-page > .mbp-container,
.woocommerce-checkout .mbp-page > .mbp-container,
.woocommerce-account .mbp-page > .mbp-container{
  max-width: 1100px;
}

/* WC notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error{
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  margin-bottom: 20px;
  border-left: 4px solid var(--mbp-accent-1);
  box-shadow: var(--mbp-shadow-sm);
  list-style: none;
}
.woocommerce-error{ border-left-color: #EF4444; color: #B91C1C; }
.woocommerce-message{ border-left-color: #22C55E; }

/* Cart table */
.woocommerce-cart table.shop_table{
  background: #fff;
  border: 1px solid var(--mbp-border) !important;
  border-radius: 16px !important;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: var(--mbp-shadow-sm);
}
.woocommerce-cart table.shop_table th{
  background: #F8FAFC !important;
  color: var(--mbp-ink) !important;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 14px 16px !important;
  border-top: 0 !important;
  border-bottom: 1px solid var(--mbp-border) !important;
}
.woocommerce-cart table.shop_table td{
  padding: 16px !important;
  border-top: 1px solid var(--mbp-border-2) !important;
  vertical-align: middle;
}
.woocommerce-cart table.shop_table .product-thumbnail img{
  border-radius: 10px;
  max-width: 72px;
  height: auto;
}
.woocommerce-cart table.shop_table .product-name a{
  color: var(--mbp-ink);
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal{
  color: var(--mbp-ink);
  font-weight: 600;
}
.woocommerce-cart table.shop_table .product-quantity .qty{
  width: 80px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--mbp-border);
  text-align: center;
  font-weight: 600;
}
.woocommerce-cart table.shop_table .actions{
  background: #FAFBFC;
  padding: 16px !important;
}
.woocommerce-cart table.shop_table .actions input,
.woocommerce-cart table.shop_table .actions button{
  height: 44px;
  border-radius: 10px;
  font-family: inherit;
}
.woocommerce-cart table.shop_table .actions .button{
  background: #0a0a0a;
  color: #fff;
  border: 0;
  padding: 0 18px;
  font-weight: 600;
  cursor: pointer;
}
.woocommerce-cart table.shop_table .coupon{
  display: inline-flex;
  gap: 8px;
}
.woocommerce-cart table.shop_table .coupon input[type=text]{
  border: 1.5px solid var(--mbp-border);
  padding: 0 14px;
  min-width: 200px;
}

/* Cart totals */
.woocommerce-cart .cart_totals{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: var(--mbp-shadow-sm);
}
.woocommerce-cart .cart_totals h2{
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}
.woocommerce-cart .cart_totals table.shop_table{ box-shadow: none; border: 0 !important; }
.woocommerce-cart .cart_totals table.shop_table tr{ border-bottom: 1px solid var(--mbp-border-2); }
.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td{
  background: transparent !important;
  padding: 14px 0 !important;
  border: 0 !important;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}
.woocommerce-cart .cart_totals .order-total .amount{
  font-size: 22px;
  font-weight: 800;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button{
  background: var(--mbp-accent-grad) !important;
  color: #fff !important;
  height: 56px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(124,58,237,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Checkout */
.woocommerce-checkout form.checkout{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 980px){ .woocommerce-checkout form.checkout{ grid-template-columns: 1fr; } }

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review{
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--mbp-shadow-sm);
}
.woocommerce-checkout #customer_details{ grid-column: 1; }
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review{ grid-column: 2; }
.woocommerce-checkout #order_review_heading{ padding-bottom: 0; border-bottom: 0; border-radius: 16px 16px 0 0; margin-bottom: -1px; }
.woocommerce-checkout #order_review{ border-radius: 0 0 16px 16px; }

.woocommerce-checkout h3{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--mbp-ink);
}
.woocommerce-checkout .form-row{ margin-bottom: 14px; }
.woocommerce-checkout .form-row label{
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mbp-ink);
  margin-bottom: 6px;
  display: block;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-selection{
  height: 48px !important;
  border: 1.5px solid var(--mbp-border) !important;
  border-radius: 12px !important;
  padding: 0 14px !important;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--mbp-ink);
  background: #fff;
  width: 100%;
}
.woocommerce-checkout .form-row textarea{ height: auto !important; padding: 12px 14px !important; min-height: 90px; }
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus{
  outline: 0;
  border-color: var(--mbp-ink) !important;
  box-shadow: 0 0 0 4px rgba(15,23,42,.06);
}

.woocommerce-checkout #order_review .shop_table{
  background: transparent;
  border: 0;
  margin: 0;
}
.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td{
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--mbp-border-2);
  background: transparent !important;
  text-transform: none;
  letter-spacing: 0;
}
.woocommerce-checkout #order_review .order-total .amount{
  font-size: 22px;
  font-weight: 800;
}
.woocommerce-checkout #payment{
  background: transparent;
  margin-top: 20px;
}
.woocommerce-checkout #payment ul.payment_methods{
  background: #FAFBFC;
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid var(--mbp-border);
  list-style: none;
}
.woocommerce-checkout #payment ul.payment_methods li{ padding: 8px 0; }
.woocommerce-checkout #place_order{
  background: var(--mbp-accent-grad) !important;
  color: #fff !important;
  height: 56px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  width: 100%;
  margin-top: 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(124,58,237,.25);
  transition: filter .15s, transform .15s;
}
.woocommerce-checkout #place_order:hover{ filter: brightness(1.08); transform: translateY(-1px); }

/* Empty cart */
.cart-empty.woocommerce-info,
.return-to-shop .button{
  text-align: center;
}
.return-to-shop{ text-align: center; margin-top: 16px; }
.return-to-shop .button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mbp-accent-grad);
  color: #fff !important;
  height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

/* ============================================================================
   PHASE 2-5 RESPONSIVE
   ============================================================================ */
@media (max-width: 980px){
  .mbp-urgency-grid,
  .mbp-howit-grid,
  .mbp-why2-grid,
  .mbp-xsell-grid,
  .mbp-fp-platform-grid,
  .mbp-about-grid{ grid-template-columns: 1fr 1fr; gap: 16px; }
  .mbp-fp-hero-grid{ grid-template-columns: 1fr; gap: 40px; }
  .mbp-fp-hero-text{ max-width: 100%; text-align: center; margin: 0 auto; }
  .mbp-fp-cta-row{ justify-content: center; }
  .mbp-fp-trust-mini{ justify-content: center; }
  .mbp-about-stats-grid{ grid-template-columns: 1fr 1fr; }
  .mbp-contact-grid{ grid-template-columns: 1fr; }
  .mbp-phones-row{ gap: 36px; }
  .mbp-df-grid{ grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px){
  .mbp-stats-row{ gap: 24px; }
  .mbp-stat-num{ font-size: 22px; }
  .mbp-press-row{ gap: 20px 36px; }
  .mbp-press-logo{ font-size: 20px; }
  .mbp-final-title{ font-size: 32px; }
  .mbp-phone{ width: 220px; }
  .mbp-phone-screen{ height: 350px; }
  .mbp-faq-section .mbp-faq-item summary{ padding: 16px 50px 16px 14px; }
  .mbp-faq-icon{ width: 32px; height: 32px; font-size: 14px; }
  .mbp-faq-q{ font-size: 14px; }
}

/* Responsive */
@media (max-width: 640px){
  .mbp-anno-inner{ font-size: 12px; padding: 10px 16px; }
  .mbp-promo-card{ min-height: 360px; padding: 24px 20px 20px; border-radius: 18px; }
  .mbp-promo-platform-icon{ width: 130px; height: 130px; font-size: 70px; border-radius: 28px; }
  .mbp-promo-title{ font-size: 26px; }
  .mbp-step{ padding: 22px 18px 18px; border-radius: 14px; }
  .mbp-step-label{ margin-left: 36px; font-size: 15px; }
  .mbp-qty-grid{ grid-template-columns: 1fr 1fr; }
  .mbp-cta-buynow{ height: 56px !important; font-size: 14.5px !important; }
}

/* =====================================================================
   PHASE C — Conversion polish
   Trust badges, focus-visible, premium review hover, enter animations.
   Additive only. No layout structure changed.
   ===================================================================== */

/* --- Trust badges row under CTA -------------------------------------- */
.mbp-trust-badges{
  list-style: none;
  margin: 12px 0 4px;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(15,23,42,.03);
}
.mbp-trust-badges-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding: 8px 4px;
  text-align: center;
  color: var(--mbp-ink-2);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .1px;
  opacity: 0;
  transform: translateY(4px);
}
html.mbp-js .mbp-trust-badges-item{
  animation: mbpTrustEnter .45s cubic-bezier(.2,.7,.3,1) forwards;
}
.mbp-trust-badges-item:nth-child(1){ animation-delay: .05s; }
.mbp-trust-badges-item:nth-child(2){ animation-delay: .12s; }
.mbp-trust-badges-item:nth-child(3){ animation-delay: .19s; }
.mbp-trust-badges-item:nth-child(4){ animation-delay: .26s; }
@keyframes mbpTrustEnter{
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .mbp-trust-badges-item{ opacity: 1; transform: none; animation: none; }
}
.mbp-trust-badges-icon{
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--mbp-ink);
  stroke: currentColor;
}
.mbp-trust-badges-label{
  display: block;
  white-space: normal;
  word-break: keep-all;
}
@media (max-width: 640px){
  .mbp-trust-badges{
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 10px;
  }
  .mbp-trust-badges-item{
    padding: 8px 2px;
    font-size: 11px;
  }
  .mbp-trust-badges-icon{ width: 20px; height: 20px; }
}

/* --- Universal focus-visible ring (keyboard nav only, no mouse jump) -- */
.mbp-body :is(input, textarea, select):focus-visible,
.mbp-body button:focus-visible,
.mbp-body a:focus-visible{
  outline: 0;
  box-shadow: 0 0 0 3px rgba(124,58,237,.30);
  border-radius: 10px;
}
.mbp-body .mbp-input:focus-visible{
  border-color: var(--mbp-accent-1);
  box-shadow: 0 0 0 4px rgba(124,58,237,.18);
}
/* Hide native validation popups when JS validation is in charge.
   Kept :invalid styling for visual cue, but no browser tooltip fires
   because forms are now novalidate. */

/* --- Premium review card hover ------------------------------------- */
.mbp-tp-card{
  transition: transform .25s cubic-bezier(.2,.7,.3,1),
              box-shadow .25s cubic-bezier(.2,.7,.3,1),
              border-color .25s ease;
  will-change: transform;
}
.mbp-tp-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(15,23,42,.10);
  border-color: rgba(15,23,42,.10);
}

/* --- Stagger entrance for hero pills + reviews when JS is on -------- */
html.mbp-js .mbp-qty-card,
html.mbp-js .mbp-target-card,
html.mbp-js .mbp-tp-card{
  opacity: 0;
  transform: translateY(6px);
  animation: mbpEnter .5s cubic-bezier(.2,.7,.3,1) forwards;
}
html.mbp-js .mbp-qty-card:nth-child(1){ animation-delay: .04s; }
html.mbp-js .mbp-qty-card:nth-child(2){ animation-delay: .08s; }
html.mbp-js .mbp-qty-card:nth-child(3){ animation-delay: .12s; }
html.mbp-js .mbp-qty-card:nth-child(4){ animation-delay: .16s; }
html.mbp-js .mbp-qty-card:nth-child(5){ animation-delay: .20s; }
html.mbp-js .mbp-qty-card:nth-child(6){ animation-delay: .24s; }
html.mbp-js .mbp-qty-card:nth-child(7){ animation-delay: .28s; }
html.mbp-js .mbp-qty-card:nth-child(8){ animation-delay: .32s; }
html.mbp-js .mbp-target-card:nth-child(1){ animation-delay: .05s; }
html.mbp-js .mbp-target-card:nth-child(2){ animation-delay: .12s; }
html.mbp-js .mbp-target-card:nth-child(3){ animation-delay: .19s; }
html.mbp-js .mbp-tp-card:nth-child(1){ animation-delay: .08s; }
html.mbp-js .mbp-tp-card:nth-child(2){ animation-delay: .16s; }
html.mbp-js .mbp-tp-card:nth-child(3){ animation-delay: .24s; }
@keyframes mbpEnter{
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  html.mbp-js .mbp-qty-card,
  html.mbp-js .mbp-target-card,
  html.mbp-js .mbp-tp-card{
    opacity: 1; transform: none; animation: none;
  }
}

/* =====================================================================
   PHASE B — Cart drawer skeleton loader
   Appears only when AJAX exceeds 150 ms (set in animations.js).
   Pure CSS shimmer. Same layout footprint as a real item — no shift.
   ===================================================================== */
.mbp-skeleton{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}
.mbp-skel-block,
.mbp-skel-thumb,
.mbp-skel-line{
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg,
    rgba(15,23,42,.06) 0%,
    rgba(15,23,42,.10) 50%,
    rgba(15,23,42,.06) 100%);
  background-size: 200% 100%;
  animation: mbpSkelShimmer 1.4s linear infinite;
}
.mbp-skel-block.mbp-skel-offers{
  height: 64px;
  border-radius: 12px;
}
.mbp-skel-item{
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--mbp-border);
  border-radius: 12px;
  background: #fff;
}
.mbp-skel-thumb{
  width: 56px;
  height: 56px;
  border-radius: 10px;
  flex-shrink: 0;
}
.mbp-skel-lines{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.mbp-skel-line{
  height: 12px;
  border-radius: 6px;
}
.mbp-skel-w70{ width: 70%; }
.mbp-skel-w50{ width: 50%; }
.mbp-skel-w40{ width: 40%; }

@keyframes mbpSkelShimmer{
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (prefers-reduced-motion: reduce){
  .mbp-skel-block,
  .mbp-skel-thumb,
  .mbp-skel-line{
    animation: none;
    background: rgba(15,23,42,.08);
  }
}

/* While the skeleton is in place, dim the surrounding chrome a touch.
   Keeps the footer total visible (no layout shift) but visually
   subordinate so the eye reads "loading state". */
.mbp-drawer-body-skeleton{ background: var(--mbp-bg); }

/* =====================================================================
   PHASE-COMP-MIRROR — Section 1: announcement ticker + platform mega nav
   Appended; doesn't replace existing styles. Easy to roll back.
   ===================================================================== */

/* Announcement ticker — fixed-height container with 3 absolutely-positioned
   panels. Active panel is at translateY(0); off-stage panels at +/-100%.
   No layout shift across rotation. */
.mbp-anno{ overflow: hidden; }
.mbp-anno-track{
  position: relative;
  height: 40px;
  max-width: 1180px;
  margin: 0 auto;
}
.mbp-anno-panel{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.7,.3,1);
}
.mbp-anno-panel.is-active{
  opacity: 1;
  transform: translateY(0);
}
.mbp-anno-panel.is-leaving{
  opacity: 0;
  transform: translateY(-100%);
}
.mbp-anno-icon{ font-size: 15px; line-height: 1; }
.mbp-anno-tp-stars{ display: inline-flex; align-items: center; height: 16px; }
.mbp-anno-text{ display: inline-flex; align-items: center; gap: 6px; }
@media (prefers-reduced-motion: reduce){
  .mbp-anno-panel{ transition: opacity .15s linear; transform: none !important; }
}
@media (max-width: 480px){
  .mbp-anno-track{ height: 36px; }
  .mbp-anno-panel{ font-size: 12px; gap: 8px; padding: 0 12px; }
  .mbp-anno-tp-stars svg{ width: 80px; height: 14px; }
}

/* Logo lockup — icon + wordmark */
.mbp-logo{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.2px;
  color: var(--mbp-ink);
}
.mbp-logo-icon{ display: inline-flex; line-height: 0; }
.mbp-logo-text{ background: var(--mbp-accent-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Platform mega-menu — desktop hover, mobile collapse handled by existing
   mobile-menu toggle (which still hides .mbp-site-nav under 640px). */
.mbp-mega-list{
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mbp-mega-item{ position: relative; }
.mbp-mega-trigger{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--mbp-ink);
  font: inherit;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .15s, color .15s;
  -webkit-tap-highlight-color: transparent;
}
.mbp-mega-trigger:hover,
.mbp-mega-trigger[aria-expanded="true"]{
  background: rgba(15,23,42,.05);
}
.mbp-mega-icon{ display: inline-flex; line-height: 0; }
.mbp-mega-caret{
  display: inline-flex;
  color: var(--mbp-muted);
  transition: transform .2s;
}
.mbp-mega-trigger[aria-expanded="true"] .mbp-mega-caret{ transform: rotate(180deg); }

.mbp-mega-panel{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(15,23,42,.12);
  padding: 8px;
  z-index: 50;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.mbp-mega-panel:not([hidden]){
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mbp-mega-sublist{ margin: 0; padding: 0; list-style: none; }
.mbp-mega-link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--mbp-ink);
  text-decoration: none;
  transition: background .15s;
}
.mbp-mega-link:hover{ background: rgba(15,23,42,.04); }
.mbp-mega-link-dot{
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  flex-shrink: 0;
}
/* Service icon — bare glyph in the platform color, no tile background.
   Platform color is passed in via --mbp-svc-color. */
.mbp-mega-link-svc{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--mbp-svc-color, var(--mbp-ink));
  transition: transform .2s ease;
}
.mbp-mega-link:hover .mbp-mega-link-svc{
  transform: scale(1.1);
}
.mbp-mega-link-body{ display: flex; flex-direction: column; gap: 2px; }
.mbp-mega-link-title{ font-weight: 700; font-size: 14px; line-height: 1.2; }
.mbp-mega-link-sub{ font-size: 12px; color: var(--mbp-muted); line-height: 1.2; }
.mbp-mega-item--simple .mbp-mega-link-simple{
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--mbp-ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background .15s;
}
.mbp-mega-item--simple .mbp-mega-link-simple:hover{ background: rgba(15,23,42,.05); }

/* =====================================================================
   HEADER LAYOUT — desktop ≥1024 px / mobile <1024 px
   ===================================================================== */

/* Desktop (≥1024 px) — full nav, hamburger hidden, offcanvas hidden */
@media (min-width: 1024px){
  .mbp-site-header-inner{ height: 72px; gap: 32px; }
  .mbp-logo{ font-size: 21px; }
  .mbp-logo-icon svg{ width: 26px; height: 26px; }
  .mbp-mega-trigger{ padding: 10px 14px; font-size: 14.5px; }
  .mbp-mega-list{ gap: 6px; }
  .mbp-cart-trigger{ height: 42px; }
  .mbp-mobile-menu-toggle{ display: none !important; }
  .mbp-offcanvas{ display: none !important; }
}

/* Mobile (<1024 px) — 3-column header: hamburger | logo | cart
   Desktop .mbp-site-nav is FULLY hidden (no off-screen tricks). The
   offcanvas panel below handles all mobile navigation. */
@media (max-width: 1023px){
  .mbp-site-header-inner{
    height: 60px;
    display: grid !important;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 8px;
    justify-items: center;
  }
  .mbp-site-header-inner > .mbp-mobile-menu-toggle{ justify-self: start; }
  .mbp-site-header-inner > .mbp-cart-trigger{ justify-self: end; }
  .mbp-site-header-inner > .mbp-logo{ justify-self: center; }

  /* Desktop nav fully out of the mobile flow */
  .mbp-site-header .mbp-site-nav{ display: none !important; }

  /* Logo */
  .mbp-logo{ font-size: 18px; gap: 6px; }
  .mbp-logo-icon svg{ width: 22px; height: 22px; }

  /* Hamburger — flat icon, no border, no chrome */
  .mbp-mobile-menu-toggle{
    display: inline-flex !important;
    width: 36px;
    height: 36px;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0;
    margin: 0;
  }
  .mbp-mobile-menu-bar{ width: 20px; }

  /* Compact cart pill on mobile */
  .mbp-cart-trigger{ height: 36px; padding: 0 10px; gap: 6px; }
}

/* =====================================================================
   OFFCANVAS — left-side drawer for mobile primary nav.
   Slides in from the LEFT. Overlay dims the page. Sticky bottom CTA.
   ===================================================================== */
.mbp-offcanvas{
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}
.mbp-offcanvas[hidden]{ display: block !important; visibility: hidden; }
.mbp-offcanvas.is-open{ pointer-events: auto; visibility: visible; }
.mbp-offcanvas-overlay{
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.45);
  opacity: 0;
  transition: opacity .28s ease;
}
.mbp-offcanvas.is-open .mbp-offcanvas-overlay{ opacity: 1; }
.mbp-offcanvas-panel{
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: min(86vw, 380px);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 32px rgba(15,23,42,.18);
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  overflow: hidden;
}
.mbp-offcanvas.is-open .mbp-offcanvas-panel{ transform: translateX(0); }
@media (prefers-reduced-motion: reduce){
  .mbp-offcanvas-overlay,
  .mbp-offcanvas-panel{ transition: none; }
}

/* Offcanvas header — close × | logo | cart */
.mbp-offcanvas-head{
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  align-items: center;
  justify-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid var(--mbp-border-2);
  flex-shrink: 0;
}
.mbp-offcanvas-head > .mbp-offcanvas-close{ justify-self: start; }
.mbp-offcanvas-head > .mbp-cart-trigger{ justify-self: end; }
.mbp-offcanvas-close{
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--mbp-ink);
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .15s, transform .12s;
}
.mbp-offcanvas-close:hover{ opacity: .9; }
.mbp-offcanvas-close:active{ transform: scale(.94); }

/* Offcanvas body — accordion list */
.mbp-offcanvas-body{
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
  -webkit-overflow-scrolling: touch;
}
.mbp-oc-list{ list-style: none; margin: 0; padding: 0; }
.mbp-oc-item{ border-bottom: 1px solid var(--mbp-border-2); }
.mbp-oc-trigger{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--mbp-ink);
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}
.mbp-oc-icon{ display: inline-flex; line-height: 0; }
.mbp-oc-label{ flex: 1; }
.mbp-oc-caret{
  display: inline-flex;
  color: var(--mbp-muted);
  transition: transform .2s;
}
.mbp-oc-trigger[aria-expanded="true"] .mbp-oc-caret{ transform: rotate(180deg); }

.mbp-oc-sublist{ list-style: none; margin: 0; padding: 0 8px 12px 50px; }
.mbp-oc-sublist[hidden]{ display: none; }
.mbp-oc-link{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 10px;
  color: var(--mbp-ink);
  text-decoration: none;
  transition: background .15s;
}
.mbp-oc-link:hover{ background: rgba(15,23,42,.04); }
.mbp-oc-link-svc{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--mbp-svc-color, var(--mbp-ink));
}
.mbp-oc-link-body{ display: flex; flex-direction: column; gap: 2px; }
.mbp-oc-link-title{ font-weight: 600; font-size: 14px; line-height: 1.2; }
.mbp-oc-link-sub{ font-size: 12px; color: var(--mbp-muted); line-height: 1.2; }

.mbp-oc-item--simple .mbp-oc-simple-link{
  display: flex;
  width: 100%;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--mbp-ink);
  text-decoration: none;
  background: #fafafa;
}

/* Offcanvas footer — sticky View Cart CTA */
.mbp-offcanvas-foot{
  border-top: 1px solid var(--mbp-border-2);
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  background: #fff;
  flex-shrink: 0;
}
.mbp-oc-cart-cta{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: var(--mbp-ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  text-decoration: none;
  transition: opacity .15s, transform .12s;
}
.mbp-oc-cart-cta:hover{ opacity: .92; }
.mbp-oc-cart-cta:active{ transform: scale(.98); }
.mbp-oc-cart-count{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  margin-left: 10px;
  background: rgba(255,255,255,.18);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

/* Lock page scroll when drawer open */
body.mbp-no-scroll{ overflow: hidden; }

/* =====================================================================
   PHASE-COMP-MIRROR — Section 4: platform showcase row
   "All your favorite platforms. One place." + 6 icons + 2 CTAs.
   Pure CSS. Reuses existing button + gradient tokens.
   ===================================================================== */

/* Generic gradient-text utility (reusable across the site) */
.mbp-grad{
  background: var(--mbp-accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.mbp-fp-showcase{
  padding: 64px 0;
  background: var(--mbp-bg);
}
.mbp-fp-showcase .mbp-container{
  max-width: 1080px;
  text-align: center;
}

/* Eyebrow pill — small SVG icon + label, no emoji */
.mbp-fp-showcase-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mbp-ink-2);
  letter-spacing: .1px;
  margin: 0 auto 18px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mbp-fp-showcase-eyebrow-icon{
  flex-shrink: 0;
  color: var(--mbp-accent-1);
}

.mbp-fp-showcase-title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--mbp-ink);
  margin: 0 0 10px;
}
.mbp-fp-showcase-sub{
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--mbp-muted);
  margin: 0 auto 36px;
  max-width: 540px;
  line-height: 1.5;
}

/* Icon grid — 6 columns desktop, 2 columns × 3 rows mobile */
.mbp-fp-showcase-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}
.mbp-fp-showcase-item{ display: flex; }
.mbp-fp-showcase-tile{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 22px 12px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  color: var(--mbp-ink);
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.mbp-fp-showcase-tile:hover{
  transform: scale(1.06);
  opacity: .92;
  border-color: rgba(15,23,42,.18);
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.mbp-fp-showcase-tile:active{
  transform: scale(.98);
}
.mbp-fp-showcase-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.mbp-fp-showcase-name{
  font-size: 14px;
  font-weight: 600;
  color: var(--mbp-ink-2);
  letter-spacing: .1px;
}

/* CTAs row */
.mbp-fp-showcase-ctas{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.mbp-fp-showcase-cta{
  height: 50px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1px;
}

/* Subtle stagger entrance — gated on html.mbp-js to avoid FOUC */
html.mbp-js .mbp-fp-showcase-item{
  opacity: 0;
  transform: translateY(8px);
  animation: mbpShowcaseEnter .5s cubic-bezier(.2,.7,.3,1) forwards;
}
html.mbp-js .mbp-fp-showcase-item:nth-child(1){ animation-delay: .04s; }
html.mbp-js .mbp-fp-showcase-item:nth-child(2){ animation-delay: .10s; }
html.mbp-js .mbp-fp-showcase-item:nth-child(3){ animation-delay: .16s; }
html.mbp-js .mbp-fp-showcase-item:nth-child(4){ animation-delay: .22s; }
html.mbp-js .mbp-fp-showcase-item:nth-child(5){ animation-delay: .28s; }
html.mbp-js .mbp-fp-showcase-item:nth-child(6){ animation-delay: .34s; }
@keyframes mbpShowcaseEnter{
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  html.mbp-js .mbp-fp-showcase-item{
    opacity: 1; transform: none; animation: none;
  }
  .mbp-fp-showcase-tile{ transition: none; }
}

/* Mobile — 2 columns × 3 rows (per spec) */
@media (max-width: 720px){
  .mbp-fp-showcase{ padding: 48px 0; }
  .mbp-fp-showcase-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
  }
  .mbp-fp-showcase-tile{
    padding: 20px 8px;
    gap: 8px;
    border-radius: 14px;
  }
  .mbp-fp-showcase-icon svg{ width: 30px; height: 30px; }
  .mbp-fp-showcase-name{ font-size: 13px; }
  .mbp-fp-showcase-ctas{ flex-direction: column; width: 100%; }
  .mbp-fp-showcase-cta{ width: 100%; }
}

/* =====================================================================
   PHASE-COMP-MIRROR — Section 5: trust + features (cloud + secure card)
   Pure CSS. Pills with deterministic organic offsets, security card
   with gradient accent strip + checklist.
   ===================================================================== */

.mbp-fp-trust{
  padding: 64px 0;
  background: #fff;
}
.mbp-fp-trust .mbp-container{
  max-width: 1080px;
  text-align: center;
}

/* Eyebrow — same pill pattern as Section 4 */
.mbp-fp-trust-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--mbp-bg);
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mbp-ink-2);
  letter-spacing: .1px;
  margin: 0 auto 18px;
}
.mbp-fp-trust-eyebrow-icon{ flex-shrink: 0; color: var(--mbp-accent-1); }

.mbp-fp-trust-title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--mbp-ink);
  margin: 0 0 10px;
}
.mbp-fp-trust-sub{
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--mbp-muted);
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.5;
}

/* Two-column grid — desktop ≥880 px, stacked below */
.mbp-fp-trust-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  text-align: left;
}
@media (max-width: 879px){
  .mbp-fp-trust-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* === Feature cloud (LEFT) ============================================ */
.mbp-fp-cloud{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 24px 8px;
  min-height: 200px;
  align-items: center;
}
.mbp-fp-cloud-pill{
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: .1px;
  white-space: nowrap;
  cursor: default;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, border-color .25s ease;
  -webkit-tap-highlight-color: transparent;
}

/* Pill style variants */
.mbp-fp-cloud-pill--white{
  background: #fff;
  border: 1px solid var(--mbp-border);
  color: var(--mbp-ink);
}
.mbp-fp-cloud-pill--dark{
  background: var(--mbp-ink);
  border: 1px solid var(--mbp-ink);
  color: #fff;
}
.mbp-fp-cloud-pill--outline{
  background: #fff;
  color: var(--mbp-ink);
  position: relative;
  border: 1px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    var(--mbp-accent-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.mbp-fp-cloud-pill--tint-purple{
  background: rgba(124,58,237,.10);
  border: 1px solid rgba(124,58,237,.18);
  color: #5B21B6;
}
.mbp-fp-cloud-pill--tint-pink{
  background: rgba(236,72,153,.10);
  border: 1px solid rgba(236,72,153,.20);
  color: #9D174D;
}
.mbp-fp-cloud-pill--dashed{
  background: #fff;
  border: 1.5px dashed var(--mbp-border);
  color: var(--mbp-ink-2);
}

/* Deterministic organic offsets — desktop only */
@media (min-width: 880px){
  .mbp-fp-cloud-pill:nth-child(1){ transform: translateY(-6px) rotate(-1deg); }
  .mbp-fp-cloud-pill:nth-child(2){ transform: translateY(8px)  rotate(1deg); }
  .mbp-fp-cloud-pill:nth-child(3){ transform: translateY(-4px) rotate(-.5deg); }
  .mbp-fp-cloud-pill:nth-child(4){ transform: translateY(12px) rotate(.5deg); }
  .mbp-fp-cloud-pill:nth-child(5){ transform: translateY(-10px) rotate(-1deg); }
  .mbp-fp-cloud-pill:nth-child(6){ transform: translateY(4px)  rotate(1deg); }
  .mbp-fp-cloud-pill:hover{
    transform: translateY(0) rotate(0) scale(1.06);
    box-shadow: 0 8px 24px rgba(15,23,42,.10);
  }
  .mbp-fp-cloud-pill--dark:hover{
    box-shadow: 0 8px 24px rgba(15,23,42,.25);
  }
}

/* Mobile — flat layout, no rotations */
@media (max-width: 879px){
  .mbp-fp-cloud{ padding: 8px; min-height: 0; gap: 10px; }
  .mbp-fp-cloud-pill{
    transform: none !important;
    padding: 9px 14px;
    font-size: 13.5px;
  }
}

/* === Security card (RIGHT) =========================================== */
.mbp-fp-secure{
  position: relative;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 18px;
  padding: 28px 28px 26px;
  box-shadow: 0 8px 24px rgba(15,23,42,.06);
  overflow: hidden;
}
.mbp-fp-secure::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--mbp-accent-grad);
}
.mbp-fp-secure-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--mbp-muted);
  margin: 0 0 12px;
}
.mbp-fp-secure-eyebrow-icon{ flex-shrink: 0; }
.mbp-fp-secure-title{
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: var(--mbp-ink);
  margin: 0 0 6px;
}
.mbp-fp-secure-sub{
  font-size: 14.5px;
  color: var(--mbp-muted);
  margin: 0 0 18px;
}
.mbp-fp-secure-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mbp-fp-secure-item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--mbp-ink);
  line-height: 1.3;
}
.mbp-fp-secure-check{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(124,58,237,.12);
  color: var(--mbp-accent-1);
  flex-shrink: 0;
}

/* Subtle stagger entrance for secure-card items only.
   Cloud pills are NOT animated on entry — their nth-child translateY/rotate
   organic offsets must be visible from first paint, and an animation that
   resolves to translateY(0) would overwrite them. Pills get an opacity-only
   fade via the parent container instead. */
html.mbp-js .mbp-fp-cloud{
  opacity: 0;
  animation: mbpCloudFade .6s ease forwards;
  animation-delay: .08s;
}
@keyframes mbpCloudFade{
  to{ opacity: 1; }
}

html.mbp-js .mbp-fp-secure-item{
  opacity: 0;
  transform: translateY(6px);
  animation: mbpSecureEnter .5s cubic-bezier(.2,.7,.3,1) forwards;
}
html.mbp-js .mbp-fp-secure-item:nth-child(1){ animation-delay: .12s; }
html.mbp-js .mbp-fp-secure-item:nth-child(2){ animation-delay: .18s; }
html.mbp-js .mbp-fp-secure-item:nth-child(3){ animation-delay: .24s; }
html.mbp-js .mbp-fp-secure-item:nth-child(4){ animation-delay: .30s; }
@keyframes mbpSecureEnter{
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  html.mbp-js .mbp-fp-cloud,
  html.mbp-js .mbp-fp-secure-item{
    opacity: 1; transform: none; animation: none;
  }
  .mbp-fp-cloud-pill,
  .mbp-fp-cloud-pill:hover{
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 879px){
  .mbp-fp-trust{ padding: 48px 0; }
  .mbp-fp-secure{ padding: 24px 22px 22px; border-radius: 16px; }
}

/* =====================================================================
   PHASE-COMP-MIRROR — Section 6: live stats grid (REVISED)
   Card 1: counter + line chart + period filter buttons + LIVE pill
   Card 2: progress bars without % labels, plus quantity copy
   Card 3: photo avatars with infinite vertical auto-scroll
   ===================================================================== */

.mbp-fp-live{
  padding: 64px 0;
  background: var(--mbp-bg);
}
.mbp-fp-live .mbp-container{
  max-width: 1180px;
  text-align: center;
}

.mbp-fp-live-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mbp-ink-2);
  letter-spacing: .1px;
  margin: 0 auto 18px;
}
.mbp-fp-live-eyebrow-icon{ flex-shrink: 0; color: var(--mbp-accent-1); }

.mbp-fp-live-title{
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--mbp-ink);
  margin: 0 0 10px;
}
.mbp-fp-live-sub{
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--mbp-muted);
  margin: 0 auto 36px;
  max-width: 560px;
  line-height: 1.5;
}

.mbp-fp-live-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  text-align: left;
  align-items: stretch;     /* all 3 cards same height; Card 1 expands chart + bottom-anchors LIVE pill */
}
@media (max-width: 980px){
  .mbp-fp-live-grid{ grid-template-columns: 1fr; gap: 16px; }
}

.mbp-fp-live-card{
  position: relative;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  display: flex;
  flex-direction: column;
  /* All 3 cards align to the same height (set by Card 3's fixed
     trust-viewport at 280 px + title/sub/padding ≈ 380 px). Card 1
     uses flex-grow on the chart + margin-top:auto on LIVE so it
     fills naturally; Card 2 distributes its 3 bars across the height. */
}

.mbp-fp-live-card-title{
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--mbp-ink);
  margin: 0;
  line-height: 1.2;
}
.mbp-fp-live-card-sub{
  font-size: 14px;
  color: var(--mbp-muted);
  margin: 0;
}
.mbp-fp-live-card-sub--top{
  margin: 4px 0 18px;
}

/* === Card 1 — Counter + chart + period filter ====================== */
.mbp-fp-live-card--counter{
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(168,85,247,.08), rgba(255,255,255,0) 60%),
    radial-gradient(120% 80% at 100% 100%, rgba(236,72,153,.06), rgba(255,255,255,0) 60%),
    #fff;
}
/* Card 1 — myboost-style stack: small grey label on top, large number
   inline with "Followers" word, chart that grows to absorb extra height,
   buttons, then LIVE pill anchored to bottom via margin-top:auto. */
.mbp-fp-live-counter-sub{
  font-size: 13px;
  color: var(--mbp-muted);
  margin: 0 0 8px;
}
.mbp-fp-live-counter-row{
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.mbp-fp-live-counter-num{
  font-size: clamp(40px, 5.5vw, 56px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1;
  color: var(--mbp-ink);
  font-variant-numeric: tabular-nums;
  transition: opacity .25s ease, transform .25s ease;
}
.mbp-fp-live-counter-num.is-flipping{
  opacity: 0;
  transform: translateY(8px);
}
.mbp-fp-live-counter-label{
  font-size: 17px;
  font-weight: 700;
  color: var(--mbp-ink);
  line-height: 1;
}

.mbp-fp-live-chart{
  position: relative;
  width: 100%;
  flex: 1;                     /* absorbs extra vertical space when card stretches */
  min-height: 80px;
  margin: 14px 0 14px;
}
.mbp-fp-live-chart svg{
  width: 100%;
  height: 100%;
  display: block;
}
.mbp-fp-live-chart path[data-mbp-chart-line]{
  transition: d .6s cubic-bezier(.2,.7,.3,1), stroke-width .2s ease;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
}
.mbp-fp-live-chart path[data-mbp-chart-fill]{
  transition: d .6s cubic-bezier(.2,.7,.3,1), opacity .25s ease;
}

/* Period filter buttons */
.mbp-fp-live-periods{
  display: flex;
  gap: 6px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.mbp-fp-live-period{
  appearance: none;
  border: 1px solid var(--mbp-border);
  background: #fff;
  color: var(--mbp-ink-2);
  font: inherit;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .3px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s;
  -webkit-tap-highlight-color: transparent;
}
.mbp-fp-live-period:hover{
  border-color: var(--mbp-ink);
  color: var(--mbp-ink);
}
.mbp-fp-live-period:active{ transform: scale(.96); }
.mbp-fp-live-period.is-active{
  background: var(--mbp-ink);
  color: #fff;
  border-color: var(--mbp-ink);
}

/* LIVE pill */
.mbp-fp-live-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34,197,94,.10);
  color: #15803D;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  align-self: flex-start;
  /* The chart absorbs extra vertical space (flex: 1), so the LIVE pill
     can anchor to the bottom of the card without leaving empty space
     above. All 3 cards now share the same height via the grid stretch. */
  margin-top: auto;
}
.mbp-fp-live-dot{
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: mbpLivePulse 1.6s ease-out infinite;
}
@keyframes mbpLivePulse{
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* === Card 2 — Live deliveries (no percent labels) =================== */
.mbp-fp-live-card--bars{
  background:
    radial-gradient(110% 70% at 100% 0%, rgba(236,72,153,.05), rgba(255,255,255,0) 60%),
    #fff;
}
.mbp-fp-live-bars{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mbp-fp-live-bar-row{ display: flex; flex-direction: column; gap: 10px; }
.mbp-fp-live-bar-head{
  display: flex;
  align-items: center;
  gap: 10px;
}
.mbp-fp-live-bar-label{
  flex: 1;
  min-width: 0;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--mbp-ink);
  line-height: 1.25;
}
.mbp-fp-live-bar-bubble{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--mbp-accent-grad);
  color: #fff;
}
.mbp-fp-live-bar-track{
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
  overflow: hidden;
}
.mbp-fp-live-bar-fill{
  display: block;
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #FF6B9D 0%, #A855F7 50%, #3B82F6 100%);
  transition: width 1.0s cubic-bezier(.2,.7,.3,1);
}
.mbp-fp-live-bar-status{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mbp-muted);
  font-style: italic;
}
.mbp-fp-live-bar-status::before{
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #22C55E;
  margin-right: 2px;
  animation: mbpLivePulse 1.6s ease-out infinite;
}

/* === Card 3 — Trusted by (auto-scroll photo list) =================== */
.mbp-fp-live-card--trust{
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 100% 100%, rgba(124,58,237,.06), rgba(255,255,255,0) 60%),
    #fff;
}
.mbp-fp-live-trust-viewport{
  position: relative;
  height: 280px;          /* fixed — caps Card 3 height; track scrolls inside */
  overflow: hidden;
  margin-top: 4px;
  /* Wider top + bottom fade zones so the loop seam is hidden inside the
     fade-out edge instead of being visible mid-card. */
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}
.mbp-fp-live-trust-track{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: mbpTrustScroll 30s linear infinite;
}
.mbp-fp-live-card--trust:hover .mbp-fp-live-trust-track{
  animation-play-state: paused;
}
@keyframes mbpTrustScroll{
  0%   { transform: translateY(0); }
  /* The list is rendered twice in DOM. translateY(-50%) shifts exactly
     one full set up — the second set seamlessly slides into view, then
     the animation snaps back to 0 (which is identical visually to -50%
     because the markup is duplicated). */
  100% { transform: translateY(-50%); }
}
.mbp-fp-live-person{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}
.mbp-fp-live-avatar-img{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--mbp-bg);
  display: block;
}
.mbp-fp-live-person-body{
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.mbp-fp-live-person-name{
  font-weight: 700;
  font-size: 14px;
  color: var(--mbp-ink);
  line-height: 1.2;
}
.mbp-fp-live-person-role{
  font-size: 12px;
  color: var(--mbp-muted);
  line-height: 1.2;
}
.mbp-fp-live-person-delta{
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF6B9D 0%, #A855F7 50%, #3B82F6 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .3px;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 12px rgba(168,85,247,.25);
}

/* Mobile tweaks */
@media (max-width: 980px){
  .mbp-fp-live{ padding: 48px 0; }
  .mbp-fp-live-card{ padding: 24px; min-height: 0; }
  .mbp-fp-live-card--trust .mbp-fp-live-trust-viewport{ max-height: 360px; }
}
@media (max-width: 480px){
  .mbp-fp-live-counter-num{ font-size: clamp(34px, 11vw, 44px); }
  .mbp-fp-live-counter-label{ font-size: 16px; }
}

/* Reduced motion: pause auto-scroll, disable transitions */
@media (prefers-reduced-motion: reduce){
  .mbp-fp-live-trust-track{ animation: none; }
  .mbp-fp-live-bar-fill{ transition: none; }
  .mbp-fp-live-chart path[data-mbp-chart-line],
  .mbp-fp-live-chart path[data-mbp-chart-fill]{ transition: none; }
  .mbp-fp-live-dot{ animation: none; }
  .mbp-fp-live-bar-status::before{ animation: none; }
}

/* =====================================================================
   PHASE-COMP-MIRROR — Section 2: hero + product carousel
   Trust pill + headline + sub + 6-platform tab strip + 3-card carousel
   per platform + Trustpilot strip. Pure CSS + minimal vanilla JS for
   tab switching (initHeroTabs in animations.js).
   ===================================================================== */

.mbp-fp-shero{
  padding: 80px 0 64px;
  background:
    radial-gradient(80% 60% at 50% -10%, rgba(124,58,237,.10), rgba(255,255,255,0) 60%),
    radial-gradient(60% 50% at 100% 30%, rgba(236,72,153,.08), rgba(255,255,255,0) 60%),
    var(--mbp-bg);
}
.mbp-fp-shero .mbp-container{
  max-width: 1100px;
  text-align: center;
}

/* Trust pill */
.mbp-fp-shero-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mbp-ink-2);
  letter-spacing: .1px;
  margin: 0 auto 22px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mbp-fp-shero-pill svg{ flex-shrink: 0; color: var(--mbp-accent-1); }
.mbp-fp-shero-pill strong{ color: var(--mbp-ink); font-weight: 800; margin-right: 2px; }

/* Headline + sub */
.mbp-fp-shero-title{
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--mbp-ink);
  margin: 0 0 14px;
}
.mbp-fp-shero-sub{
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--mbp-muted);
  margin: 0 auto 32px;
  max-width: 620px;
  line-height: 1.55;
}

/* Tab strip */
.mbp-fp-shero-tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 28px;
}
.mbp-fp-shero-tab{
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--mbp-ink-2);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s;
  -webkit-tap-highlight-color: transparent;
}
.mbp-fp-shero-tab:hover{
  border-color: var(--mbp-ink);
  color: var(--mbp-ink);
}
.mbp-fp-shero-tab:active{ transform: scale(.97); }
.mbp-fp-shero-tab.is-active{
  background: var(--mbp-ink);
  color: #fff;
  border-color: var(--mbp-ink);
}
.mbp-fp-shero-tab.is-active .mbp-fp-shero-tab-icon{ color: #fff !important; }
.mbp-fp-shero-tab-icon{ display: inline-flex; line-height: 0; flex-shrink: 0; }

/* Panels */
.mbp-fp-shero-panel{
  animation: mbpHeroPanelIn .28s cubic-bezier(.2,.7,.3,1) both;
}
.mbp-fp-shero-panel.is-hidden,
.mbp-fp-shero-panel[hidden]{ display: none !important; }
@keyframes mbpHeroPanelIn{
  from{ opacity: 0; transform: translateY(8px); }
  to  { opacity: 1; transform: translateY(0); }
}

/* Card grid — desktop centered, mobile horizontal scroll */
.mbp-fp-shero-cards{
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 20px;
  justify-content: center;
}
.mbp-fp-shero-cards--count-3{
  grid-template-columns: repeat(3, minmax(0, 280px));
}
.mbp-fp-shero-cards--count-2{
  grid-template-columns: repeat(2, minmax(0, 280px));
}
@media (max-width: 880px){
  .mbp-fp-shero-cards{
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 16px;
    margin-left: -16px;
    margin-right: -16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .mbp-fp-shero-cards::-webkit-scrollbar{ display: none; }
}

/* Card */
.mbp-fp-shero-card{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 18px;
  padding: 22px 20px 20px;
  box-shadow: 0 4px 12px rgba(15,23,42,.04);
  transition: transform .25s cubic-bezier(.2,.7,.3,1),
              box-shadow .25s ease,
              border-color .25s ease;
}
.mbp-fp-shero-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,23,42,.10);
  border-color: rgba(15,23,42,.10);
}
@media (max-width: 880px){
  .mbp-fp-shero-card{
    flex: 0 0 80%;
    max-width: 320px;
    min-width: 260px;
    scroll-snap-align: center;
  }
}

/* Card tags row (badge + discount) */
.mbp-fp-shero-card-tags{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 6px;
  min-height: 22px;
}
.mbp-fp-shero-badge{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.mbp-fp-shero-badge--best{
  background: var(--mbp-accent-grad);
  color: #fff;
  box-shadow: 0 4px 12px rgba(168,85,247,.25);
}
.mbp-fp-shero-badge--popular{
  background: rgba(15,23,42,.08);
  color: var(--mbp-ink);
}
.mbp-fp-shero-discount{
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .3px;
  background: rgba(34,197,94,.12);
  color: #15803D;
  margin-left: auto;
}

/* Card icon — large platform-color glyph in soft tinted disc */
.mbp-fp-shero-card-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  margin: 4px auto 12px;
  color: var(--mbp-svc-color, var(--mbp-ink));
  background: color-mix(in srgb, var(--mbp-svc-color, #0F172A) 10%, #fff);
}
@supports not (background: color-mix(in srgb, red, blue)){
  .mbp-fp-shero-card-icon{ background: rgba(15,23,42,.06); }
}

.mbp-fp-shero-card-qty{
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  background: var(--mbp-accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 4px 0 4px;
  font-variant-numeric: tabular-nums;
}
.mbp-fp-shero-card-kind{
  font-size: 15px;
  font-weight: 700;
  color: var(--mbp-ink);
  margin-bottom: 8px;
}
.mbp-fp-shero-card-price{
  font-size: 13px;
  color: var(--mbp-muted);
  margin-bottom: 14px;
}
.mbp-fp-shero-card-price .woocommerce-Price-amount{ font-weight: 700; color: var(--mbp-ink); }
.mbp-fp-shero-card-cta{
  width: 100%;
  height: 44px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1px;
  /* Anchor to bottom of card — cards without a tags row (no badge/discount)
     have shorter content; without this rule the button rides up to the end
     of the natural flow while the card stretches to grid row height. */
  margin-top: auto;
}

/* Trust strip */
.mbp-fp-shero-trust{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--mbp-ink-2);
  margin: 6px auto 0;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mbp-fp-shero-trust strong{ color: var(--mbp-ink); font-weight: 800; }
.mbp-fp-shero-trust-sep{ color: var(--mbp-muted); }
.mbp-fp-shero-trust-stars{ display: inline-flex; align-items: center; line-height: 0; }

/* Mobile spacing */
@media (max-width: 880px){
  .mbp-fp-shero{ padding: 56px 0 48px; }
}

/* =====================================================================
   PHASE-COMP-MIRROR — Section 3: human hero + reviews carousel
   2-col text+photo on desktop, stacked on mobile. Floating pill on photo.
   Auto-scrolling horizontal review list (list rendered 2× for seamless
   loop, mask gradients on edges, pause on hover). Pure CSS.
   ===================================================================== */

.mbp-fp-social{
  padding: 72px 0 64px;
  background: #fff;
  overflow: hidden;
}
.mbp-fp-social .mbp-container{ max-width: 1180px; }

.mbp-fp-social-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 980px){
  .mbp-fp-social-grid{
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
}

/* Left column */
.mbp-fp-social-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 980px){
  .mbp-fp-social-text{ align-items: center; }
}
.mbp-fp-social-title{
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--mbp-ink);
  margin: 0 0 14px;
}
.mbp-fp-social-sub{
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--mbp-muted);
  line-height: 1.55;
  margin: 0 0 26px;
  max-width: 520px;
}
@media (max-width: 980px){
  .mbp-fp-social-sub{ margin-left: auto; margin-right: auto; }
}
.mbp-fp-social-actions{ margin-bottom: 22px; }
.mbp-fp-social-cta{
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 26px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .1px;
}
.mbp-fp-social-trust{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--mbp-ink-2);
}
.mbp-fp-social-trust strong{ color: var(--mbp-ink); font-weight: 800; }
.mbp-fp-social-trust-brand{ color: var(--mbp-muted); }
.mbp-fp-social-stars{
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

/* Right column — photo + floating pill */
.mbp-fp-social-visual{
  display: flex;
  justify-content: center;
}
.mbp-fp-social-photo-wrap{
  position: relative;
  display: inline-block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15,23,42,.12);
  isolation: isolate;
}
.mbp-fp-social-photo{
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mbp-fp-social-float{
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,.96);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
          backdrop-filter: saturate(180%) blur(8px);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mbp-ink);
  box-shadow: 0 12px 28px rgba(15,23,42,.18);
  animation: mbpFloatPill 3s ease-in-out infinite;
}
.mbp-fp-social-float strong{ color: var(--mbp-ink); font-weight: 800; }
.mbp-fp-social-float-dot{
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22C55E;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,.55);
  animation: mbpLivePulse 1.6s ease-out infinite;
}
@keyframes mbpFloatPill{
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce){
  .mbp-fp-social-float{ animation: none; }
  .mbp-fp-social-float-dot{ animation: none; }
}

/* Reviews carousel */
.mbp-fp-social-reviews-viewport{
  position: relative;
  margin: 56px 0 0;
  overflow: hidden;
  /* Mask edges so the seam is hidden inside the fade-out */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.mbp-fp-social-reviews-track{
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0 16px;
  width: max-content;          /* fit all 12 cards in a single horizontal track */
  animation: mbpReviewsScroll 40s linear infinite;
}
/* Pause on hover — DESKTOP ONLY (devices with a real mouse cursor).
 * On iOS Safari, :hover is sticky on touch — once touched, it stays "hovered"
 * until user taps elsewhere, which would freeze the marquee permanently.
 * Gate the rule behind hover capability. Mobile pause is handled by JS
 * (touchstart/touchend on .mbp-fp-social-reviews-track in animations.js). */
@media (hover: hover) and (pointer: fine){
  .mbp-fp-social:hover .mbp-fp-social-reviews-track{
    animation-play-state: paused;
  }
}
@keyframes mbpReviewsScroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .mbp-fp-social-reviews-track{ animation: none; }
}

.mbp-fp-social-review{
  flex: 0 0 auto;
  width: 320px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 4px 14px rgba(15,23,42,.05);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease;
}
.mbp-fp-social-review:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15,23,42,.10);
}
.mbp-fp-social-review-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mbp-fp-social-review-verified{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(34,197,94,.10);
  color: #15803D;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2px;
}
.mbp-fp-social-review-text{
  font-size: 14px;
  line-height: 1.5;
  color: var(--mbp-ink);
  margin: 0;
}
.mbp-fp-social-review-foot{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px solid var(--mbp-border-2);
}
.mbp-fp-social-review-author{
  display: flex;
  flex-direction: column;
  gap: 1px;
  font-size: 12.5px;
  line-height: 1.2;
}
.mbp-fp-social-review-author strong{
  color: var(--mbp-ink);
  font-weight: 700;
  font-size: 13px;
}
.mbp-fp-social-review-role{
  color: var(--mbp-muted);
  font-size: 11.5px;
}
.mbp-fp-social-review-date{
  color: var(--mbp-muted);
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
}

/* Mobile tweaks */
@media (max-width: 980px){
  .mbp-fp-social{ padding: 56px 0 48px; }
  .mbp-fp-social-photo{ max-width: 380px; }
  .mbp-fp-social-reviews-viewport{ margin-top: 40px; }
  .mbp-fp-social-review{ width: 280px; }
}
@media (max-width: 480px){
  .mbp-fp-social-float{
    left: 12px; bottom: 12px;
    padding: 8px 12px;
    font-size: 12px;
  }
}

/* =====================================================================
   /reviews/ page — reuses .mbp-fp-social-review card styles from S3.
   Static grid (no auto-scroll) so all reviews are scannable on one page.
   ===================================================================== */
.mbp-reviews-page{ padding: 64px 0 80px; background: var(--mbp-bg); }
.mbp-reviews-page .mbp-container{ max-width: 1080px; }

.mbp-reviews-page-header{
  text-align: center;
  margin-bottom: 40px;
}
.mbp-reviews-page-rating{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--mbp-ink-2);
  margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mbp-reviews-page-rating strong{ color: var(--mbp-ink); font-weight: 800; }
.mbp-reviews-page-rating-brand{ color: var(--mbp-muted); }
.mbp-reviews-page-title{
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--mbp-ink);
  margin: 0 0 12px;
}
.mbp-reviews-page-sub{
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--mbp-muted);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

.mbp-reviews-page-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  list-style: none;
  margin: 0 0 48px;
  padding: 0;
}
@media (max-width: 880px){
  .mbp-reviews-page-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
}
@media (max-width: 560px){
  .mbp-reviews-page-grid{ grid-template-columns: 1fr; }
}
.mbp-reviews-page-card{
  /* Override carousel-card width:320px since cards now flow in a grid */
  width: auto !important;
}

.mbp-reviews-page-cta{ text-align: center; }
.mbp-reviews-page-cta .mbp-btn-primary{
  display: inline-flex;
  align-items: center;
  height: 50px;
  padding: 0 28px;
  font-size: 15.5px;
  font-weight: 700;
}

/* Section 3 floating-pill orders number — smooth fade swap */
.mbp-fp-social-float strong[data-mbp-orders-num]{
  display: inline-block;
  transition: opacity .25s ease;
  min-width: 6.5ch;
}

/* =====================================================================
   P1 — Price anchor under primary CTA (Sections 3 + 4)
   Tiny line: "From £X.XX · Spring −20% active". Reuses brand colors.
   ===================================================================== */
.mbp-fp-cta-anchor{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mbp-muted);
  flex-wrap: wrap;
}
.mbp-fp-cta-anchor-price{ color: var(--mbp-ink); font-weight: 700; }
.mbp-fp-cta-anchor-price .woocommerce-Price-amount{
  color: var(--mbp-ink);
  font-weight: 700;
}
.mbp-fp-cta-anchor-promo{
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(34,197,94,.10);
  color: #15803D;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .2px;
}
@media (max-width: 980px){
  .mbp-fp-cta-anchor{ justify-content: center; }
}

/* Showcase CTAs — wrap so the anchor sits below the buttons */
.mbp-fp-showcase-ctas-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mbp-fp-showcase-anchor{ margin-top: 8px; }

/* =====================================================================
   P1 — Scroll-pause coordinator: pause auto-scroll when section out of
   viewport. Reduces visual noise + saves battery on mobile.
   Implementation: JS sets .mbp-paused-scroll on the SECTION when not
   intersecting. CSS uses that class to pause the inner animated track.
   ===================================================================== */
.mbp-fp-social.mbp-paused-scroll .mbp-fp-social-reviews-track,
.mbp-fp-live.mbp-paused-scroll   .mbp-fp-live-trust-track{
  animation-play-state: paused;
}

/* =====================================================================
   P0/P1 — Cart + checkout trust strip + payment icons + coupon pills
   Rendered via WC hooks in functions.php. Scoped, no template fork.
   ===================================================================== */

/* Trust strip — appears below cart contents AND above checkout payment */
.mbp-checkout-trust{
  margin: 24px 0;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15,23,42,.04);
}
.mbp-checkout-trust-row{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mbp-checkout-trust-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 10px 4px;
  color: var(--mbp-ink-2);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1px;
  line-height: 1.25;
}
.mbp-checkout-trust-icon{
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--mbp-ink);
}
.mbp-checkout-trust-rating{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--mbp-border-2);
  border-bottom: 1px solid var(--mbp-border-2);
  font-size: 13px;
  color: var(--mbp-ink-2);
}
.mbp-checkout-trust-rating strong{ color: var(--mbp-ink); font-weight: 800; }
.mbp-checkout-trust-stars{
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.mbp-pay-row{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
}
.mbp-pay-row-label{
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--mbp-muted);
  flex-shrink: 0;
}
.mbp-pay-row-icons{
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}
.mbp-pay-icon{
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 640px){
  .mbp-checkout-trust{ padding: 16px 14px; border-radius: 14px; }
  .mbp-checkout-trust-row{ grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mbp-checkout-trust-item{ font-size: 11px; padding: 8px 2px; }
  .mbp-pay-row{ flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* =====================================================================
   /cart/ click-to-apply coupon pills — drawer parity
   ===================================================================== */
.mbp-cart-coupons{
  margin: 0 0 20px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--mbp-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04);
}
.mbp-cart-coupons-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mbp-cart-coupons-title{
  font-size: 14px;
  font-weight: 800;
  color: var(--mbp-ink);
  letter-spacing: -.01em;
}
.mbp-cart-coupons-sub{
  font-size: 12px;
  color: var(--mbp-muted);
}
.mbp-cart-coupons-row{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.mbp-cart-coupon-pill{
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--mbp-bg);
  border: 1px solid var(--mbp-border);
  border-radius: 12px;
  font: inherit;
  font-size: 13px;
  color: var(--mbp-ink);
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s, opacity .15s;
  -webkit-tap-highlight-color: transparent;
}
.mbp-cart-coupon-pill:hover{ border-color: var(--mbp-ink); }
.mbp-cart-coupon-pill:active{ transform: scale(.97); }
.mbp-cart-coupon-pill.is-applied{
  background: rgba(124,58,237,.08);
  border-color: var(--mbp-accent-1);
}
.mbp-cart-coupon-pill.is-locked{
  opacity: .55;
  cursor: not-allowed;
}
.mbp-cart-coupon-check{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--mbp-accent-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  visibility: hidden;
}
.mbp-cart-coupon-pill.is-applied .mbp-cart-coupon-check{ visibility: visible; }
.mbp-cart-coupon-pct{
  font-weight: 800;
  background: var(--mbp-accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mbp-cart-coupon-info{ display: flex; flex-direction: column; line-height: 1.2; }
.mbp-cart-coupon-code{ font-weight: 700; font-size: 12.5px; }
.mbp-cart-coupon-min{ font-size: 11px; color: var(--mbp-muted); }
@media (prefers-reduced-motion: reduce){
  .mbp-cart-coupon-pill{ transition: none; }
}

/* ============================================================================
   PHASE D — Classic checkout polish (additive over the 4811-4916 block).
   Targets the [woocommerce_checkout] shortcode rendering on /checkout/.
   No JS, no template override, no WC logic changed. CSS only.
   ============================================================================ */

/* --- Container: center form when page template doesn't wrap it ----------- */
body.woocommerce-checkout form.checkout.woocommerce-checkout{
  max-width: 1100px;
  margin: 32px auto 80px;
  padding: 0 16px;
}
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout #woocommerce-checkout-form-coupon{
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}

/* --- Sticky right column on desktop -------------------------------------- */
@media (min-width: 981px){
  body.woocommerce-checkout #order_review{
    position: sticky;
    top: 24px;
  }
}

/* --- Labels: drop UPPERCASE tracked treatment, match site type scale ----- */
body.woocommerce-checkout .form-row label{
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  margin-bottom: 8px !important;
}
body.woocommerce-checkout .form-row label .required,
body.woocommerce-checkout .form-row label .optional{
  color: #94A3B8;
  font-weight: 500;
}

/* --- Inputs: brand purple focus glow ------------------------------------- */
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-selection{
  border: 1px solid #E5E7EB !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  transition: border-color .15s, box-shadow .15s;
}
body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .select2-selection--single:focus,
body.woocommerce-checkout .select2-container--focus .select2-selection{
  outline: 0 !important;
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .15) !important;
}
/* Select2 country dropdown — match input height */
body.woocommerce-checkout .select2-container .select2-selection--single{
  height: 48px !important;
  display: flex;
  align-items: center;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 46px !important;
  padding-left: 14px !important;
  color: var(--mbp-ink);
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 46px !important;
}

/* --- Field grouping: tighten section headings, breathing room ----------- */
body.woocommerce-checkout #customer_details h3,
body.woocommerce-checkout #order_review_heading{
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--mbp-ink) !important;
  margin: 0 0 18px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* --- Order summary table polish ----------------------------------------- */
body.woocommerce-checkout #order_review .shop_table thead th{
  font-size: 12.5px;
  font-weight: 600;
  color: var(--mbp-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
body.woocommerce-checkout #order_review .shop_table .cart_item td{
  color: var(--mbp-ink);
  font-size: 14.5px;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr{
  border-top: 0;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total th,
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total td{
  border-top: 2px solid #E5E7EB !important;
  padding-top: 16px !important;
  font-size: 16px;
  font-weight: 700;
}
body.woocommerce-checkout #order_review .order-total .amount{
  background: var(--mbp-accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 24px !important;
}

/* --- Payment block: card per gateway, no raw plugin look ----------------- */
body.woocommerce-checkout #payment{
  background: transparent !important;
  margin-top: 22px !important;
  padding: 0 !important;
}
body.woocommerce-checkout #payment ul.payment_methods{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 0 16px !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method{
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 14px 16px !important;
  margin-bottom: 10px;
  transition: border-color .15s, box-shadow .15s;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input:checked){
  border-color: #7C3AED;
  box-shadow: 0 0 0 4px rgba(124,58,237,.10);
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method label{
  font-size: 15px;
  font-weight: 600;
  color: var(--mbp-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method label img{
  max-height: 24px;
  vertical-align: middle;
  margin-left: 6px;
}
body.woocommerce-checkout #payment .payment_box{
  background: #F8FAFC !important;
  border: 0 !important;
  border-radius: 10px !important;
  margin: 12px 0 0 !important;
  padding: 12px 14px !important;
  font-size: 13.5px;
  color: var(--mbp-muted);
}
/* Kill the speech-bubble arrow WC injects above payment_box */
body.woocommerce-checkout #payment .payment_box::before{
  display: none !important;
  content: none !important;
}

/* --- Place-order button: lift, larger active state ---------------------- */
body.woocommerce-checkout #place_order{
  letter-spacing: .2px;
  text-transform: none;
}
body.woocommerce-checkout #place_order:hover{
  box-shadow: 0 12px 28px rgba(124,58,237,.35);
}
body.woocommerce-checkout #place_order:active{
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(124,58,237,.25);
}
body.woocommerce-checkout .form-row.place-order{
  margin: 18px 0 0 !important;
  padding: 0 !important;
}

/* --- Terms + privacy text under the button ------------------------------- */
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper,
body.woocommerce-checkout .woocommerce-privacy-policy-text{
  font-size: 12.5px;
  color: var(--mbp-muted);
  margin-bottom: 12px;
}

/* --- Coupon toggle + form: pill / card styling --------------------------- */
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info{
  background: #fff;
  border: 1px dashed #E5E7EB;
  border-radius: 12px;
  padding: 12px 16px;
  margin: 0 0 18px;
  font-size: 13.5px;
  color: var(--mbp-muted);
  box-shadow: none;
  border-left-width: 1px !important;
  border-left-color: #E5E7EB !important;
  list-style: none;
}
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before{
  display: none;
}
body.woocommerce-checkout .woocommerce-form-coupon-toggle a.showcoupon{
  color: #7C3AED;
  font-weight: 600;
  text-decoration: none;
}
body.woocommerce-checkout .woocommerce-form-coupon-toggle a.showcoupon:hover{
  text-decoration: underline;
}
body.woocommerce-checkout #woocommerce-checkout-form-coupon{
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 18px;
  margin: 0 0 22px;
  box-shadow: var(--mbp-shadow-sm);
}
body.woocommerce-checkout #woocommerce-checkout-form-coupon .form-row{ margin-bottom: 12px; }
body.woocommerce-checkout #woocommerce-checkout-form-coupon .button{
  background: var(--mbp-ink) !important;
  color: #fff !important;
  height: 44px;
  border-radius: 10px;
  font-weight: 600;
  border: 0;
  padding: 0 18px;
  cursor: pointer;
}

/* --- Trust strip — keep only the in-form one, lower visual weight ------- */
body.woocommerce-checkout .mbp-checkout-trust{ display: none; }
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust{
  display: block;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  margin: 14px 0;
  padding: 10px 14px;
  box-shadow: none;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-row{
  font-size: 11.5px;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-icon{
  width: 16px; height: 16px;
}

/* --- Hide WC default noise ---------------------------------------------- */
body.woocommerce-checkout .woocommerce-form-login-toggle{ display: none; }
body.woocommerce-checkout #order_review .shop_table .product-name strong{ font-weight: 600; }

/* --- Mobile padding ------------------------------------------------------ */
@media (max-width: 980px){
  body.woocommerce-checkout form.checkout.woocommerce-checkout{
    margin-top: 18px;
    padding: 0 12px;
  }
  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review{
    padding: 20px !important;
  }
  body.woocommerce-checkout #order_review_heading{
    margin-top: 18px !important;
  }
  body.woocommerce-checkout #order_review .order-total .amount{ font-size: 22px !important; }
  body.woocommerce-checkout .woocommerce-form-coupon-toggle,
  body.woocommerce-checkout #woocommerce-checkout-form-coupon{ padding-left: 12px; padding-right: 12px; }
}

/* --- Phase D-2 — break out of page.php wrappers on /checkout/ -------------
   page.php wraps the_content in `.mbp-page-article` (820px max-width, white
   card, border, padding). On checkout we want the form to span ~1180 and the
   inner cards to BE the cards (no card-in-card). Strip the article shell on
   /checkout/ only; other pages keep theirs. */
body.woocommerce-checkout .mbp-page-article{
  max-width: 1180px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  margin: 0 auto !important;
}
body.woocommerce-checkout .mbp-page-head{
  margin-bottom: 16px;
  text-align: center;
}
body.woocommerce-checkout .mbp-page-title{
  font-size: clamp(28px, 3.4vw, 36px);
}
body.woocommerce-checkout .mbp-page-content{
  font-size: 15px;
  color: var(--mbp-ink);
  line-height: 1.55;
}

/* --- Phase D-3 — kill the inner col2-set so Billing stacks above Additional */
body.woocommerce-checkout #customer_details.col2-set,
body.woocommerce-checkout .col2-set,
body.woocommerce-checkout #customer_details .col2-set{
  display: block !important;
  width: 100% !important;
}
body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2,
body.woocommerce-checkout .col2-set .col-1,
body.woocommerce-checkout .col2-set .col-2{
  width: 100% !important;
  float: none !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
}
/* Last child no extra bottom margin */
body.woocommerce-checkout #customer_details .col-2,
body.woocommerce-checkout .col2-set .col-2{ margin-bottom: 0 !important; }
/* Clear the WC default col2-set clearfix (no longer needed once block) */
body.woocommerce-checkout .col2-set::after{ content: none !important; display: none !important; }

/* Section headings inside customer_details — match site type scale */
body.woocommerce-checkout #customer_details h3{
  font-size: 18px !important;
  margin: 0 0 16px !important;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
}
body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-additional-fields{
  width: 100%;
}
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
@media (max-width: 640px){
  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper{
    grid-template-columns: 1fr;
  }
}
/* Full-width fields inside the billing grid */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > .form-row-wide,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_country_field,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_address_1_field,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_address_2_field,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_email_field,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper > #billing_phone_field{
  grid-column: 1 / -1;
}
/* Inputs inside the grid: no float, full width of their cell */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row{
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row input,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row select,
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper .form-row .select2{
  width: 100% !important;
}
/* Order notes textarea full width */
body.woocommerce-checkout #order_comments_field{
  width: 100% !important;
  float: none !important;
}
body.woocommerce-checkout #order_comments_field textarea{
  width: 100% !important;
  min-height: 80px;
}

/* ============================================================================
   Phase D-4 — refined checkout layout per user's "premium feel" spec.
   Container 1180, 58/42 columns, gap 28, sticky right at 90px.
   Collapses the two-card right column (heading + review) into ONE card.
   ============================================================================ */

/* Container + grid proportions */
body.woocommerce-checkout form.checkout.woocommerce-checkout{
  max-width: 1180px !important;
  margin: 24px auto 80px !important;
  padding: 0 16px !important;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: start !important;
}

/* Hide the standalone "Your order" heading — we'll render it via ::before
   inside #order_review so the right column is ONE clean card, not two glued. */
body.woocommerce-checkout #order_review_heading{
  display: none !important;
}

/* Right column: single card, sticky at top: 90px, full radius (override 4833) */
body.woocommerce-checkout #order_review{
  border-radius: 16px !important;
  padding: 24px !important;
}
@media (min-width: 981px){
  body.woocommerce-checkout #order_review{
    position: sticky !important;
    top: 90px !important;
    align-self: start !important;
  }
}

/* Inline "Your order" title at the top of the order_review card */
body.woocommerce-checkout #order_review::before{
  content: "Your order";
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--mbp-ink);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F1F5F9;
  letter-spacing: 0;
  text-transform: none;
}

/* Tighten vertical rhythm inside the order summary table */
body.woocommerce-checkout #order_review .shop_table{
  margin: 0 !important;
}
body.woocommerce-checkout #order_review .shop_table thead th{
  padding: 6px 0 10px !important;
}
body.woocommerce-checkout #order_review .shop_table tbody tr.cart_item th,
body.woocommerce-checkout #order_review .shop_table tbody tr.cart_item td{
  padding: 10px 0 !important;
  font-size: 14px;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.cart-subtotal th,
body.woocommerce-checkout #order_review .shop_table tfoot tr.cart-subtotal td,
body.woocommerce-checkout #order_review .shop_table tfoot tr.shipping th,
body.woocommerce-checkout #order_review .shop_table tfoot tr.shipping td,
body.woocommerce-checkout #order_review .shop_table tfoot tr.fee th,
body.woocommerce-checkout #order_review .shop_table tfoot tr.fee td{
  padding: 10px 0 !important;
  font-size: 14px;
  border-top: 1px solid #F1F5F9 !important;
  border-bottom: 0 !important;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total th,
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total td{
  padding: 14px 0 4px !important;
  border-top: 2px solid #E5E7EB !important;
  font-size: 15px;
}

/* Collapse vertical gap between the table, the in-form trust strip, and #payment */
body.woocommerce-checkout #order_review .woocommerce-checkout-review-order-table{
  margin-bottom: 4px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust{
  margin: 10px 0 12px !important;
  padding: 8px 12px !important;
}
body.woocommerce-checkout #order_review #payment{
  margin-top: 0 !important;
}
body.woocommerce-checkout #order_review #payment ul.payment_methods{
  margin: 0 0 12px !important;
}

/* Customer details card sits flush at the top of its column */
body.woocommerce-checkout #customer_details{
  margin-top: 0 !important;
  align-self: start !important;
}

/* Mobile: drop sticky, single column, single card per row */
@media (max-width: 980px){
  body.woocommerce-checkout form.checkout.woocommerce-checkout{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 16px !important;
  }
  body.woocommerce-checkout #order_review{
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
    padding: 20px !important;
  }
}

/* ============================================================================
   Phase D-5 — premium polish: SaaS inputs, dominant total, Stripe-style CTA.
   ============================================================================ */

/* --- Inputs: SaaS-flat with subtle bg, larger radius + padding ----------- */
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-container .select2-selection--single{
  background: #F9FAFB !important;
  border-radius: 16px !important;
  border: 1px solid #E5E7EB !important;
  height: 52px !important;
  padding: 0 16px !important;
  font-size: 15.5px !important;
  color: var(--mbp-ink);
  transition: background-color .15s, border-color .15s, box-shadow .15s !important;
}
body.woocommerce-checkout .form-row textarea{
  height: auto !important;
  min-height: 92px;
  padding: 14px 16px !important;
}
body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .select2-container--focus .select2-selection--single,
body.woocommerce-checkout .select2-container--open .select2-selection--single{
  background: #fff !important;
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, .15) !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: 50px !important;
  padding-left: 16px !important;
}
body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 50px !important;
}

/* --- Tighter vertical rhythm in the billing fields grid ------------------ */
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper{
  gap: 14px 16px !important;
}
body.woocommerce-checkout .form-row label{
  margin-bottom: 6px !important;
}

/* --- De-emphasize optional fields (Phone, Address 2, Order notes) -------- */
body.woocommerce-checkout #billing_phone_field label,
body.woocommerce-checkout #billing_address_2_field label,
body.woocommerce-checkout #order_comments_field label{
  color: #94A3B8 !important;
  font-weight: 500 !important;
}
body.woocommerce-checkout #billing_address_2_field input,
body.woocommerce-checkout #billing_phone_field input,
body.woocommerce-checkout #order_comments_field textarea{
  background: #FAFBFC !important;
  border-color: #EEF2F7 !important;
}
body.woocommerce-checkout #billing_address_2_field input:focus,
body.woocommerce-checkout #billing_phone_field input:focus,
body.woocommerce-checkout #order_comments_field textarea:focus{
  background: #fff !important;
  border-color: #7C3AED !important;
}
body.woocommerce-checkout label .optional{
  color: #94A3B8 !important;
  font-style: normal !important;
  font-weight: 500 !important;
  margin-left: 4px;
}

/* --- Section headings tighter ------------------------------------------- */
body.woocommerce-checkout #customer_details h3{
  margin: 0 0 14px !important;
  padding-bottom: 10px !important;
  font-size: 17px !important;
}
body.woocommerce-checkout .woocommerce-additional-fields h3{
  margin-top: 4px !important;
}

/* --- Order summary: dominant total + soft card shadow ------------------- */
body.woocommerce-checkout #order_review{
  box-shadow: 0 12px 36px rgba(15, 23, 42, .06) !important;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total th{
  font-size: 14px !important;
  font-weight: 600;
  color: var(--mbp-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total td{
  font-size: 17px;
  font-weight: 700;
  text-align: right;
}
body.woocommerce-checkout #order_review .order-total .amount{
  font-size: 24px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total th,
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total td{
  border-top: 1px solid #E5E7EB !important;
  padding-top: 16px !important;
  padding-bottom: 8px !important;
}

/* --- Trust strip: even more compact ------------------------------------- */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust{
  padding: 6px 10px !important;
  margin: 8px 0 12px !important;
  background: #FAFBFC !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-row{
  font-size: 11px !important;
  gap: 10px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-icon{
  width: 14px !important;
  height: 14px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-label{
  font-size: 10.5px !important;
}

/* --- Payment block: integrated with order_review card, no plugin look --- */
body.woocommerce-checkout #order_review #payment ul.payment_methods li.wc_payment_method{
  border-radius: 14px;
  border-width: 1px;
  background: #FAFBFC;
}
body.woocommerce-checkout #order_review #payment ul.payment_methods li.wc_payment_method:has(input:checked){
  background: #fff;
  border-color: #7C3AED;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, .12);
}
body.woocommerce-checkout #order_review #payment .payment_box{
  background: #F8FAFC !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  padding: 10px 12px !important;
  margin-top: 10px !important;
  color: #475569;
}

/* --- Place Order: 60px Stripe-grade button + hover lift ------------------ */
body.woocommerce-checkout #place_order{
  height: 60px !important;
  border-radius: 16px !important;
  font-size: 16.5px !important;
  font-weight: 700 !important;
  letter-spacing: .2px !important;
  background: linear-gradient(90deg, #6D28D9 0%, #9333EA 50%, #EC4899 100%) !important;
  background-size: 180% 100% !important;
  background-position: 0% 0% !important;
  box-shadow: 0 14px 28px rgba(124, 58, 237, .32), 0 4px 8px rgba(124, 58, 237, .15) !important;
  transition: transform .18s ease, box-shadow .18s ease, background-position .4s ease !important;
}
body.woocommerce-checkout #place_order:hover{
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 40px rgba(124, 58, 237, .42), 0 8px 16px rgba(124, 58, 237, .20) !important;
  background-position: 100% 0% !important;
  filter: none !important;
}
body.woocommerce-checkout #place_order:active{
  transform: translateY(0) !important;
  box-shadow: 0 6px 14px rgba(124, 58, 237, .28) !important;
}

/* CTA microcopy via pseudo (no markup change). */
body.woocommerce-checkout .form-row.place-order{
  position: relative;
  margin: 14px 0 0 !important;
}
body.woocommerce-checkout .form-row.place-order::after{
  content: "Secure payment  •  Instant delivery";
  display: block;
  text-align: center;
  font-size: 11.5px;
  font-weight: 500;
  color: #94A3B8;
  margin-top: 18px;
  letter-spacing: .03em;
}

/* Privacy text smaller above the button */
body.woocommerce-checkout .woocommerce-privacy-policy-text p{
  font-size: 11.5px !important;
  color: #94A3B8 !important;
  margin: 0 0 8px !important;
  line-height: 1.5;
}

/* --- Mobile: sticky bottom CTA so it's never out of view ----------------- */
@media (max-width: 980px){
  body.woocommerce-checkout{
    /* leave room for the sticky button at the bottom */
    padding-bottom: 90px;
  }
  body.woocommerce-checkout .form-row.place-order{
    position: sticky;
    bottom: 10px;
    z-index: 20;
    background: linear-gradient(to top, rgba(247,247,250,1) 0%, rgba(247,247,250,1) 65%, rgba(247,247,250,0) 100%);
    padding: 14px 4px 4px !important;
    margin: 16px -4px 0 !important;
  }
  body.woocommerce-checkout .form-row.place-order::after{
    margin-top: 6px;
    font-size: 11.5px;
  }
  body.woocommerce-checkout #place_order{
    height: 56px !important;
    font-size: 15.5px !important;
  }
  body.woocommerce-checkout #order_review .order-total .amount{
    font-size: 26px !important;
  }
}

/* ============================================================================
   Phase D-6 — Sephora-style: payment block on LEFT, recap+CTA sticky on RIGHT
   Hides the original ul.payment_methods inside #order_review (radio still
   submits via DOM). Renders a left-side payment indicator card. Compact recap.
   <details>-based coupon toggle (no JS dependency).
   ============================================================================ */

/* Hide the original payment radio inside the order review.
   The hidden <input type="radio" checked> still POSTs payment_method=nowpayments. */
body.woocommerce-checkout #order_review #payment > ul.payment_methods{
  display: none !important;
}

/* --- Left-side payment indicator (rendered by woocommerce_after_checkout_billing_form) */
body.woocommerce-checkout .mbp-co-payment{
  margin-top: 18px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 22px 24px 24px;
  box-shadow: 0 4px 12px rgba(15,23,42,.04);
}
body.woocommerce-checkout .mbp-co-payment h3{
  font-size: 17px;
  font-weight: 700;
  color: var(--mbp-ink);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F5F9;
  letter-spacing: 0;
  text-transform: none;
}
body.woocommerce-checkout .mbp-co-payment-card{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #FAFBFC;
  border: 1.5px solid #7C3AED;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 0 0 3px rgba(124,58,237,.10);
}
body.woocommerce-checkout .mbp-co-payment-radio{
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #7C3AED;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
body.woocommerce-checkout .mbp-co-payment-radio > span{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7C3AED;
}
body.woocommerce-checkout .mbp-co-payment-info{ flex: 1 1 auto; min-width: 0; }
body.woocommerce-checkout .mbp-co-payment-title{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--mbp-ink);
}
body.woocommerce-checkout .mbp-co-payment-icon img{
  max-height: 22px;
  vertical-align: middle;
}
body.woocommerce-checkout .mbp-co-payment-desc{
  margin: 6px 0 0;
  font-size: 13px;
  color: #475569;
  line-height: 1.5;
}

/* --- <details>-based coupon toggle ------------------------------------- */
body.woocommerce-checkout .mbp-coupon-shell{
  max-width: 1180px;
  margin: 0 auto 18px;
  padding: 0 16px;
  list-style: none;
}
body.woocommerce-checkout .mbp-coupon-shell summary{
  list-style: none;
  cursor: pointer;
  background: #fff;
  border: 1px dashed #E5E7EB;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--mbp-muted);
  transition: border-color .15s, background-color .15s;
}
body.woocommerce-checkout .mbp-coupon-shell summary::-webkit-details-marker{ display: none; }
body.woocommerce-checkout .mbp-coupon-shell summary:hover{ border-color: #7C3AED; }
body.woocommerce-checkout .mbp-coupon-shell .mbp-coupon-label strong{ color: #7C3AED; font-weight: 600; }
body.woocommerce-checkout .mbp-coupon-shell .mbp-coupon-chev{
  font-size: 18px;
  font-weight: 600;
  color: #7C3AED;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(124,58,237,.08);
  transition: transform .2s;
}
body.woocommerce-checkout .mbp-coupon-shell[open] .mbp-coupon-chev{
  transform: rotate(45deg);
}
/* Hide WC's default toggle link (we render our own summary) */
body.woocommerce-checkout .mbp-coupon-shell .woocommerce-form-coupon-toggle{
  display: none !important;
}
/* Force the coupon form visible when <details> is open (overrides inline display:none) */
body.woocommerce-checkout .mbp-coupon-shell[open] form.checkout_coupon,
body.woocommerce-checkout .mbp-coupon-shell[open] #woocommerce-checkout-form-coupon{
  display: block !important;
  margin: 12px 0 0 !important;
  padding: 18px !important;
  background: #fff !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 12px !important;
  box-shadow: var(--mbp-shadow-sm) !important;
}
body.woocommerce-checkout .mbp-coupon-shell form.checkout_coupon p,
body.woocommerce-checkout .mbp-coupon-shell #woocommerce-checkout-form-coupon p{
  margin: 0 0 8px !important;
}
body.woocommerce-checkout .mbp-coupon-shell .button[name="apply_coupon"]{
  background: var(--mbp-ink) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 10px !important;
  height: 44px !important;
  padding: 0 18px !important;
  font-weight: 600 !important;
  cursor: pointer;
}

/* Hide the OLD coupon toggle/form pair that used to render outside the shell.
   When the wc_coupons_enabled is true, both render — kill the duplicate. */
body.woocommerce-checkout > .woocommerce > .woocommerce-form-coupon-toggle,
body.woocommerce-checkout > .woocommerce > #woocommerce-checkout-form-coupon{
  display: none !important;
}

/* --- Compact recap (Phase D-6 polish) ----------------------------------- */
body.woocommerce-checkout #order_review{
  padding: 22px 24px !important;
}
/* Smaller in-recap trust strip */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust{
  padding: 6px 8px !important;
  margin: 8px 0 !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-row{
  font-size: 10px !important;
  gap: 8px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-icon{
  width: 12px !important;
  height: 12px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-label{
  font-size: 9.5px !important;
  line-height: 1.2;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-rating{
  font-size: 10.5px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-stars svg,
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-stars img{
  height: 11px !important;
  width: auto !important;
}
/* Tighter payment-method-icons row inside the recap (We Accept ...) */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-pay-icons,
body.woocommerce-checkout #order_review img.payment-icon,
body.woocommerce-checkout #order_review img[src*="payment"]{
  max-height: 16px !important;
}

/* Tighter recap rhythm — drop trailing margin from #payment area now that ul is hidden */
body.woocommerce-checkout #order_review #payment{
  margin-top: 10px !important;
}
body.woocommerce-checkout #order_review #payment .form-row.place-order{
  margin: 0 !important;
}

/* Order summary: smaller item rows, no extra rows of metadata */
body.woocommerce-checkout #order_review .shop_table .product-name{
  font-size: 13.5px;
  line-height: 1.4;
}
body.woocommerce-checkout #order_review .shop_table .product-name .variation{
  font-size: 12px;
  color: var(--mbp-muted);
  margin-top: 4px;
  display: block;
}
body.woocommerce-checkout #order_review .shop_table .product-total,
body.woocommerce-checkout #order_review .shop_table .cart-subtotal td,
body.woocommerce-checkout #order_review .shop_table .order-total td{
  font-size: 14px;
}

/* Mobile: coupon shell padding tighter */
@media (max-width: 980px){
  body.woocommerce-checkout .mbp-coupon-shell{
    padding: 0 12px;
  }
  body.woocommerce-checkout .mbp-co-payment{
    padding: 18px 18px 20px;
  }
}

/* ============================================================================
   Phase D-7 — coupon visible by default, product thumbs, ultra-compact recap
   ============================================================================ */

/* --- Reduce top empty space ---------------------------------------------- */
body.woocommerce-checkout .mbp-pad-y{
  padding: 16px 0 40px !important;
}
body.woocommerce-checkout .mbp-page-head{
  margin-bottom: 12px !important;
}
body.woocommerce-checkout .mbp-page-title{
  font-size: clamp(22px, 2.5vw, 30px) !important;
  margin-bottom: 0 !important;
}

/* --- Hide the OLD <details>-based coupon shell (no longer rendered) ----- */
body.woocommerce-checkout .mbp-coupon-shell{ display: none !important; }
/* Hide ANY remaining default WC coupon toggle/form rendered outside our shell */
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout > .woocommerce > .woocommerce-form-coupon-toggle,
body.woocommerce-checkout #woocommerce-checkout-form-coupon,
body.woocommerce-checkout > .woocommerce > #woocommerce-checkout-form-coupon,
body.woocommerce-checkout .checkout_coupon{
  display: none !important;
}

/* --- New always-visible coupon card (left column, above billing) -------- */
body.woocommerce-checkout .mbp-co-coupon{
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 4px 12px rgba(15,23,42,.04);
  margin: 0 0 12px;
}
body.woocommerce-checkout .mbp-co-coupon-form{ margin: 0; }
body.woocommerce-checkout .mbp-co-coupon-label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
  text-transform: none;
  letter-spacing: 0;
}
body.woocommerce-checkout .mbp-co-coupon-row{
  display: flex;
  gap: 8px;
}
body.woocommerce-checkout .mbp-co-coupon-input{
  flex: 1 1 auto;
  height: 44px !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 12px !important;
  padding: 0 14px !important;
  font-size: 14px !important;
  background: #F9FAFB !important;
  outline: 0 !important;
  transition: border-color .15s, box-shadow .15s, background-color .15s !important;
  color: var(--mbp-ink);
}
body.woocommerce-checkout .mbp-co-coupon-input:focus{
  background: #fff !important;
  border-color: #7C3AED !important;
  box-shadow: 0 0 0 3px rgba(124,58,237,.15) !important;
}
body.woocommerce-checkout .mbp-co-coupon-input::placeholder{ color: #94A3B8; }
body.woocommerce-checkout .mbp-co-coupon-btn{
  flex: 0 0 auto;
  height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--mbp-ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: filter .15s, transform .15s;
}
body.woocommerce-checkout .mbp-co-coupon-btn:hover{
  filter: brightness(1.1);
  transform: translateY(-1px);
}
body.woocommerce-checkout .mbp-co-coupon-applied{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
body.woocommerce-checkout .mbp-co-coupon-tag{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(124,58,237,.10);
  color: #7C3AED;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
}

/* --- Grid placement: coupon row 1, billing row 2, recap spans both ----- */
@media (min-width: 981px){
  body.woocommerce-checkout form.checkout.woocommerce-checkout > .mbp-co-coupon{
    grid-column: 1;
    grid-row: 1;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > #customer_details{
    grid-column: 1;
    grid-row: 2;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > #order_review{
    grid-column: 2;
    grid-row: 1 / span 99;
  }
}

/* --- Product thumbnail + name compact row in recap --------------------- */
body.woocommerce-checkout #order_review .shop_table .mbp-recap-row{
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
body.woocommerce-checkout #order_review .shop_table .mbp-recap-thumb{
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid #F1F5F9;
  background: #F8FAFC;
  display: block;
}
body.woocommerce-checkout #order_review .shop_table .mbp-recap-thumb-fallback{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}
body.woocommerce-checkout #order_review .shop_table .mbp-recap-text{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--mbp-ink);
  line-height: 1.35;
  word-break: break-word;
}
body.woocommerce-checkout #order_review .shop_table .product-quantity{
  display: inline-block;
  margin-left: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mbp-muted);
}
/* Variation/meta indented under thumb, small + muted */
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation,
body.woocommerce-checkout #order_review .shop_table .product-name .wc-item-meta,
body.woocommerce-checkout #order_review .shop_table .product-name p.variation{
  font-size: 11.5px !important;
  color: var(--mbp-muted) !important;
  line-height: 1.45 !important;
  margin: 6px 0 0 56px !important;
  padding: 0 !important;
}
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation dt,
body.woocommerce-checkout #order_review .shop_table .product-name .wc-item-meta-label{
  font-weight: 600;
  color: #475569;
  display: inline;
}
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation dd,
body.woocommerce-checkout #order_review .shop_table .product-name .wc-item-meta-value{
  display: inline;
  margin: 0 6px 0 0;
}
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation dd p,
body.woocommerce-checkout #order_review .shop_table .product-name dd p{
  margin: 0;
  display: inline;
}

/* --- Ultra-compact trust strip (Phase D-7) ----------------------------- */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust{
  padding: 4px 4px !important;
  margin: 8px 0 6px !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid #F1F5F9 !important;
  border-radius: 0 !important;
  padding-top: 8px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-row{
  font-size: 9.5px !important;
  gap: 4px !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-item{
  flex: 1 1 0;
  min-width: 0;
  font-size: 9px !important;
  text-align: center;
  flex-direction: column !important;
  gap: 2px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-icon{
  width: 12px !important;
  height: 12px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-label{
  font-size: 9px !important;
  line-height: 1.15 !important;
  white-space: normal !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-rating{
  font-size: 10px !important;
  margin-top: 4px !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-stars svg,
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-stars img{
  height: 10px !important;
}
/* Even smaller "we accept" payment-icon row */
body.woocommerce-checkout #order_review img.payment-icon,
body.woocommerce-checkout #order_review img[src*="payment"]{
  max-height: 14px !important;
}

/* --- Mobile order: coupon → billing → payment → recap ----------------- */
@media (max-width: 980px){
  body.woocommerce-checkout form.checkout.woocommerce-checkout > .mbp-co-coupon{
    grid-row: auto !important;
    grid-column: 1 !important;
  }
  body.woocommerce-checkout .mbp-co-coupon{
    margin: 0 0 12px;
    padding: 14px 16px;
  }
}

/* ============================================================================
   Phase D-8 — final compactness pass.
   Goals: (1) cut top whitespace before "Checkout" h1, (2) tighten left-column
   internal padding so card height matches content, (3) remove span 99 row
   trickery on #order_review, (4) reduce form gap.
   ============================================================================ */

/* --- Top space: half what it was -------------------------------------- */
body.woocommerce-checkout .mbp-pad-y{
  padding: 8px 0 32px !important;
}
body.woocommerce-checkout .mbp-page-head{
  margin-bottom: 6px !important;
}
body.woocommerce-checkout .mbp-page-title{
  font-size: clamp(20px, 2.2vw, 26px) !important;
}
body.woocommerce-checkout .mbp-page-content{
  font-size: 14px;
}

/* --- Form: tighter top margin + tighter gap --------------------------- */
body.woocommerce-checkout form.checkout.woocommerce-checkout{
  margin: 14px auto 60px !important;
  gap: 22px !important;
}

/* --- Replace span-99 row trick with explicit grid-row: 1 / 3 --------- */
@media (min-width: 981px){
  body.woocommerce-checkout form.checkout.woocommerce-checkout > #order_review{
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;     /* spans coupon row + billing row only */
    align-self: start !important;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > .mbp-co-coupon{
    align-self: start !important;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > #customer_details{
    align-self: start !important;
  }
}

/* --- Coupon card tighter ---------------------------------------------- */
body.woocommerce-checkout .mbp-co-coupon{
  padding: 12px 14px !important;
  margin: 0 0 8px !important;
}
body.woocommerce-checkout .mbp-co-coupon-label{
  margin-bottom: 4px !important;
}

/* --- Customer details card tighter ------------------------------------ */
body.woocommerce-checkout #customer_details{
  padding: 20px !important;
}
body.woocommerce-checkout #customer_details h3{
  margin: 0 0 12px !important;
  padding-bottom: 8px !important;
  font-size: 16px !important;
}
body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper{
  gap: 10px 14px !important;
}

/* --- Payment indicator card much tighter, no big bottom space -------- */
body.woocommerce-checkout .mbp-co-payment{
  margin-top: 14px !important;
  padding: 14px 18px 16px !important;
}
body.woocommerce-checkout .mbp-co-payment h3{
  margin: 0 0 10px !important;
  padding-bottom: 8px !important;
  font-size: 15px !important;
}
body.woocommerce-checkout .mbp-co-payment-card{
  padding: 12px 14px !important;
  box-shadow: 0 0 0 2px rgba(124,58,237,.10) !important;
}
body.woocommerce-checkout .mbp-co-payment-desc{
  margin-top: 4px !important;
  font-size: 12.5px !important;
}

/* --- Order review (right card) tighter ------------------------------- */
body.woocommerce-checkout #order_review{
  padding: 18px 20px !important;
}
body.woocommerce-checkout #order_review::before{
  margin: 0 0 10px !important;
  padding-bottom: 8px !important;
  font-size: 16px !important;
}
body.woocommerce-checkout #order_review #payment{
  margin-top: 6px !important;
}
body.woocommerce-checkout .form-row.place-order{
  margin: 10px 0 0 !important;
}
body.woocommerce-checkout .form-row.place-order::after{
  margin-top: 12px !important;
  font-size: 11px !important;
}
body.woocommerce-checkout .woocommerce-privacy-policy-text p{
  font-size: 11px !important;
  margin: 0 0 6px !important;
  line-height: 1.45 !important;
}

/* --- Mobile: same compact spacing ------------------------------------ */
@media (max-width: 980px){
  body.woocommerce-checkout .mbp-pad-y{ padding: 4px 0 24px !important; }
  body.woocommerce-checkout form.checkout.woocommerce-checkout{
    margin: 8px auto 40px !important;
    gap: 14px !important;
  }
  body.woocommerce-checkout #customer_details{ padding: 18px !important; }
  body.woocommerce-checkout #order_review{ padding: 16px 18px !important; }
  body.woocommerce-checkout .mbp-co-payment{ margin-top: 12px !important; padding: 12px 14px 14px !important; }
}

/* ============================================================================
   Phase D-10 — Mobile checkout: kill horizontal overflow, collapsible recap,
   sticky bottom CTA. Desktop unchanged.
   ============================================================================ */

/* --- Desktop: hide mobile-only elements ------------------------------- */
@media (min-width: 769px){
  body.woocommerce-checkout .mbp-mobile-cta-bar{ display: none !important; }
  body.woocommerce-checkout .mbp-recap-mobile-header{ display: none !important; }
  body.woocommerce-checkout .mbp-recap-body{ display: block !important; }
  body.woocommerce-checkout .mbp-mobile-bottom-recap{ display: none !important; }
}

/* ============================================================================
   SITE-WIDE MOBILE HORIZONTAL-SCROLL HARDENING
   On iOS Safari, fixed-positioned elements visually past the viewport (e.g.
   the cart drawer at `transform: translateX(100%)`) can allow horizontal
   swipe gestures EVEN when body has `overflow-x: hidden`. Two fixes:

   1) `visibility: hidden` on closed drawer/offcanvas — keeps the slide-in
      animation but the element is non-rendering when closed → no swipe.
   2) `clip-path: inset(0)` on body — hard CSS clip that hides any descendant
      painting outside the body's bounding box, regardless of overflow rules.

   Scoped to mobile (≤768px) to keep desktop unchanged.
   ============================================================================ */
@media (max-width: 768px){
  body{
    clip-path: inset(0);
    -webkit-clip-path: inset(0);
  }
  /* Cart drawer + offcanvas mobile menu — invisible when not open.
     transform animation still works because we toggle visibility with the
     is-open class. */
  .mbp-drawer:not(.is-open),
  .mbp-offcanvas:not(.is-open){
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .mbp-drawer.is-open,
  .mbp-offcanvas.is-open{
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* --- Hide full site footer on /checkout/ — minimal mbp-checkout-footer renders instead.
   The actual class is .mbp-dark-footer (footer.php line 9). Cover both names + the
   <footer> element type as a belt-and-suspenders. */
body.woocommerce-checkout .mbp-site-footer,
body.woocommerce-checkout footer.mbp-dark-footer,
body.woocommerce-checkout > footer:not(.mbp-checkout-footer){
  display: none !important;
}

/* --- Hard guard: offcanvas mobile menu MUST NOT contribute to body scrollWidth on /checkout/.
   The default behavior uses [hidden] → display:block + visibility:hidden, which keeps the
   panel in layout as a transform-translated element. Some mobile browsers include
   transformed elements in scrollWidth. On checkout, force display:none unless open. */
body.woocommerce-checkout .mbp-offcanvas[hidden]{
  display: none !important;
  visibility: hidden !important;
}
body.woocommerce-checkout .mbp-offcanvas:not(.is-open){
  display: none !important;
}
/* When user opens the menu, restore. */
body.woocommerce-checkout .mbp-offcanvas.is-open{
  display: block !important;
  visibility: visible !important;
}
/* The panel inside cannot extend past viewport even when not active */
body.woocommerce-checkout .mbp-offcanvas-panel{
  contain: layout paint !important;
}

/* --- Cookie banner (cookieadmin) — never wider than viewport on mobile */
@media (max-width: 768px){
  body.woocommerce-checkout .cookieadmin_cookie_modal,
  body.woocommerce-checkout [class^="cookieadmin"],
  body.woocommerce-checkout [class*=" cookieadmin"]{
    max-width: calc(100vw - 16px) !important;
    box-sizing: border-box !important;
  }
}

/* --- Hide Select2's accessibility-shadow <select> reliably.
   The original <select id="billing_country"> is replaced visually by Select2's
   custom UI, but the original is kept in DOM with class .select2-hidden-accessible
   for forms / a11y. Select2's own CSS uses a 1px clipped offscreen pattern, but
   we dequeue that CSS site-wide for performance. Without it, the original select
   renders at its in-flow position (left: 33px) with width: 375px → 33px overflow
   off the right. Replicate the standard hide pattern here. */
body.woocommerce-checkout .select2-hidden-accessible{
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  max-width: 1px !important;
}

/* --- Defense: hide ANY PhotoSwipe lightbox markup on /checkout/.
   WC's woocommerce_photoswipe() at wp_footer renders these. We also remove the
   action server-side (functions.php), but if anything else (plugin, third-party)
   adds it we still want it gone. The arrow buttons extend off-screen and cause
   horizontal scroll. */
body.woocommerce-checkout .pswp,
body.woocommerce-checkout .pswp__ui,
body.woocommerce-checkout .pswp__bg,
body.woocommerce-checkout .pswp__container,
body.woocommerce-checkout .pswp__top-bar,
body.woocommerce-checkout .pswp__caption,
body.woocommerce-checkout [class^="pswp__"],
body.woocommerce-checkout [class*=" pswp__"]{
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* --- Mobile: ≤768px ---------------------------------------------------- */
@media (max-width: 768px){
  /* Kill horizontal overflow at every level. NOTE: do NOT use 100vw — vw
   * includes scrollbar width so it allows ~15px overflow. Use 100% instead. */
  html, body{
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  body.woocommerce-checkout{
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
    /* Bottom padding = exactly the sticky CTA bar height + iPhone safe-area inset.
     * Bar = 10 top + 52 button + 10 base bottom + env(safe-area). Use 76px
     * (slightly above bar) + safe-area to ensure no overlap on notch devices. */
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0)) !important;
  }
  /* Collapse the page-template wrappers' bottom padding on /checkout/ so the
   * minimal footer sits right above the sticky CTA, not 200px above it. */
  body.woocommerce-checkout .mbp-page{
    padding-bottom: 0 !important;
  }
  body.woocommerce-checkout .mbp-pad-y{
    padding-bottom: 8px !important;
  }
  body.woocommerce-checkout .mbp-checkout-footer{
    margin-bottom: 0 !important;
    padding-bottom: 8px !important;
  }
  /* Belt-and-suspenders: every element on /checkout/ uses border-box and
   * never exceeds its parent's width. Prevents long-string blowouts and
   * legacy float-children that ignore padding. */
  body.woocommerce-checkout *,
  body.woocommerce-checkout *::before,
  body.woocommerce-checkout *::after{
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  /* Flex/grid items default to min-width: auto (≈ min-content) which can
   * blow past the parent if content is wider. Force min-width: 0 so they
   * actually shrink. */
  body.woocommerce-checkout form.checkout.woocommerce-checkout > *,
  body.woocommerce-checkout #order_review > *,
  body.woocommerce-checkout .mbp-recap-body > *,
  body.woocommerce-checkout .mbp-mobile-cta-bar > *,
  body.woocommerce-checkout .mbp-mobile-bottom-recap > *{
    min-width: 0 !important;
  }
  body.woocommerce-checkout .mbp-container,
  body.woocommerce-checkout .mbp-page-article,
  body.woocommerce-checkout .mbp-page-content,
  body.woocommerce-checkout .woocommerce,
  body.woocommerce-checkout form.checkout.woocommerce-checkout,
  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout .mbp-co-coupon,
  body.woocommerce-checkout .mbp-co-payment{
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Force single-column form grid */
  body.woocommerce-checkout form.checkout.woocommerce-checkout{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 12px !important;
    margin: 8px auto 0 !important;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > *{
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  body.woocommerce-checkout #order_review{
    position: static !important;
    top: auto !important;
    align-self: auto !important;
  }

  /* Mobile order: recap-header (collapsed) at TOP, recap-body right under
   * (visible when expanded), THEN billing/payment. The bottom recap is a
   * separate page-level element that stays after the form. */
  body.woocommerce-checkout form.checkout.woocommerce-checkout > .mbp-recap-mobile-header{
    order: 1 !important;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > .mbp-recap-body{
    order: 2 !important;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > #customer_details{
    order: 3 !important;
  }
  body.woocommerce-checkout form.checkout.woocommerce-checkout > .mbp-co-coupon{
    order: 4 !important;  /* fallback if JS hasn't moved it into recap-body yet */
  }

  /* Tables fit container, content wraps */
  body.woocommerce-checkout table.shop_table{
    table-layout: fixed !important;
    width: 100% !important;
  }
  body.woocommerce-checkout table.shop_table th,
  body.woocommerce-checkout table.shop_table td{
    word-wrap: break-word;
    overflow-wrap: anywhere;
  }
  body.woocommerce-checkout img,
  body.woocommerce-checkout svg{
    max-width: 100%;
    height: auto;
  }

  /* Trust strip + payment icons — wrap, no fixed widths */
  body.woocommerce-checkout .mbp-checkout-trust-row{
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 6px 8px !important;
  }
  body.woocommerce-checkout .mbp-checkout-trust-item{
    flex: 1 1 calc(50% - 4px) !important;
  }

  /* Site header — never wider than viewport (use 100% not 100vw — vw includes scrollbar) */
  body.woocommerce-checkout .mbp-site-header,
  body.woocommerce-checkout .mbp-header-inner{
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden;
  }

  /* Form-coupon, payment indicator — full width, no overflow */
  body.woocommerce-checkout .woocommerce-billing-fields__field-wrapper{
    grid-template-columns: 1fr !important;
  }

  /* === Mobile collapsible order summary header === */
  body.woocommerce-checkout .mbp-recap-mobile-header{
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s, box-shadow .15s;
    width: 100%;
    box-sizing: border-box;
  }
  body.woocommerce-checkout .mbp-recap-mobile-header:hover,
  body.woocommerce-checkout .mbp-recap-mobile-header:focus{
    border-color: #7C3AED;
    outline: none;
  }
  body.woocommerce-checkout .mbp-recap-mobile-title{
    font-weight: 700;
    font-size: 15px;
    color: var(--mbp-ink);
  }
  body.woocommerce-checkout .mbp-recap-mobile-total{
    margin-left: auto;
    margin-right: 10px;
    font-weight: 800;
    font-size: 16px;
    color: var(--mbp-ink);
    white-space: nowrap;
  }
  body.woocommerce-checkout .mbp-recap-mobile-chev{
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(124,58,237,.10);
    color: #7C3AED;
    transition: transform .25s ease, background-color .15s;
  }
  body.woocommerce-checkout .mbp-recap-mobile-chev svg{
    width: 18px; height: 18px;
    display: block;
  }
  /* Down-chevron when collapsed; rotate 180° (flip up) when expanded */
  body.woocommerce-checkout .mbp-recap-mobile-header[aria-expanded="true"] .mbp-recap-mobile-chev{
    transform: rotate(180deg);
    background: rgba(124,58,237,.18);
  }
  /* Collapse the recap body on mobile by default — JS toggles data-collapsed */
  body.woocommerce-checkout .mbp-recap-body[data-collapsed="true"]{
    display: none !important;
  }
  /* When the coupon is JS-moved into the recap body on mobile,
     keep its top spacing tight and remove its own card shadow (already inside recap card). */
  body.woocommerce-checkout .mbp-recap-body .mbp-co-coupon{
    box-shadow: none !important;
    border-radius: 12px;
    border: 1px dashed #E5E7EB;
    margin: 12px 0 8px !important;
    background: #FAFBFC;
  }

  /* === Sticky bottom CTA bar === */
  body.woocommerce-checkout .mbp-mobile-cta-bar{
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    /* HARD-NAIL the bar to viewport — flex with nowrap children can grow the
     * bar beyond the viewport otherwise. */
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    z-index: 1000;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
    background: rgba(255,255,255,0.98);
    border-top: 1px solid #E5E7EB;
    box-shadow: 0 -4px 18px rgba(15,23,42,.10);
    backdrop-filter: saturate(180%) blur(8px);
    -webkit-backdrop-filter: saturate(180%) blur(8px);
    overflow: hidden !important;   /* clip any child that won't shrink */
    box-sizing: border-box !important;
  }
  /* Single combined CTA button — "Place order · $24.90" */
  body.woocommerce-checkout .mbp-mobile-cta-button{
    /* flex: 1 1 0 (instead of 1 1 100%) lets the button actually shrink below
     * its content's natural width. min-width: 0 allows shrinking past min-content.
     * overflow: hidden + text-overflow: ellipsis clips text if too narrow. */
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(90deg, #6D28D9, #EC4899);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(124,58,237,.30);
    transition: opacity .15s, transform .15s, box-shadow .15s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: .1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
  }
  body.woocommerce-checkout .mbp-mobile-cta-button-sep{
    opacity: 0.65;
    font-weight: 500;
    margin: 0 2px;
  }
  body.woocommerce-checkout .mbp-mobile-cta-button-amount{
    font-weight: 800;
  }
  body.woocommerce-checkout .mbp-mobile-cta-button:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(124,58,237,.40);
  }
  body.woocommerce-checkout .mbp-mobile-cta-button:disabled{
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
  }

  /* === Second order summary at bottom (mobile only) === */
  body.woocommerce-checkout .mbp-mobile-bottom-recap{
    display: block;
    margin: 18px 12px 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(15,23,42,.04);
  }
  body.woocommerce-checkout .mbp-mobile-bottom-title{
    font-size: 16px;
    font-weight: 700;
    color: var(--mbp-ink);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F1F5F9;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-items{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info{
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    padding-left: 52px;  /* room for absolute thumbnail */
    min-height: 44px;
  }
  /* Reuse the recap-row/text/qty styling from the top recap so the bottom
     recap looks identical (thumb left, name + bonus badge + delivery + qty
     + variation/meta to its right). */
  body.woocommerce-checkout .mbp-mobile-bottom-info .mbp-recap-row{
    display: contents;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info .mbp-recap-thumb{
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #F1F5F9;
    background: #F8FAFC;
    display: block;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info span.mbp-recap-thumb-fallback{
    display: block !important;
    background-color: #F8FAFC;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2394A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="5"/><circle cx="12" cy="12" r="3.5"/><circle cx="17.5" cy="6.5" r="0.6" fill="%2394A3B8"/></svg>');
    background-size: 22px 22px;
    background-repeat: no-repeat;
    background-position: center;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info .mbp-recap-text{
    display: block !important;
    font-size: 13px;
    font-weight: 600;
    color: var(--mbp-ink);
    line-height: 1.35;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info .mbp-bonus-badge{
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    padding: 3px 9px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(124,58,237,.12), rgba(236,72,153,.12));
    color: #7C3AED;
    font-size: 10.5px;
    font-weight: 700;
    white-space: nowrap;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info .mbp-delivery-tag{
    display: block;
    margin-top: 4px;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--mbp-muted);
  }
  /* Hide the WC default "× N" strong (we render Quantity: N via the filter) */
  body.woocommerce-checkout .mbp-mobile-bottom-info > strong.product-quantity{
    display: none !important;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info .mbp-recap-qty{
    display: block;
    margin-top: 4px;
    font-size: 11.5px;
    color: var(--mbp-muted);
    font-weight: 400;
  }
  /* Variation/meta (For: @username, etc.) */
  body.woocommerce-checkout .mbp-mobile-bottom-info dl.variation,
  body.woocommerce-checkout .mbp-mobile-bottom-info .wc-item-meta,
  body.woocommerce-checkout .mbp-mobile-bottom-info p.variation{
    margin: 4px 0 0 !important;
    padding: 0 !important;
    font-size: 11.5px !important;
    color: var(--mbp-muted) !important;
    line-height: 1.4 !important;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info dl.variation dt,
  body.woocommerce-checkout .mbp-mobile-bottom-info .wc-item-meta-label{
    display: inline !important;
    font-weight: 600 !important;
    color: #475569 !important;
    margin-right: 4px;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info dl.variation dd,
  body.woocommerce-checkout .mbp-mobile-bottom-info .wc-item-meta-value{
    display: inline !important;
    margin: 0 !important;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-info dl.variation dd p{
    display: inline !important;
    margin: 0 !important;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-price{
    font-size: 13.5px;
    font-weight: 700;
    color: var(--mbp-ink);
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 2px;
  }
  /* [Remove] link on coupon row */
  body.woocommerce-checkout .mbp-mobile-bottom-discount-value{
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-remove{
    color: #94A3B8;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    margin-left: 4px;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-remove:hover,
  body.woocommerce-checkout .mbp-mobile-bottom-remove:focus{
    color: #EF4444;
    text-decoration: underline;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-totals{
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #F1F5F9;
    padding-top: 10px;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-row{
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--mbp-ink);
  }
  body.woocommerce-checkout .mbp-mobile-bottom-row.mbp-mobile-bottom-discount{
    color: #16A34A;
    font-weight: 600;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-row.mbp-mobile-bottom-total{
    border-top: 1px solid #E5E7EB;
    padding-top: 8px;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 800;
  }
  body.woocommerce-checkout .mbp-mobile-bottom-row.mbp-mobile-bottom-total span:last-child{
    font-size: 18px;
    background: linear-gradient(90deg, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* === Minimal checkout footer (replaces hidden site footer on /checkout/) === */
body.woocommerce-checkout .mbp-checkout-footer{
  max-width: 1180px;
  margin: 24px auto 0;
  padding: 16px 24px 24px;
  text-align: center;
  border-top: 1px solid #F1F5F9;
}
body.woocommerce-checkout .mbp-checkout-footer-links{
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-checkout .mbp-checkout-footer-links a{
  color: var(--mbp-muted);
  font-size: 12.5px;
  text-decoration: none;
  transition: color .15s;
}
body.woocommerce-checkout .mbp-checkout-footer-links a:hover{
  color: #7C3AED;
  text-decoration: underline;
}
body.woocommerce-checkout .mbp-checkout-footer-copy{
  margin-top: 10px;
  color: #94A3B8;
  font-size: 11.5px;
}
@media (max-width: 768px){
  body.woocommerce-checkout .mbp-checkout-footer{
    padding: 14px 16px 16px;
    margin-bottom: 8px;
  }
  body.woocommerce-checkout .mbp-checkout-footer-links{
    gap: 6px 14px;
    font-size: 12px;
  }
}

/* ============================================================================
   Phase D-9 — Sephora-style cart_item layout in the recap.
   Thumb is absolute-positioned at left of the .product-name TD; title +
   quantity + variation/meta all stack to its right via padding-left on the TD.
   ============================================================================ */

/* TD becomes the positioning context for the thumb */
body.woocommerce-checkout #order_review .shop_table tr.cart_item td.product-name{
  position: relative !important;
  padding-left: 60px !important;
  min-height: 50px;
  vertical-align: top;
}
/* Flatten the .mbp-recap-row span so its thumb-child is positioned absolutely
   while the text-child is in normal flow. */
body.woocommerce-checkout #order_review .shop_table .mbp-recap-row{
  display: contents !important;
}
body.woocommerce-checkout #order_review .shop_table .mbp-recap-thumb{
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  border-radius: 10px !important;
  object-fit: cover;
  border: 1px solid #F1F5F9;
  background: #F8FAFC;
}
/* Fallback thumbnail: empty span styled as 48x48 with an Instagram-style
   camera icon rendered via CSS background-image (data URI).
   wp_kses_post can't touch CSS, so the icon survives WC's review-order render. */
body.woocommerce-checkout #order_review .shop_table span.mbp-recap-thumb-fallback{
  display: block !important;
  background-color: #F8FAFC;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2394A3B8" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="3" width="18" height="18" rx="5"/><circle cx="12" cy="12" r="3.5"/><circle cx="17.5" cy="6.5" r="0.6" fill="%2394A3B8"/></svg>');
  background-size: 26px 26px;
  background-repeat: no-repeat;
  background-position: center;
}
body.woocommerce-checkout #order_review .shop_table .mbp-recap-text{
  display: block !important;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--mbp-ink);
  line-height: 1.35;
  margin: 0 !important;
}

/* New Quantity line: always block, just under the title */
body.woocommerce-checkout #order_review .shop_table .mbp-recap-qty{
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--mbp-muted);
}

/* Delivery mode line — no label, just the text in muted style */
body.woocommerce-checkout #order_review .shop_table .mbp-delivery-tag{
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: var(--mbp-muted);
}

/* WC notice (success / info / error) — give the ::before icon room */
body.woocommerce-checkout .woocommerce-message,
body.woocommerce-checkout .woocommerce-info,
body.woocommerce-checkout .woocommerce-error{
  position: relative !important;
  padding: 14px 18px 14px 52px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}
body.woocommerce-checkout .woocommerce-message::before,
body.woocommerce-checkout .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-error::before{
  position: absolute !important;
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  font-size: 16px !important;
}
body.woocommerce-checkout .woocommerce-message a.button,
body.woocommerce-checkout .woocommerce-info a.button{
  margin-left: auto;
  font-size: 12px;
  padding: 6px 12px;
}

/* Bonus badge — prominent, brand-gradient, sits under the product title. */
body.woocommerce-checkout #order_review .shop_table .mbp-bonus-badge{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124,58,237,.12), rgba(236,72,153,.12));
  color: #7C3AED;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

/* Discount row in the totals table — green, prominent, "savings" feel */
body.woocommerce-checkout #order_review .shop_table tr.cart-discount th,
body.woocommerce-checkout #order_review .shop_table tr.cart-discount td{
  color: #16A34A !important;
  font-weight: 700 !important;
  font-size: 13.5px !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  border-top: 1px solid #F1F5F9 !important;
}
body.woocommerce-checkout #order_review .shop_table tr.cart-discount th{
  text-transform: none !important;
  letter-spacing: 0 !important;
}
/* The "Remove coupon" link in the discount row, styled small + muted */
body.woocommerce-checkout #order_review .shop_table tr.cart-discount .woocommerce-remove-coupon{
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 500;
  color: #94A3B8;
  text-decoration: none;
}
body.woocommerce-checkout #order_review .shop_table tr.cart-discount .woocommerce-remove-coupon:hover{
  color: #EF4444;
  text-decoration: underline;
}
/* Hide WC's default <strong>× 1</strong> if any other path renders it */
body.woocommerce-checkout #order_review .shop_table .product-name > strong.product-quantity{
  display: none !important;
}

/* Variation/meta: now flow naturally inside the padded TD — kill the 56px
   left margin that earlier phases added (would double-indent now). */
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation,
body.woocommerce-checkout #order_review .shop_table .product-name .wc-item-meta,
body.woocommerce-checkout #order_review .shop_table .product-name p.variation{
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  font-size: 12px !important;
  color: var(--mbp-muted) !important;
  line-height: 1.45 !important;
}
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation dt,
body.woocommerce-checkout #order_review .shop_table .product-name .wc-item-meta-label{
  display: inline !important;
  font-weight: 600 !important;
  color: #475569 !important;
  margin-right: 4px;
}
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation dd,
body.woocommerce-checkout #order_review .shop_table .product-name .wc-item-meta-value{
  display: inline !important;
  margin: 0 !important;
}
body.woocommerce-checkout #order_review .shop_table .product-name dl.variation dd p{
  display: inline !important;
  margin: 0 !important;
}

/* Price column right-aligned, top-aligned to match Sephora pattern */
body.woocommerce-checkout #order_review .shop_table tr.cart_item td.product-total{
  vertical-align: top !important;
  text-align: right !important;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  padding-left: 12px;
}

/* All price-bearing TD/TH cells in order_review table — consistent baseline */
body.woocommerce-checkout #order_review .shop_table tfoot th{
  text-align: left !important;
  font-weight: 600;
  color: var(--mbp-muted);
  font-size: 13px;
  padding-right: 12px !important;
}
body.woocommerce-checkout #order_review .shop_table tfoot td{
  text-align: right !important;
  white-space: nowrap;
  padding-left: 12px !important;
  font-weight: 700;
  font-size: 14px;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total th{
  font-size: 14px;
  font-weight: 700;
  color: var(--mbp-ink);
  text-transform: none;
  letter-spacing: 0;
}
body.woocommerce-checkout #order_review .shop_table tfoot tr.order-total td{
  font-size: 14px;     /* the .amount inside is 24px, label-like context is 14px */
}

/* ============================================================================
   Phase D-12 — Compact reassurance section UNDER Place Order button.
   Replaces the previous 4-badge + Trustpilot card + "We accept" tower.
   Three tight inline rows: Trustpilot (one line), 2-icon reassurance, payment icons.
   Wins over earlier rules via specificity + later position in stylesheet.
   ============================================================================ */

/* The trust strip now lives INSIDE .form-row.place-order (after place_order
   button) via the woocommerce_review_order_after_submit hook. Earlier
   :hidden rule scoped to .woocommerce-checkout but expecting it inside
   .woocommerce-checkout-review-order > #payment > .form-row.place-order
   still matches because that's exactly the new render position. */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust{
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid #F1F5F9 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 14px 0 0 !important;
  margin: 16px 0 0 !important;
  text-align: center;
}

/* Hide the OLD 4-badge grid (still in DOM in some cached renders) */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-row{
  display: none !important;
}

/* Row 1 — Trustpilot inline: stars · "Excellent 4.7 · 15,000+ reviews" · Trustpilot logo */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-rating{
  display: inline-flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 8px !important;
  font-size: 13px !important;
  color: var(--mbp-ink) !important;
  line-height: 1.3;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-rating strong{
  font-weight: 700;
  color: var(--mbp-ink);
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-stars{
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-stars svg{
  width: 76px !important;
  height: 14px !important;
  display: block;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-rating-text{
  font-size: 12.5px !important;
  white-space: nowrap;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-tplogo{
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
}

/* Row 2 — Inline reassurance (Secure payment · 30-day money back) */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-reassure{
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 8px !important;
  margin: 8px 0 0 !important;
  font-size: 12px !important;
  color: var(--mbp-muted) !important;
  font-weight: 500;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-reassure-item{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  color: var(--mbp-muted);
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-reassure-item svg{
  flex: 0 0 14px;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-reassure-sep{
  color: #CBD5E1;
  font-weight: 700;
}

/* Row 3 — Payment icons inline, NO label, small.
   Important !important on flex-direction/align-items because the old rule
   at style.css:7195 sets column-stack on mobile. */
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-pay-row{
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-pay-row-label{
  display: none !important;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-pay-row-icons{
  display: contents;
}
body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-pay-icon{
  width: 30px !important;
  height: 19px !important;
  flex: 0 0 auto;
}

/* Mobile: keep tight, allow Trustpilot to wrap to max 2 lines */
@media (max-width: 768px){
  body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust{
    margin: 14px 0 0 !important;
    padding: 12px 0 0 !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-rating{
    gap: 4px 6px !important;
    font-size: 12.5px !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-rating-text{
    font-size: 12px !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-checkout-trust-reassure{
    font-size: 11.5px !important;
    gap: 3px 6px !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order .mbp-pay-icon{
    width: 28px !important;
    height: 18px !important;
  }
}

/* Privacy paragraph — keep small, stay below the trust strip */
body.woocommerce-checkout #order_review #payment .woocommerce-privacy-policy-text p{
  font-size: 10.5px !important;
  color: #94A3B8 !important;
  margin: 8px 0 0 !important;
  line-height: 1.45;
  text-align: center;
}

/* ============================================================================
   Phase I — Mobile perfection pass (≤768px only). No structural changes.
   Tighter spacing, button consistency, smoother flow within each section.
   ============================================================================ */
@media (max-width: 768px){
  /* Global section spacing — slight tightening from Phase H 40px → 36px */
  .mb-product-page > section{
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .mb-product-page .mbp-section-head{ margin-bottom: 18px !important; }
  .mb-product-page .mbp-section-title{
    font-size: 22px !important;
    line-height: 1.22 !important;
  }
  .mb-product-page .mbp-section-sub{
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-top: 6px !important;
  }

  /* Buttons — consistent height, centered/full-width feel */
  .mb-product-page .mbp-btn,
  .mb-product-page .mbp-xsell-cta,
  .mb-product-page .mbp-faq-order-btn,
  .mb-product-page .mbp-final-cta{
    min-height: 48px !important;
    font-size: 14.5px !important;
    padding: 0 18px !important;
  }

  /* WHY NOW — tighter cards, less vertical space.
     Note: extra `.mbp-urgency-section` parent in selector to win over Phase H. */
  .mb-product-page .mbp-urgency-section{ padding-top: 32px !important; padding-bottom: 32px !important; }
  .mb-product-page .mbp-urgency-grid{ gap: 10px !important; }
  .mb-product-page .mbp-urgency-section .mbp-urgency-card{
    padding: 14px !important;
  }
  .mb-product-page .mbp-urgency-card .mbp-urgency-icon{
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }
  .mb-product-page .mbp-urgency-card h3{
    font-size: 14.5px !important;
    line-height: 1.3 !important;
    margin: 0 0 4px !important;
  }
  .mb-product-page .mbp-urgency-card p{
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }
  .mb-product-page .mbp-urgency-quote{
    margin-top: 18px !important;
    padding: 12px 14px !important;
    font-size: 13px !important;
    line-height: 1.45;
  }

  /* HOW IT WORKS — steps aligned, icons centered, gaps tight */
  .mb-product-page .mbp-howit-section{ padding-top: 32px !important; padding-bottom: 32px !important; }
  .mb-product-page .mbp-howit-grid{
    gap: 10px !important;
  }
  .mb-product-page .mbp-howit-card{
    padding: 14px !important;
    text-align: center;
  }
  .mb-product-page .mbp-howit-step{
    display: inline-block;
    margin-bottom: 6px !important;
  }
  .mb-product-page .mbp-howit-card p{
    font-size: 13.5px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }

  /* WHY MYBOOSTA — equal-height cards, less vertical space.
     Note: extra `.mbp-howit-section` parent so Phase I wins over Phase H. */
  .mb-product-page .mbp-howit-section .mbp-why2-grid{
    gap: 10px !important;
    align-items: stretch !important;
  }
  .mb-product-page .mbp-howit-section .mbp-why2-card{
    padding: 14px !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .mb-product-page .mbp-why2-card .mbp-why2-icon{
    font-size: 26px !important;
    margin-bottom: 6px !important;
  }
  .mb-product-page .mbp-why2-card h3{
    font-size: 14.5px !important;
    line-height: 1.3 !important;
    margin: 0 0 4px !important;
  }
  .mb-product-page .mbp-why2-card p{
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
    flex: 1 1 auto;
  }

  /* RESULTS — only 1 phone, perfectly centered, no overflow */
  .mb-product-page .mbp-results-section{ padding-top: 28px !important; padding-bottom: 28px !important; }
  .mb-product-page .mbp-phones-row{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 auto !important;
  }
  .mb-product-page .mbp-phones-row .mbp-phone{
    margin: 0 auto !important;
    transform: none !important;     /* override desktop center-tilt */
  }
  .mb-product-page .mbp-phones-row .mbp-phone:nth-child(n+2){ display: none !important; }
  .mb-product-page .mbp-call-bar{
    margin-top: 18px !important;
    padding: 10px 14px !important;
    font-size: 13px !important;
    text-align: center;
  }

  /* TRUSTPILOT REVIEWS — compact carousel cards */
  .mb-product-page .mbp-tp-section{ padding-top: 28px !important; padding-bottom: 28px !important; }
  .mb-product-page .mbp-tp-summary{ margin-bottom: 14px !important; }
  .mb-product-page .mbp-tp-summary .mbp-tp-rating-word{ font-size: 24px !important; }
  .mb-product-page .mbp-tp-section .mbp-tp-grid > .mbp-tp-card{
    flex: 0 0 270px !important;
    max-width: 270px !important;
    padding: 14px !important;
  }
  .mb-product-page .mbp-tp-card-title{ font-size: 14px !important; margin: 6px 0 4px !important; }
  .mb-product-page .mbp-tp-card-text{
    font-size: 13px !important;
    line-height: 1.45 !important;
    /* Limit to ~3 lines max */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .mb-product-page .mbp-tp-card-foot{ font-size: 12px !important; }

  /* YOU MAY ALSO LIKE — already 270px from Phase G; tighten card internals */
  .mb-product-page .mbp-xsell-section{ padding-top: 28px !important; padding-bottom: 28px !important; }
  .mb-product-page .mbp-xsell-card{
    padding: 12px !important;
  }
  .mb-product-page .mbp-xsell-name{
    font-size: 14px !important;
    line-height: 1.25 !important;
    margin: 8px 0 6px !important;
  }
  .mb-product-page .mbp-xsell-price{
    font-size: 20px !important;
  }
  .mb-product-page .mbp-xsell-orders{
    font-size: 11px !important;
    margin-top: 4px !important;
  }
  .mb-product-page .mbp-xsell-cta{
    margin-top: 10px !important;
  }

  /* PRESS LOGOS — 2 per row already from Phase G; tighter padding */
  .mb-product-page .mbp-press-section{ padding-top: 24px !important; padding-bottom: 24px !important; }
  .mb-product-page .mbp-press-title{ font-size: 17px !important; }
  .mb-product-page .mbp-press-subtitle{ font-size: 12px !important; margin-bottom: 12px !important; }
  .mb-product-page .mbp-press-row{ gap: 14px 18px !important; }
  .mb-product-page .mbp-press-clients{ font-size: 12px !important; margin-top: 14px !important; }

  /* FAQ — tight accordion */
  .mb-product-page .mbp-faq-section{ padding-top: 28px !important; padding-bottom: 28px !important; }
  .mb-product-page .mbp-faq-stack{ gap: 6px !important; }
  .mb-product-page .mbp-faq-item summary{ padding: 12px 40px 12px 14px !important; }
  .mb-product-page .mbp-faq-item summary .mbp-faq-q{ font-size: 13.5px !important; line-height: 1.35; }
  .mb-product-page .mbp-faq-item[open] > p,
  .mb-product-page .mbp-faq-item[open] > div{
    padding: 0 14px 12px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
  .mb-product-page .mbp-faq-cta-bar{
    margin-top: 12px !important;
    padding: 10px 12px !important;
    font-size: 12.5px !important;
  }
  .mb-product-page .mbp-faq-order-btn{
    margin-top: 10px !important;
    width: 100%;
    max-width: 360px;
  }

  /* FINAL CTA STRIP — tight + centered */
  .mb-product-page .mbp-final-strip{ padding: 32px 12px !important; }
  .mb-product-page .mbp-final-strip .mbp-final-title{
    font-size: 22px !important;
    line-height: 1.22 !important;
    margin: 0 0 8px !important;
  }
  .mb-product-page .mbp-final-strip .mbp-final-sub{
    font-size: 13.5px !important;
    margin: 0 auto 16px !important;
    line-height: 1.45 !important;
  }
  .mb-product-page .mbp-final-strip .mbp-final-cta{
    width: 100% !important;
    max-width: 360px !important;
    min-height: 52px !important;
  }

  /* TRUST BAR + SOCIAL — slim */
  .mb-product-page .mbp-trust-bar{ padding-top: 12px !important; padding-bottom: 12px !important; }
  .mb-product-page .mbp-social-section{ padding-top: 28px !important; padding-bottom: 28px !important; }

  /* Hero subline + announcement strip — keep tight on mobile */
  .mb-product-page .mbp-hero-sub-line{ font-size: 13px !important; margin: 6px 0 10px !important; }

  /* Sticky CTA — already from Phase D-7/E; keep solid here */
  body.mbp-body .mbp-sticky-mobile{
    box-shadow: 0 -4px 18px rgba(15,23,42,.10);
  }
}

/* ============================================================================
   Phase J — Compact trust/payment pill strip under Add-to-cart.
   Markup (.mbp-trust-strip > .mbp-trust-strip-item × 4) had zero CSS, rendering
   as a default bulleted <ul>. This converts it to a slim pill row: small inline
   icons + short labels, single row desktop, wraps cleanly mobile.
   No markup changes. No cart/checkout/payment touched.
   ============================================================================ */
.mb-product-page .mbp-trust-strip{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 8px;
  margin: 14px 0 0;
  padding: 0;
}
.mb-product-page .mbp-trust-strip-item{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #F1F5F9;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid rgba(148,163,184,.18);
}
.mb-product-page .mbp-trust-strip-item svg{
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: #7C3AED;
  stroke-width: 1.8;
}
@media (max-width: 768px){
  .mb-product-page .mbp-trust-strip{
    gap: 6px;
    margin-top: 12px;
  }
  .mb-product-page .mbp-trust-strip-item{
    padding: 5px 9px;
    font-size: 11.5px;
  }
}

/* ============================================================================
   Phase K — Why MyBoosta icon centering fix + 3-card mobile single-column.
   Phase H set .mbp-why2-card to display:flex flex-direction:column without
   align-items:center, so the fixed-width icon aligned to flex-start (left).
   Also: at <=980px the urgency/howit/why2 grids drop to 1fr 1fr, leaving 3
   cards as ugly 2+1 — switch to single column at <=768px.
   No markup changes. No cart/checkout/payment touched.
   ============================================================================ */
.mb-product-page .mbp-why2-card{
  align-items: center !important;
}
@media (max-width: 768px){
  .mb-product-page .mbp-urgency-grid,
  .mb-product-page .mbp-howit-grid,
  .mb-product-page .mbp-why2-grid{
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* ============================================================================
   Phase M — Instagram phone-mock realism: make the static profile look
   non-interactive (screenshot feel). Disable clicks, text selection, hover
   inside the mock; restyle Follow/Message/Contact buttons to flat IG colors.
   No markup changes beyond the one-character "Following" PHP edit.
   No cart/checkout/payment touched.
   ============================================================================ */
.mb-product-page .mbp-phone-screen,
.mb-product-page .mbp-phone-screen *{
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  cursor: default !important;
}

.mb-product-page .mbp-phone-btn-follow{
  background: #EFEFEF !important;
  color: #262626 !important;
  border: 1px solid #DBDBDB !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  padding: 6px 12px !important;
  height: 30px !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transition: none !important;
}

.mb-product-page .mbp-phone-btn-msg{
  background: #EFEFEF !important;
  border: 1px solid #DBDBDB !important;
  color: #262626 !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  padding: 6px 12px !important;
  height: 30px !important;
  line-height: 1 !important;
  box-shadow: none !important;
  transition: none !important;
}

.mb-product-page .mbp-phone-btn-follow:hover,
.mb-product-page .mbp-phone-btn-msg:hover,
.mb-product-page .mbp-phone-btn-follow:focus,
.mb-product-page .mbp-phone-btn-msg:focus,
.mb-product-page .mbp-phone-btn-follow:active,
.mb-product-page .mbp-phone-btn-msg:active{
  background: #EFEFEF !important;
  color: #262626 !important;
  border-color: #DBDBDB !important;
  box-shadow: none !important;
  transform: none !important;
}

.mb-product-page .mbp-phone-buttons{
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 6px !important;
}

/* ============================================================================
   Phase O — Config urgency line near CTA. Small text + bold red number.
   No layout shift, no new section, scoped to .mb-product-page.
   ============================================================================ */
.mb-product-page .mbp-config-urgency{
  text-align: center;
  font-size: 12.5px;
  font-weight: 500;
  color: #475569;
  margin: 14px 0 8px;
  line-height: 1.3;
}
.mb-product-page .mbp-config-urgency strong{
  color: #EF4444;
  font-weight: 700;
}

/* ============================================================================
   Phase P — Phase K.1: tighten urgency + CTA block; left-align on desktop.
   Wins over Phase O (.mbp-config-urgency) and Phase J (.mbp-trust-strip)
   via later source position with equal specificity + !important.
   Mobile keeps the existing center alignment from Phase O (left-align is
   gated behind @media (min-width: 769px)).
   ============================================================================ */
.mb-product-page .mbp-config-urgency{
  margin-top: 6px !important;
  margin-bottom: 10px !important;
  font-size: 12px !important;
  color: #64748B !important;
  opacity: 0.9;
}
.mb-product-page .mbp-config-urgency strong{
  color: #EF4444 !important;
  font-weight: 600 !important;
}
.mb-product-page .mbp-trust-strip{
  margin-top: 10px !important;
}
@media (min-width: 769px){
  .mb-product-page .mbp-config-urgency{
    text-align: left !important;
  }
  .mb-product-page .mbp-config{
    align-items: flex-start !important;
  }
}

/* ============================================================================
   Phase Q — Phase K.3: trust badges single row desktop, 2x2 grid mobile.
   Wins over Phase J (.mbp-trust-strip flex-wrap defaults) by later source
   position with equal specificity + !important. Sits AFTER Phase P so the
   margin-top:10px from Phase P remains in effect (Phase Q does not redeclare
   margin).
   ============================================================================ */
.mb-product-page .mbp-trust-strip{
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  gap: 10px !important;
}
.mb-product-page .mbp-trust-strip-item{
  white-space: nowrap !important;
}
@media (max-width: 768px){
  .mb-product-page .mbp-trust-strip{
    display: grid !important;
    grid-template-columns: repeat(2, auto) !important;
    justify-content: center !important;
    gap: 8px 12px !important;
  }
}

/* ============================================================================
   Phase R — Phase K.4: visual crypto icons row inside crypto pill.
   Uses 3 brand-colored circle SVGs (BTC orange, ETH blue, USDT green) +
   small "and more" text. Selector specificity beats Phase J's generic
   .mbp-trust-strip-item svg sizing. No layout impact on other 3 pills.
   ============================================================================ */
.mb-product-page .mbp-trust-strip-payment .mbp-crypto-icons{
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.mb-product-page .mbp-trust-strip-payment .mbp-crypto-icons svg{
  width: 14px !important;
  height: 14px !important;
  flex: 0 0 14px !important;
  display: block;
  color: inherit !important;
}
.mb-product-page .mbp-trust-strip-payment .mbp-crypto-more{
  font-size: 11.5px;
  color: #475569;
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================================================
   Phase S — Trust strip 2-row layout: payment pill alone on top row,
   3 other pills below. CSS-only — no HTML reorder. crypto pill gets explicit
   grid-column: 1/-1 + grid-row: 1; other pills auto-fill row 2.
   Wins over Phase Q's flex/grid-2-col layout via later source position.
   ============================================================================ */
.mb-product-page .mbp-trust-strip{
  display: grid !important;
  grid-template-columns: repeat(3, auto) !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px 10px !important;
}
.mb-product-page .mbp-trust-strip-payment{
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  justify-self: center !important;
}
@media (max-width: 768px){
  .mb-product-page .mbp-trust-strip{
    gap: 6px 8px !important;
  }
}

/* ============================================================================
   Phase T — Phase K.4 v3 final: payment pill loses pill chrome (no bg, no
   border, no horizontal padding) and gains a "Pay with crypto" label.
   Visual is now an inline row of label + brand-color icons + "and more" —
   premium "we accept" style instead of a bordered chip.
   No layout impact on row 2 pills.
   ============================================================================ */
.mb-product-page .mbp-trust-strip-payment{
  background: transparent !important;
  border: none !important;
  padding: 4px 0 !important;
  font-weight: 500 !important;
  gap: 8px !important;
}
.mb-product-page .mbp-payment-label{
  font-size: 12.5px;
  font-weight: 600;
  color: #1F2937;
  letter-spacing: 0.1px;
  white-space: nowrap;
}
@media (max-width: 768px){
  .mb-product-page .mbp-payment-label{
    font-size: 12px;
  }
}

/* ============================================================================
   Phase U — Phase K.5: layout densification. CSS-only. Tighter configurator
   stack, smaller card paddings, delivery row hierarchy (flex 2:1), CTA block
   compaction. Wins via later source position + !important against earlier
   phase declarations on the same selectors.
   ============================================================================ */

/* Configurator vertical rhythm: tighter section stacking */
.mb-product-page .mbp-config{
  gap: 12px !important;
}
.mb-product-page .mbp-config .mbp-section-head{
  margin: 0 auto 10px !important;
}

/* Followers grid: tighter cards */
.mb-product-page .mbp-qty-grid{
  gap: 8px !important;
}
.mb-product-page .mbp-qty-card{
  padding: 12px 10px !important;
  border-radius: 12px !important;
}

/* Nationality cards: tighter padding */
.mb-product-page .mbp-nat-card{
  padding: 12px 14px !important;
}

/* Delivery row layout (desktop): selected wider than unselected */
.mb-product-page .mbp-delivery-stack{
  flex-direction: row !important;
  gap: 8px !important;
  align-items: stretch !important;
}
.mb-product-page .mbp-delivery-card{
  flex: 1 1 0 !important;
  padding: 12px 14px !important;
}
.mb-product-page .mbp-delivery-recommended{
  flex: 2 1 0 !important;
}

/* Coupon row: tighter */
.mb-product-page .mbp-coupon-btn{
  padding: 10px 12px !important;
}

/* CTA block: compact rhythm */
.mb-product-page .mbp-config-urgency{
  margin: 4px 0 6px !important;
}
.mb-product-page .mbp-cta-buynow{
  height: 56px !important;
}
.mb-product-page .mbp-cta-cart{
  height: 44px !important;
  margin-top: 6px !important;
}
.mb-product-page .mbp-trust-strip{
  margin-top: 6px !important;
}

/* Mobile guard: delivery stack returns to column (row would crush at <=768px) */
@media (max-width: 768px){
  .mb-product-page .mbp-delivery-stack{
    flex-direction: column !important;
  }
  .mb-product-page .mbp-delivery-card,
  .mb-product-page .mbp-delivery-recommended{
    flex: 1 1 auto !important;
  }
}

/* ============================================================================
   Phase V — Phase K.6: step grouping with card chrome on content stacks.
   Card chrome targets the 3 content stacks (qty-grid, nat-stack, delivery-stack)
   instead of the literal .mbp-config > * selector — this avoids carding buttons
   /urgency/trust strip which would look noisy. Same intent (each step's options
   inside a contained card), better visual outcome. CSS-only.
   ============================================================================ */

/* Configurator vertical rhythm + global left-align */
.mb-product-page .mbp-config{
  gap: 10px !important;
  text-align: left !important;
}

/* Section heads: left-aligned, tight to content, no auto centering */
.mb-product-page .mbp-config .mbp-section-head{
  margin: 0 0 6px 0 !important;
  max-width: none !important;
  text-align: left !important;
}
.mb-product-page .mbp-config .mbp-section-title{
  font-size: 15px !important;
  font-weight: 600 !important;
}

/* Card chrome on content step containers (no shadow, no gradient) */
.mb-product-page .mbp-qty-grid,
.mb-product-page .mbp-target-stack,
.mb-product-page .mbp-delivery-stack,
.mb-product-page .mbp-coupon-stack{
  background: #FFFFFF !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 14px !important;
  padding: 10px !important;
}

/* Delivery recommended: stronger black border emphasis */
.mb-product-page .mbp-delivery-recommended{
  border: 1.5px solid #111827 !important;
}

/* ============================================================================
   Phase W — Phase K.7: Show 4 popular qty options by default + "Show more"
   toggle (CSS-only via :has). Plus outer gradient border on .mbp-config to
   match MyBoost premium feel. No JS changes.
   ============================================================================ */

.mb-product-page .mbp-qty-toggle-input{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.mb-product-page .mbp-qty-grid .mbp-qty-hidden{
  display: none !important;
}

.mb-product-page .mbp-qty-grid:has(.mbp-qty-toggle-input:checked) .mbp-qty-hidden{
  display: block !important;
}

.mb-product-page .mbp-qty-grid:has(.mbp-qty-toggle-input:checked) .mbp-qty-toggle-btn{
  display: none !important;
}

.mb-product-page .mbp-qty-toggle-btn{
  grid-column: 1 / -1;
  display: block;
  text-align: center;
  padding: 10px 14px;
  background: #F1F5F9;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background .15s, border-color .15s;
  user-select: none;
}
.mb-product-page .mbp-qty-toggle-btn:hover{
  background: #E2E8F0;
  border-color: #CBD5E1;
}

.mb-product-page .mbp-config{
  border: 1px solid transparent !important;
  border-radius: 16px !important;
  padding: 10px !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #F472B6, #A855F7) border-box !important;
}

/* ============================================================================
   Phase X — Phase K.8: aggressive density push to fit page in 2 screenshots.
   Hero compaction (right column wider), step compaction, replace Phase W's
   solid gradient border with top-fade accent + soft ambient shadow, force
   .mbp-viral-pill and .mbp-tp-mini to span full column width.
   ============================================================================ */

/* Hero shorter + right column wider */
.mb-product-page .mbp-hero{
  padding: 16px 0 !important;
}
.mb-product-page .mbp-hero-grid{
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) !important;
  gap: 32px !important;
  align-items: start !important;
}

/* Step block compaction */
.mb-product-page .mbp-step{
  padding: 14px !important;
  border-radius: 14px !important;
}
.mb-product-page .mbp-step-label{
  font-size: 14.5px !important;
  margin-left: 32px !important;
  margin-bottom: 10px !important;
}
.mb-product-page .mbp-step-num-pill{
  top: 13px !important;
  left: 14px !important;
  width: 22px !important;
  height: 22px !important;
  font-size: 12px !important;
}

/* Force banner + Trustpilot to full column width */
.mb-product-page .mbp-viral-pill,
.mb-product-page .mbp-tp-mini{
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Replace Phase W solid gradient border with top-fade accent + soft shadow */
.mb-product-page .mbp-config{
  border: none !important;
  background: #ffffff !important;
  position: relative !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.04) !important;
}
.mb-product-page .mbp-config::before{
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #F472B6 30%, #A855F7 70%, transparent);
  border-radius: 2px;
  pointer-events: none;
}

/* Mobile: revert column to single, narrow the top-fade accent */
@media (max-width: 980px){
  .mb-product-page .mbp-hero-grid{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .mb-product-page .mbp-config::before{
    left: 25% !important;
    right: 25% !important;
  }
}

/* ============================================================================
   Phase Y — Phase K.9: match MyBoost exact measurements (audited live from
   myboost.fr/products/abonnees-instagram CSS). Strips Phase V's per-step
   card chrome (MyBoost has NONE — just margin-bottom: 12px between steps),
   strips Phase X's wrapper shadow/bg (MyBoost wrapper is transparent), shrinks
   step label/number/qty card sizes to MyBoost's exact px values. Keeps
   Phase X's top-fade gradient accent for premium feel.
   ============================================================================ */

/* Configurator wrapper: transparent, no shadow, no bg (MyBoost spec) */
.mb-product-page .mbp-config{
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Each step: just 12px margin-bottom, NO card chrome (override Phase V) */
.mb-product-page .mbp-step{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 12px !important;
  border-radius: 0 !important;
}
.mb-product-page .mbp-step:last-child{
  margin-bottom: 0 !important;
}

/* Step label: 12px gray (MyBoost spec) */
.mb-product-page .mbp-step-label{
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #888888 !important;
  margin-left: 28px !important;
  margin-bottom: 6px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

/* Step number circle: 20x20, 11px font (MyBoost spec) */
.mb-product-page .mbp-step-num-pill{
  top: 0 !important;
  left: 0 !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 11px !important;
}

/* Qty grid: exact MyBoost spec — 2-col, 8px gap, no card chrome */
.mb-product-page .mbp-qty-grid{
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  padding: 4px 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Qty card: MyBoost spec */
.mb-product-page .mbp-qty-card{
  padding: 10px 6px !important;
  border-radius: 12px !important;
  border: 2px solid #EBEBEB !important;
}

/* Qty value text: MyBoost 16px */
.mb-product-page .mbp-qty-num{
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}
.mb-product-page .mbp-qty-price{
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #888888 !important;
}
.mb-product-page .mbp-qty-bonus{
  font-size: 10px !important;
  font-weight: 800 !important;
}

/* Trustpilot mini: subtle compact box (MyBoost spec) */
.mb-product-page .mbp-tp-mini{
  padding: 8px 14px !important;
  background: #f8f8f8 !important;
  border: 1px solid #e8e8e8 !important;
  border-radius: 10px !important;
  gap: 12px !important;
  margin-bottom: 8px !important;
  flex-wrap: wrap !important;
}

/* Viral banner: tight padding (MyBoost spec) */
.mb-product-page .mbp-viral-pill{
  padding: 6px 14px !important;
  border: 1.5px dashed #00D26A !important;
  border-radius: 8px !important;
  background: transparent !important;
  margin-bottom: 8px !important;
  font-size: 13px !important;
  color: #065F46 !important;
}

/* Override Phase V card chrome on nationality / delivery / coupon stacks */
.mb-product-page .mbp-target-stack,
.mb-product-page .mbp-delivery-stack,
.mb-product-page .mbp-coupon-stack{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Show More toggle: smaller, tighter to match MyBoost "Voir plus" */
.mb-product-page .mbp-qty-toggle-btn{
  padding: 8px 12px !important;
  font-size: 12px !important;
}

/* ============================================================================
   Phase Z — Phase K.10: compact every preface section without removing any.
   Tighter sub-announcement bar, smaller hero subline, single-line Trustpilot,
   tighter input wrap. Goal: fit page in ~2 screenshots while keeping ALL
   existing sections intact. CSS-only.
   ============================================================================ */

/* Sub-announcement bar (urgency strip) — KEEP but compact */
.mb-product-page .mbp-urgency-strip{
  padding: 3px 16px !important;
  font-size: 11.5px !important;
  gap: 4px 8px !important;
}
.mb-product-page .mbp-urgency-strip .mbp-urgency-pulse{
  width: 6px !important;
  height: 6px !important;
}

/* Hero sub-line — KEEP but compact */
.mb-product-page .mbp-hero-sub-line{
  font-size: 12px !important;
  margin: 4px 0 6px !important;
  line-height: 1.3 !important;
}

/* Trustpilot mini: force single-line layout (rating + reviews on one row) */
.mb-product-page .mbp-tp-mini > .mbp-tp-mini-info{
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
}
.mb-product-page .mbp-tp-mini-info strong{
  font-size: 13px !important;
}
.mb-product-page .mbp-tp-mini-info > span{
  font-size: 11px !important;
  color: #666 !important;
}
.mb-product-page .mbp-tp-mini{
  padding: 6px 12px !important;
}
.mb-product-page .mbp-tp-mini .mbp-tp-stars-row{
  gap: 1px !important;
}
.mb-product-page .mbp-tp-mini .mbp-tp-mini-brand{
  font-size: 12px !important;
}

/* Search input wrap (Step 1) — tighter */
.mb-product-page .mbp-input-wrap{
  margin-bottom: 0 !important;
}
.mb-product-page .mbp-input{
  padding: 8px 12px 8px 36px !important;
  font-size: 13px !important;
}

/* Tag pill row (Credibility/Real/Guarantee/Visibility) — tighter */
.mb-product-page .mbp-trust-grid{
  gap: 4px !important;
  margin-bottom: 8px !important;
}

/* Title block — tighter (less margin under arrow) */
.mb-product-page .mbp-config-title{
  font-size: clamp(22px, 3vw, 28px) !important;
  line-height: 1.15 !important;
}
.mb-product-page .mbp-arrow-down{
  margin: 4px 0 8px !important;
}

/* ============================================================================
   Phase ZA — Phase K.11: match MyBoost's exact main-box gradient border,
   centered Trustpilot, hidden empty ig-preview, uniform qty card height with
   centered inner content. Audited from myboost.fr live JS inspection.
   ============================================================================ */

/* MyBoost-exact gradient border on .mbp-config (replaces Phase X top-fade) */
.mb-product-page .mbp-config{
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(
                #FF9D86 0%,
                #FF6EF8 15%,
                rgba(61, 186, 255, 0.5) 35%,
                rgba(61, 186, 255, 0.15) 50%,
                rgba(229, 229, 229, 0.1) 65%,
                rgba(229, 229, 229, 0) 75%
              ) border-box !important;
  border: 2px solid transparent !important;
  border-radius: 18px !important;
  padding: 14px !important;
  box-shadow: none !important;
}
.mb-product-page .mbp-config::before{
  display: none !important;
  content: none !important;
}

/* Trustpilot: center all data inline (MyBoost spec) */
.mb-product-page .mbp-tp-mini{
  justify-content: center !important;
}

/* Empty ig-preview placeholder: actually hide when [hidden] (some other rule was overriding) */
.mb-product-page .mbp-ig-preview[hidden]{
  display: none !important;
}

/* Qty cards: uniform height 76px + centered inner content (MyBoost spec) */
.mb-product-page .mbp-qty-grid{
  align-items: stretch !important;
}
.mb-product-page .mbp-qty-card{
  min-height: 76px !important;
  display: flex !important;
}
.mb-product-page .mbp-qty-card-inner{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* ============================================================================
   Phase ZB — Phase K.12: final pixel-match polish (audited live MyBoost):
   centered title, qty cards tighter to 76px, gradient text on selected qty,
   "Show more" transparent button matching .mb-more-link.
   ============================================================================ */

/* Center configurator title (MyBoost positions it visually centered) */
.mb-product-page .mbp-config-title{
  text-align: center !important;
}

/* Qty cards: tighter to MyBoost's 76px height */
.mb-product-page .mbp-qty-card{
  padding: 8px 6px !important;
  min-height: 70px !important;
}
.mb-product-page .mbp-qty-num{
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}
.mb-product-page .mbp-qty-price{
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  margin-top: 2px !important;
}
.mb-product-page .mbp-qty-bonus{
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  margin-top: 2px !important;
}

/* Selected qty card: gradient text on value (MyBoost pixel-exact) */
.mb-product-page .mbp-qty-card.is-selected .mbp-qty-num,
.mb-product-page .mbp-qty-card[aria-checked="true"] .mbp-qty-num,
.mb-product-page .mbp-qty-card:has(input:checked) .mbp-qty-num{
  background: linear-gradient(90deg, #FF9D86, #FF6EF8, #3DBAFF) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
.mb-product-page .mbp-qty-card.is-selected .mbp-qty-price,
.mb-product-page .mbp-qty-card[aria-checked="true"] .mbp-qty-price,
.mb-product-page .mbp-qty-card:has(input:checked) .mbp-qty-price{
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Show more toggle: transparent button matching MyBoost .mb-more-link */
.mb-product-page .mbp-qty-toggle-btn{
  background: transparent !important;
  color: #555555 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  border: none !important;
  border-radius: 10px !important;
}
.mb-product-page .mbp-qty-toggle-btn:hover{
  background: rgba(0,0,0,.04) !important;
  border: none !important;
}

/* Help toggle "How do I find my @?" — match MyBoost .mb-guide-link compact pill */
.mb-product-page .mbp-help-toggle{
  margin-top: 6px !important;
}
.mb-product-page .mbp-help-toggle summary{
  background: #f5f5f5 !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #555 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

/* ============================================================================
   Phase ZC — Phase K.13: move gradient border from .mbp-config to .mbp-buy-form.
   .mbp-buy-form is the form that wraps ONLY the steps + CTAs (NOT the title /
   Trustpilot / tag pills above it). This excludes Trustpilot from the border
   like MyBoost's .mb-main-box does. Also tighten padding so qty cards extend
   close to the border edge (kill the empty white space inside).
   ============================================================================ */

/* Strip the gradient border from .mbp-config (was Phase ZA) */
.mb-product-page .mbp-config{
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* Move the gradient border to .mbp-buy-form (the actual form wrapper) */
.mb-product-page .mbp-buy-form{
  background: linear-gradient(#fff, #fff) padding-box,
              linear-gradient(
                #FF9D86 0%,
                #FF6EF8 15%,
                rgba(61, 186, 255, 0.5) 35%,
                rgba(61, 186, 255, 0.15) 50%,
                rgba(229, 229, 229, 0.1) 65%,
                rgba(229, 229, 229, 0) 75%
              ) border-box !important;
  border: 2px solid transparent !important;
  border-radius: 18px !important;
  padding: 14px !important;
  margin-top: 10px !important;
}

/* Title: properly centered using margin auto + fit-content (text-align alone
   was not enough since title block is full column width) */
.mb-product-page .mbp-config-title{
  text-align: center !important;
  display: block !important;
  width: 100% !important;
}

/* Tag pills row centered (under Trustpilot, before form) */
.mb-product-page .mbp-trust-grid{
  justify-content: center !important;
}

/* Viral pill, hero subline, Trustpilot — all centered preface elements */
.mb-product-page .mbp-viral-pill,
.mb-product-page .mbp-hero-sub-line,
.mb-product-page .mbp-tp-mini{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ============================================================================
   Phase ZD — Phase K.14: force .mbp-buy-form (and Trustpilot/banner/tag-grid)
   to width: 100% so they extend full column width like MyBoost's layout.
   Form was sizing to content; this stretches it edge-to-edge.
   ============================================================================ */
.mb-product-page .mbp-buy-form{
  width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}
.mb-product-page .mbp-tp-mini,
.mb-product-page .mbp-viral-pill,
.mb-product-page .mbp-trust-grid,
.mb-product-page .mbp-hero-sub-line{
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Ensure .mbp-config stretches its children full width */
.mb-product-page .mbp-config{
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
}

/* ============================================================================
   Phase ZE — Phase K.15: Trustpilot brand was pushed right by some
   pre-existing margin-left: auto. Reset margins so all 3 children
   (stars, rating info, brand) cluster centered together.
   Force info to single-line row (was column-stack from earlier rules).
   ============================================================================ */
.mb-product-page .mbp-tp-mini > *{
  margin-left: 0 !important;
  margin-right: 0 !important;
  flex: 0 0 auto !important;
}
.mb-product-page .mbp-tp-mini > .mbp-tp-mini-info{
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 6px !important;
}

/* ============================================================================
   Phase ZF — Phase K.16: Show more button = solid black with chevron, toggleable
   so user can collapse back. Override Phase W's "hide when expanded" rule.
   Two text spans (more/less) swap based on :has(:checked); chevron rotates 180.
   ============================================================================ */
.mb-product-page .mbp-qty-toggle-btn{
  background: #000000 !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  border-radius: 12px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  transition: background .15s !important;
  width: 100% !important;
  border: none !important;
  margin-top: 8px !important;
}
.mb-product-page .mbp-qty-toggle-btn:hover{
  background: #1a1a1a !important;
  border: none !important;
}

/* Default: show "Show more", hide "Show less" */
.mb-product-page .mbp-qty-toggle-text-less{
  display: none !important;
}

/* When expanded: hide "Show more", show "Show less" */
.mb-product-page .mbp-qty-grid:has(.mbp-qty-toggle-input:checked) .mbp-qty-toggle-text-more{
  display: none !important;
}
.mb-product-page .mbp-qty-grid:has(.mbp-qty-toggle-input:checked) .mbp-qty-toggle-text-less{
  display: inline !important;
}

/* Chevron rotates 180° when expanded */
.mb-product-page .mbp-qty-toggle-chev{
  transition: transform .25s ease !important;
  flex-shrink: 0 !important;
}
.mb-product-page .mbp-qty-grid:has(.mbp-qty-toggle-input:checked) .mbp-qty-toggle-chev{
  transform: rotate(180deg) !important;
}

/* CRITICAL: keep button visible after expansion (override Phase W) */
.mb-product-page .mbp-qty-grid:has(.mbp-qty-toggle-input:checked) .mbp-qty-toggle-btn{
  display: flex !important;
}

/* ============================================================================
   Phase N — Instagram blue Following button + equal-width fit + blue verified.
   Inserted AFTER Phase M so Phase N wins the cascade with equal specificity.
   No markup changes beyond the Contact-button removal in the PHP.
   No cart/checkout/payment touched.
   ============================================================================ */
.mb-product-page .mbp-phone-buttons{
  display: flex !important;
  flex-direction: row !important;
  gap: 6px !important;
  width: 100% !important;
}
.mb-product-page .mbp-phone-btn-follow,
.mb-product-page .mbp-phone-btn-msg{
  flex: 1 1 0 !important;
  min-width: 0 !important;
  justify-content: center !important;
  padding: 6px 8px !important;
}

/* Following = Instagram blue, no border */
.mb-product-page .mbp-phone-btn-follow{
  background: #0095F6 !important;
  color: #FFFFFF !important;
  border: none !important;
}
.mb-product-page .mbp-phone-btn-follow:hover,
.mb-product-page .mbp-phone-btn-follow:focus,
.mb-product-page .mbp-phone-btn-follow:active{
  background: #0095F6 !important;
  color: #FFFFFF !important;
  border: none !important;
}

/* Verified badge → Instagram blue */
.mb-product-page .mbp-phone-verified{
  color: #0095F6 !important;
}

/* ============================================================================
   Phase L — Press logos: full color always, content centered.
   Phase G applied filter: grayscale(100%) opacity(.65) by default with :hover
   restoring color. User wants original colors always, no hover requirement.
   Also: .mbp-press-logo is display: inline-flex with default justify-content
   flex-start, so on narrow mobile (50% width cells) inner text aligned left.
   Override to center.
   No markup changes. No cart/checkout/payment touched.
   ============================================================================ */
.mb-product-page .mbp-press-logo{
  filter: none !important;
  opacity: 1 !important;
  justify-content: center !important;
  text-align: center !important;
}
.mb-product-page .mbp-press-logo:hover{
  filter: none !important;
  opacity: 1 !important;
}

/* ============================================================================
   Phase H — Final structure polish: standardize section spacing across all
   .mb-product-page sections (desktop ~64px, mobile ~40px), title hierarchy,
   final CTA strip styling. Wins via specificity + late position.
   ============================================================================ */

/* Standardize section vertical padding — desktop 64px, mobile 40px */
.mb-product-page > section{
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
@media (max-width: 768px){
  .mb-product-page > section{
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

/* Tighter section heads — consistent margin-bottom across the page */
.mb-product-page .mbp-section-head{ margin-bottom: 32px !important; }
@media (max-width: 768px){
  .mb-product-page .mbp-section-head{ margin-bottom: 22px !important; }
}

/* Title hierarchy — H2 section titles consistent */
.mb-product-page .mbp-section-title{
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.02em;
}
.mb-product-page .mbp-section-sub{
  color: #64748B;
  font-size: 15px;
  margin-top: 8px;
}
@media (max-width: 768px){
  .mb-product-page .mbp-section-title{ font-size: 24px !important; }
  .mb-product-page .mbp-section-sub{ font-size: 13.5px !important; }
}

/* Per-section overrides — each gets a tighter feel without losing identity */
.mb-product-page .mbp-trust-bar{ padding-top: 28px !important; padding-bottom: 28px !important; }
.mb-product-page .mbp-social-section{ padding-top: 48px !important; padding-bottom: 32px !important; }
.mb-product-page .mbp-urgency-section{ padding-top: 48px !important; padding-bottom: 48px !important; }
.mb-product-page .mbp-howit-section{ padding-top: 48px !important; padding-bottom: 48px !important; }
.mb-product-page .mbp-results-section{ padding-top: 48px !important; padding-bottom: 32px !important; }
.mb-product-page .mbp-tp-section{ padding-top: 48px !important; padding-bottom: 32px !important; }
.mb-product-page .mbp-xsell-section{ padding-top: 48px !important; padding-bottom: 32px !important; }
.mb-product-page .mbp-press-section{ padding-top: 32px !important; padding-bottom: 32px !important; }
.mb-product-page .mbp-faq-section{ padding-top: 48px !important; padding-bottom: 32px !important; }
@media (max-width: 768px){
  .mb-product-page .mbp-trust-bar{ padding-top: 18px !important; padding-bottom: 18px !important; }
  .mb-product-page .mbp-social-section,
  .mb-product-page .mbp-urgency-section,
  .mb-product-page .mbp-howit-section,
  .mb-product-page .mbp-results-section,
  .mb-product-page .mbp-tp-section,
  .mb-product-page .mbp-xsell-section,
  .mb-product-page .mbp-press-section,
  .mb-product-page .mbp-faq-section{
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
}

/* FAQ — tighter accordion items */
.mb-product-page .mbp-faq-stack{ gap: 10px !important; }
.mb-product-page .mbp-faq-item summary{ padding: 14px 50px 14px 16px !important; }
.mb-product-page .mbp-faq-item[open] > p,
.mb-product-page .mbp-faq-item[open] > div{ padding: 0 16px 14px !important; }
@media (max-width: 768px){
  .mb-product-page .mbp-faq-stack{ gap: 8px !important; }
  .mb-product-page .mbp-faq-item summary{ padding: 12px 44px 12px 14px !important; }
}

/* Why-now cards — slightly tighter so the section doesn't dominate the scroll */
.mb-product-page .mbp-urgency-card{ padding: 20px !important; }
@media (max-width: 768px){
  .mb-product-page .mbp-urgency-card{ padding: 16px !important; }
}

/* Why MyBoosta cards — equal-height, tighter padding */
.mb-product-page .mbp-why2-grid{ align-items: stretch !important; }
.mb-product-page .mbp-why2-card{ padding: 20px !important; display: flex; flex-direction: column; }
@media (max-width: 768px){
  .mb-product-page .mbp-why2-card{ padding: 16px !important; }
}

/* Final CTA strip — strong, centered, no clutter */
.mb-product-page .mbp-final-strip{
  padding: 56px 16px !important;
  text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,.04), rgba(236,72,153,.04));
}
.mb-product-page .mbp-final-strip .mbp-final-title{
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #0F172A;
}
.mb-product-page .mbp-final-strip .mbp-final-sub{
  font-size: 15px;
  color: #64748B;
  margin: 0 auto 24px;
  max-width: 540px;
}
.mb-product-page .mbp-final-strip .mbp-final-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, #6D28D9, #EC4899);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 12px 28px rgba(124,58,237,.30);
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.mb-product-page .mbp-final-strip .mbp-final-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(124,58,237,.40);
}
@media (max-width: 768px){
  .mb-product-page .mbp-final-strip{ padding: 40px 12px !important; }
  .mb-product-page .mbp-final-strip .mbp-final-title{ font-size: 24px; }
  .mb-product-page .mbp-final-strip .mbp-final-sub{ font-size: 14px; margin-bottom: 20px; }
  .mb-product-page .mbp-final-strip .mbp-final-cta{ width: 100%; max-width: 360px; }
}

/* ============================================================================
   Phase G — Related products (cross-sell) + Press logos polish.
   Cross-sell: mobile horizontal scroll-snap carousel (no overflow).
   Press: subtitle styling + reduced vertical padding + mobile 2-rows-max wrap.
   ============================================================================ */

/* Related products — mobile horizontal scroll carousel */
@media (max-width: 768px){
  .mbp-xsell-section .mbp-xsell-pane.is-active .mbp-xsell-grid{
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px 16px !important;
    margin: 0 -16px !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(124,58,237,.30) transparent;
  }
  .mbp-xsell-section .mbp-xsell-pane.is-active .mbp-xsell-grid::-webkit-scrollbar{ height: 6px; }
  .mbp-xsell-section .mbp-xsell-pane.is-active .mbp-xsell-grid::-webkit-scrollbar-thumb{ background: rgba(124,58,237,.25); border-radius: 6px; }
  .mbp-xsell-section .mbp-xsell-pane.is-active .mbp-xsell-grid > .mbp-xsell-card{
    flex: 0 0 270px !important;
    max-width: 270px !important;
    scroll-snap-align: start;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  /* Hide platform tabs on mobile to keep section compact — current platform's products
     show automatically because is-active pane is the matching platform. */
  .mbp-xsell-section .mbp-platform-tabs{
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .mbp-xsell-section .mbp-platform-tab{
    flex: 0 0 auto !important;
    font-size: 12px !important;
    padding: 6px 10px !important;
  }
}
/* Compact + premium look for cards (both desktop and mobile) */
.mbp-xsell-section{ padding-top: 32px !important; padding-bottom: 28px !important; }
.mbp-xsell-card{
  padding: 14px !important;
  border-radius: 16px !important;
}
.mbp-xsell-orders{
  font-size: 11.5px !important;
  font-weight: 600;
  color: #EF4444;
  margin-top: 6px !important;
}

/* Press / "They talk about us" — subtitle + tighter padding + mobile 2-row wrap */
.mbp-press-section{
  padding-top: 28px !important;
  padding-bottom: 28px !important;
  text-align: center;
}
.mbp-press-subtitle{
  text-align: center;
  font-size: 13px;
  color: var(--mbp-muted, #64748B);
  margin: 4px 0 18px !important;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.mbp-press-title{
  margin-bottom: 0 !important;
  font-size: 22px !important;
}
.mbp-press-row{
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 28px 36px !important;
}
.mbp-press-logo{
  filter: grayscale(100%) opacity(.65);
  transition: filter .2s ease;
}
.mbp-press-logo:hover{ filter: grayscale(0%) opacity(1); }
.mbp-press-clients{
  margin-top: 18px !important;
  font-size: 12.5px !important;
}
@media (max-width: 768px){
  .mbp-press-section{
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .mbp-press-title{ font-size: 18px !important; }
  .mbp-press-subtitle{ font-size: 12px !important; margin: 2px 0 14px !important; }
  .mbp-press-row{
    gap: 18px 24px !important;
    /* Mobile: max 2 rows by capping items per row (4 logos → 2x2 on narrow) */
  }
  .mbp-press-logo{
    flex: 0 0 calc(50% - 12px) !important;
    max-width: calc(50% - 12px);
    text-align: center;
    font-size: 14px !important;
  }
}

/* ============================================================================
   Phase F — Product page polish:
   - Trustpilot grid → horizontal scroll-snap carousel (compact, both desktop+mobile)
   - Results section: mobile shows ONLY 1 phone (per CRO spec)
   - Reduced section heights overall
   ============================================================================ */

/* Trustpilot card grid → horizontal scroll-snap carousel.
   Existing rule may have it as `display: grid; grid-template-columns: repeat(...)`.
   Override to flex row that scrolls horizontally with snap points. */
.mbp-tp-section .mbp-tp-grid{
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  overflow-x: auto !important;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 16px;
  -webkit-overflow-scrolling: touch;
  padding: 4px 16px 16px !important;
  margin: 0 -16px !important;          /* bleed to viewport edge for true carousel feel */
  scrollbar-width: thin;
  scrollbar-color: rgba(124,58,237,.30) transparent;
}
.mbp-tp-section .mbp-tp-grid::-webkit-scrollbar{ height: 6px; }
.mbp-tp-section .mbp-tp-grid::-webkit-scrollbar-thumb{ background: rgba(124,58,237,.25); border-radius: 6px; }
.mbp-tp-section .mbp-tp-grid > .mbp-tp-card{
  flex: 0 0 320px !important;
  max-width: 320px !important;
  scroll-snap-align: start;
  margin: 0 !important;
}
.mbp-tp-section{ padding-top: 32px !important; padding-bottom: 32px !important; }
.mbp-tp-summary{ margin-bottom: 18px !important; }
.mbp-tp-card{
  padding: 18px !important;
  min-height: auto !important;
}
.mbp-tp-card-title{ font-size: 15px !important; margin: 8px 0 6px !important; }
.mbp-tp-card-text{ font-size: 13.5px !important; line-height: 1.5 !important; }
@media (max-width: 768px){
  .mbp-tp-section .mbp-tp-grid > .mbp-tp-card{
    flex: 0 0 280px !important;
    max-width: 280px !important;
  }
  .mbp-tp-section .mbp-tp-grid{
    margin: 0 -12px !important;
    padding: 4px 12px 16px !important;
  }
  .mbp-tp-summary .mbp-tp-rating-word{ font-size: 28px !important; }
}

/* Results section — desktop: 3 phones; mobile: ONLY 1 phone (CRO spec) */
.mbp-results-section{ padding-top: 32px !important; padding-bottom: 32px !important; }
.mbp-results-section .mbp-section-head{ margin-bottom: 24px !important; }
@media (max-width: 768px){
  .mbp-results-section .mbp-phones-row{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0 !important;
  }
  .mbp-results-section .mbp-phone:nth-child(n+2){
    display: none !important;
  }
  .mbp-results-section .mbp-section-title{
    font-size: 24px !important;
    line-height: 1.25 !important;
  }
}

/* ============================================================================
   Phase E — Product page CRO additions: urgency strip + hero subline + mobile
   single-column + "Start now – $XX" sticky CTA. Scoped to .mb-product-page.
   ============================================================================ */

/* Urgency strip — directly under the announcement bar */
.mbp-urgency-strip{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  padding: 8px 16px;
  background: linear-gradient(90deg, rgba(124,58,237,.06), rgba(236,72,153,.06));
  border-bottom: 1px solid rgba(124,58,237,.10);
  font-size: 13px;
  color: #0F172A;
  line-height: 1.3;
  text-align: center;
}
.mbp-urgency-strip .mbp-urgency-pulse{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, .55);
  animation: mbp-pulse-dot 1.8s cubic-bezier(.4,0,.6,1) infinite;
  flex: 0 0 auto;
}
@keyframes mbp-pulse-dot{
  0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, .55); }
  50%      { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.mbp-urgency-strip .mbp-urgency-text strong{ font-weight: 800; color: #EF4444; }
.mbp-urgency-strip .mbp-urgency-sep{ color: #CBD5E1; font-weight: 700; }
.mbp-urgency-strip .mbp-urgency-trend{
  font-weight: 600;
  background: linear-gradient(90deg, #7C3AED, #EC4899);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: reduce){
  .mbp-urgency-strip .mbp-urgency-pulse{ animation: none; }
}
@media (max-width: 768px){
  .mbp-urgency-strip{ padding: 6px 12px; font-size: 12px; gap: 4px 8px; }
}

/* Hero subline — between viral-pill and trustpilot-mini */
.mbp-hero-sub-line{
  margin: 8px 0 14px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px){
  .mbp-hero-sub-line{ font-size: 13px; margin: 6px 0 10px; }
}

/* Sticky mobile CTA — "Start now – $XX" */
.mbp-sticky-cta[data-mbp-sticky-cta]{
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: .1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mbp-sticky-cta[data-mbp-sticky-cta] [data-mbp-sticky-price-inline]{
  font-weight: 800;
  margin-left: 2px;
}

/* Product page mobile guard — single column, no horizontal scroll */
@media (max-width: 768px){
  body.single-product .mb-product-page,
  .mb-product-page{
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }
  .mb-product-page section,
  .mb-product-page .mbp-container{
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .mb-product-page *,
  .mb-product-page *::before,
  .mb-product-page *::after{
    box-sizing: border-box !important;
    max-width: 100% !important;
  }
  /* Phones / device mockups — desktop=3, mobile=1 ONLY (per CRO spec) */
  .mb-product-page .mbp-phones-row,
  .mb-product-page .mbp-phones-grid{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 24px !important;
  }
  .mb-product-page .mbp-phone:nth-child(n+2){
    display: none !important;
  }
}



/* ===========================================================================
   Phase ZG — Mobile parity with MyBoost.fr (2026-05-02)
   Match competitor mobile layout for product page. Scoped to <=767px.
   Keeps all our extra functionality (urgency, cart, crypto, bottom Trustpilot).
   Targets: Trustpilot 1-row, tag pills 4-in-row, equal-height qty cards,
            cookie consent shrink, bigger title.
   =========================================================================== */
@media (max-width: 767px){
  /* 1. Trustpilot single-row (was wrapping to 2 rows).
        ZG.2: tightened further — at 375px iPhone width the brand was wrapping
        because content (stars+info+brand) needed 373px, leaving only 2px buffer.
        Now: gap 6, padding 8x10, brand 11.5px → ~12px headroom. */
  .mb-product-page .mbp-trust-bar-inner{
    padding: 8px 10px !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
  }
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-stars-row,
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-mini-info,
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-mini-brand{
    flex-shrink: 0 !important;
  }
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-mini-info{
    flex: 0 1 auto !important;
    min-width: 0 !important;
  }
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-mini-info strong{ font-size: 13.5px !important; }
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-mini-info > span{ font-size: 10.5px !important; white-space: nowrap !important; }
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-mini-brand{
    font-size: 11.5px !important;
    white-space: nowrap !important;
    margin-left: auto !important;
  }
  /* Shrink stars row to give brand more room */
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-star-sm,
  .mb-product-page .mbp-trust-bar-inner .mbp-tp-stars-row img{
    width: 16px !important;
    height: 16px !important;
  }

  /* 2. Tag pills 4-in-a-row (was 3+1 wrap) */
  .mb-product-page .mbp-tag-row{
    gap: 6px !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
  }
  .mb-product-page .mbp-tag{
    padding: 5px 9px !important;
    font-size: 11px !important;
    gap: 3px !important;
    white-space: nowrap !important;
  }

  /* 3. Equal-height qty cards (was 1K visually shorter than 2K) */
  .mb-product-page .mbp-qty-grid{ align-items: stretch !important; }
  .mb-product-page .mbp-qty-card{
    min-height: 96px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }

  /* 4. Cookie consent floating button shrink so it doesn't overlap qty cards.
     The plugin injects the trigger via JS; class is unknown until runtime, so
     defensively target every common variant. Harmless if none match. */
  .cookieadmin-floating-btn,
  .cookieadmin-bubble,
  .cookieadmin-trigger,
  .cookieadmin-floater,
  [id^="cookieadmin"][id*="float"],
  [id^="cookieadmin"][id*="bubble"],
  [class*="cookieadmin"][class*="float"],
  [class*="cookieadmin"][class*="bubble"],
  [class*="cookieadmin"][class*="trigger"]{
    transform: scale(.7) !important;
    transform-origin: bottom left !important;
    opacity: .85 !important;
  }

  /* 5. Bigger product title to match MyBoost's mobile impact (22->30px).
        Real H1 class verified live = .mbp-config-title (Phase ZG.1). */
  .mb-product-page h1.mbp-config-title,
  .mb-product-page .mbp-config-title{
    font-size: 30px !important;
    line-height: 1.18 !important;
  }

  /* 6. Spring offer coupons side-by-side on mobile (was vertical stack).
        ZG.5: BOOST20/BOOST30 codes were getting "BOOS..." ellipsis at iPhone
        width because horizontal layout (pill | info | tick) ate too much
        space. Switched to VERTICAL layout INSIDE each button — pill on top,
        code below, min text below. Now full code fits comfortably. */
  .mb-product-page .mbp-coupon-stack{
    flex-direction: row !important;
    gap: 8px !important;
    align-items: stretch !important;
  }
  .mb-product-page .mbp-coupon-stack .mbp-coupon-btn{
    flex: 1 1 0 !important;
    min-width: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 8px 6px !important;
    gap: 4px !important;
  }
  .mb-product-page .mbp-coupon-stack .mbp-coupon-pct{
    font-size: 11.5px !important;
    padding: 3px 8px !important;
    flex-shrink: 0 !important;
    align-self: center !important;
  }
  .mb-product-page .mbp-coupon-stack .mbp-coupon-info{
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .mb-product-page .mbp-coupon-stack .mbp-coupon-code{
    font-size: 12px !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  .mb-product-page .mbp-coupon-stack .mbp-coupon-min{
    font-size: 10.5px !important;
    white-space: nowrap !important;
  }
  /* Hide the empty radio tick on mobile to free up vertical space */
  .mb-product-page .mbp-coupon-stack .mbp-coupon-tick{
    display: none !important;
  }

  /* ZG.4 ROOT-CAUSE FIX: hero grid track was `1fr` = `minmax(auto, 1fr)` which
        expands to fit content's intrinsic width, blowing the column past the
        viewport. Force `minmax(0, 1fr)` so children clamp to the container.
        This single line eliminates the right-side cropping the user reported
        (title/Trustpilot/banner all extending to right:401 in 390 viewport). */
  .mb-product-page .mbp-hero-grid{
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .mb-product-page .mbp-config{
    min-width: 0 !important;
    max-width: 100% !important;
  }

  /* 7. TOP Trustpilot mini box (.mbp-tp-mini, near title) — single row.
        ZG.3: this is the one near the H1 title. ZG.1 fixed the wrong one
        (.mbp-trust-bar-inner is the bottom Trustpilot strip). Container was
        overflowing at 471px in a 375px viewport. */
  .mb-product-page .mbp-tp-mini{
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    padding: 8px 12px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    width: 100% !important;
  }
  .mb-product-page .mbp-tp-mini .mbp-tp-mini-info{
    flex: 0 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    line-height: 1.15 !important;
  }
  .mb-product-page .mbp-tp-mini .mbp-tp-mini-rating{
    font-size: 13px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
  }
  .mb-product-page .mbp-tp-mini .mbp-tp-mini-count{
    font-size: 10.5px !important;
    white-space: nowrap !important;
    color: var(--mbp-muted, #888) !important;
  }
  .mb-product-page .mbp-tp-mini .mbp-tp-mini-brand{
    font-size: 11.5px !important;
    white-space: nowrap !important;
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }
  /* Shrink stars row inside .mbp-tp-mini if present */
  .mb-product-page .mbp-tp-mini .mbp-tp-stars-row img,
  .mb-product-page .mbp-tp-mini .mbp-tp-star-sm{
    width: 16px !important;
    height: 16px !important;
  }
}


/* ========================================================== */
/* PHASE: BOOST coupon side-by-side on desktop too (2026-05-02) */
/* Mobile already has this via @media (max-width:767px). Add  */
/* the same layout for >= 768px so coupons sit on one row.    */
/* ========================================================== */
@media (min-width: 768px) {
  .mb-product-page .mbp-coupon-stack {
    flex-direction: row !important;
    gap: 10px !important;
    align-items: stretch !important;
  }
  .mb-product-page .mbp-coupon-stack .mbp-coupon-btn {
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }
}


/* ========================================================== */
/* PHASE: Coupon disabled state when min not reached (2026-05-02) */
/* ========================================================== */
.mbp-coupon-btn[disabled],
.mbp-coupon-btn.is-unavailable {
  opacity: 0.45 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}


/* ========================================================== */
/* PHASE: Center the "X people bought this today" line (2026-05-02) */
/* ========================================================== */
.mb-product-page .mbp-config-urgency {
  text-align: center !important;
}

/* ========================================================== */
/* PHASE ZD: Mobile — fit "How it works" + "Why MyBoosta" in   */
/* one viewport, matching myboost.fr compactness (2026-05-02). */
/* Scoped to .mbp-howit-section only.                          */
/* ========================================================== */
@media (max-width: 768px){
  .mb-product-page .mbp-howit-section{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .mb-product-page .mbp-howit-section .mbp-section-head{
    margin-bottom: 10px !important;
  }
  .mb-product-page .mbp-howit-section .mbp-section-title{
    font-size: 20px !important;
    line-height: 1.2 !important;
  }
  .mb-product-page .mbp-howit-grid{ gap: 8px !important; }
  .mb-product-page .mbp-howit-card{ padding: 11px 12px !important; }
  .mb-product-page .mbp-howit-section .mbp-why2-grid{ gap: 8px !important; }
  .mb-product-page .mbp-howit-section .mbp-why2-card{ padding: 11px 12px !important; }
  .mb-product-page .mbp-howit-section .mbp-why2-card .mbp-why2-icon{
    font-size: 22px !important;
    margin-bottom: 4px !important;
  }
}

/* ========================================================== */
/* PHASE ZE: Mobile — force 4 social-proof avatars in 1 row    */
/* (was wrapping to 2-2). Scoped to .mbp-avatars-* (2026-05-03)*/
/* ========================================================== */
@media (max-width: 768px){
  .mb-product-page .mbp-avatars-card{
    padding: 18px 14px !important;
  }
  .mb-product-page .mbp-avatars-row{
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }
  .mb-product-page .mbp-avatars-row .mbp-avatar-ring{
    width: 56px !important;
    height: 56px !important;
    top: -3px !important;
  }
  .mb-product-page .mbp-avatars-row .mbp-avatar-img{
    width: 50px !important;
    height: 50px !important;
  }
  .mb-product-page .mbp-avatars-row .mbp-avatar-name{
    font-size: 12px !important;
  }
}

/* ========================================================== */
/* PHASE ZF: Mobile — xsell trust pills 2-2 grid (2026-05-03) */
/* Scoped to .mbp-xsell-section .mbp-trust-pills-row only.    */
/* ========================================================== */
@media (max-width: 768px){
  .mb-product-page .mbp-xsell-section .mbp-trust-pills-row{
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
  }
  .mb-product-page .mbp-xsell-section .mbp-trust-pill{
    justify-content: center !important;
    text-align: center !important;
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
}
