/* Premium Digital Marketplace Homepage — original 2026 design */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --mp-bg: #f6f7fb;
  --mp-surface: #ffffff;
  --mp-surface-2: #eef1f8;
  --mp-line: #e2e8f0;
  --mp-navy: #0f172a;
  --mp-navy-soft: #1e293b;
  --mp-indigo: #C2410C;
  --mp-blue: #F97316;
  --mp-blue-light: #FB923C;
  --mp-violet: #EA580C;
  --mp-text: #0f172a;
  --mp-text-soft: #475569;
  --mp-text-muted: #64748b;
  --mp-grad: linear-gradient(135deg, #F97316 0%, #EA580C 45%, #C2410C 100%);
  --mp-grad-soft: linear-gradient(135deg, rgba(249,115,22,.12), rgba(234,88,12,.08));
  --mp-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --mp-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --mp-radius: 20px;
  --mp-radius-sm: 14px;
  --mp-max: 1280px;
  --mp-font: 'Inter', 'Noto Sans Bengali', 'Segoe UI', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body.mp-home {
  font-family: var(--mp-font);
  background: var(--mp-bg);
  color: var(--mp-text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

/* Keep overlays/drawers closed when hidden (display:* in class must not win) */
[hidden] { display: none !important; }

body.mp-overlay-open { overflow: hidden; }

/* Background */
.mp-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.mp-bg-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(148,163,184,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(148,163,184,.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 70%);
}
.mp-bg-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .35; }
.mp-bg-glow--1 { width: 520px; height: 520px; background: #fdba74; top: -160px; left: -120px; }
.mp-bg-glow--2 { width: 480px; height: 480px; background: #fed7aa; top: 30%; right: -140px; }

.mp-shell { position: relative; z-index: 1; }

/* Typography helpers */
.mp-gradient-text {
  background: var(--mp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.mp-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mp-blue);
  margin-bottom: 10px;
}
.mp-kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(249,115,22,.08);
  border: 1px solid rgba(249,115,22,.15);
  color: var(--mp-blue);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  transition: background 0.3s, border-color 0.3s;
}
.mp-kicker.is-live {
  background: rgba(249,115,22, 0.1);
  border-color: rgba(249,115,22, 0.25);
  color: #EA580C;
}
.mp-hero-live {
  font-size: 13px;
  font-weight: 700;
  color: var(--mp-text-muted);
  margin-bottom: 14px;
  min-height: 1.2em;
  transition: opacity 0.4s;
}
.mp-hero-live.is-pulse { animation: mp-text-pulse 0.6s ease; }
@keyframes mp-text-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.mp-hero.is-loaded .mp-hero-copy > * {
  animation: mp-hero-in 0.65s ease forwards;
}
.mp-hero.is-loaded .mp-hero-copy > *:nth-child(1) { animation-delay: 0.04s; }
.mp-hero.is-loaded .mp-hero-copy > *:nth-child(2) { animation-delay: 0.1s; }
.mp-hero.is-loaded .mp-hero-copy > *:nth-child(3) { animation-delay: 0.16s; }
.mp-hero.is-loaded .mp-hero-copy > *:nth-child(4) { animation-delay: 0.22s; }
.mp-hero.is-loaded .mp-hero-copy > *:nth-child(5) { animation-delay: 0.28s; }
.mp-hero.is-loaded .mp-hero-copy > *:nth-child(6) { animation-delay: 0.34s; }
.mp-hero-copy > * { opacity: 0; transform: translateY(18px); }
@keyframes mp-hero-in {
  to { opacity: 1; transform: translateY(0); }
}
.mp-hero-visual { animation: mp-hero-visual-in 0.8s ease 0.2s forwards; opacity: 0; transform: scale(0.96); }
.mp-hero.is-loaded .mp-hero-visual { opacity: 1; transform: scale(1); }
@keyframes mp-hero-visual-in {
  to { opacity: 1; transform: scale(1); }
}

/* Buttons */
.mp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; border: none; cursor: pointer;
  font-size: 14px; font-weight: 800; transition: transform .2s, box-shadow .2s, background .2s;
}
.mp-btn--primary { background: var(--mp-grad); color: #fff; box-shadow: 0 10px 28px rgba(249,115,22,.28); }
.mp-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(249,115,22,.34); }
.mp-btn--ghost { background: transparent; color: var(--mp-text-soft); border: 1px solid var(--mp-line); }
.mp-btn--ghost:hover { border-color: rgba(249,115,22,.35); color: var(--mp-blue); background: rgba(249,115,22,.05); }
.mp-btn--outline { background: var(--mp-surface); border: 1px solid var(--mp-line); color: var(--mp-text); }
.mp-btn--outline:hover { border-color: var(--mp-blue); color: var(--mp-blue); }
.mp-btn--glass { background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(8px); }
.mp-btn--lg { padding: 14px 26px; font-size: 15px; }
.mp-btn--sm { padding: 8px 14px; font-size: 12px; border-radius: 10px; }
.mp-link-btn { font-size: 14px; font-weight: 800; color: var(--mp-blue); white-space: nowrap; }

/* ── Header — light floating glass bar ── */
.xh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 12px 20px 0;
  pointer-events: none;
}

.xh-shell {
  pointer-events: auto;
  max-width: var(--mp-max);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s, background 0.25s, border-color 0.25s;
}

.xh-header.is-scrolled {
  padding-top: 8px;
}

.xh-header.is-scrolled .xh-shell {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
  border-color: rgba(226, 232, 240, 1);
}

.xh-header.is-compact .xh-bar-inner {
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
}

.xh-header.is-compact .xh-brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.xh-header.is-compact .xh-brand-text strong {
  font-size: 15px;
}

.xh-bar-inner {
  padding: 12px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transition: padding 0.25s;
}

/* Brand */
.xh-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.xh-brand-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(249,115,22, 0.28);
}
.xh-brand-text { display: flex; flex-direction: column; min-width: 0; }
.xh-brand-text strong {
  font-size: 16px; font-weight: 900; letter-spacing: -0.02em;
  color: var(--mp-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.xh-brand-text small {
  font-size: 11px; color: var(--mp-text-muted); font-weight: 600;
}

/* Nav */
.xh-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.xh-menu a {
  position: relative;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mp-text-soft);
  transition: color 0.2s, background 0.2s;
}
.xh-menu a:hover {
  color: var(--mp-text);
  background: var(--mp-surface-2);
}
.xh-menu a.is-active {
  color: #EA580C;
  background: rgba(249,115,22, 0.1);
}
.xh-menu a.is-active::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #F97316, #EA580C);
}

/* Actions */
.xh-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.xh-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--mp-line);
  background: var(--mp-surface);
  color: var(--mp-text-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: 0.2s;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}
.xh-icon-btn:hover {
  color: #EA580C;
  border-color: rgba(249,115,22, 0.35);
  background: rgba(249,115,22, 0.06);
}
.xh-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  font-size: 10px; font-weight: 900;
  display: grid; place-items: center;
  border: 2px solid #fff;
}
.xh-login {
  padding: 10px 16px;
  border-radius: 11px;
  font-size: 14px; font-weight: 800;
  color: var(--mp-text-soft);
  border: 1px solid var(--mp-line);
  background: var(--mp-surface);
  transition: 0.2s;
}
.xh-login:hover {
  color: #EA580C;
  border-color: rgba(249,115,22, 0.35);
  background: rgba(249,115,22, 0.05);
}
.xh-register {
  padding: 10px 18px;
  border-radius: 11px;
  font-size: 14px; font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #F97316, #EA580C);
  box-shadow: 0 8px 22px rgba(249,115,22, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.xh-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249,115,22, 0.34);
}

.xh-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 11px;
  border: 1px solid var(--mp-line);
  background: var(--mp-surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.xh-toggle span {
  display: block; width: 18px; height: 2px;
  background: var(--mp-text);
  border-radius: 999px;
  transition: transform 0.25s, opacity 0.25s;
}
.xh-header.is-open .xh-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xh-header.is-open .xh-toggle span:nth-child(2) { opacity: 0; }
.xh-header.is-open .xh-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.xh-mobile {
  display: none;
  pointer-events: none;
  max-width: var(--mp-max);
  margin: 8px auto 0;
  padding: 12px 16px 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--mp-line);
  border-radius: 16px;
  box-shadow: var(--mp-shadow-sm);
  gap: 4px;
}
.xh-mobile-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mp-line);
}
.xh-mobile-head strong { font-size: 16px; font-weight: 900; }
.xh-mobile-close {
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--mp-line);
  background: var(--mp-surface);
  cursor: pointer;
  font-size: 18px;
  color: var(--mp-text-soft);
}
.xh-drawer-backdrop {
  position: fixed; inset: 0; z-index: 399;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.xh-drawer-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
body.mp-nav-open { overflow: hidden; }
.xh-mobile a {
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  color: var(--mp-text-soft);
}
.xh-mobile a:hover {
  background: rgba(249,115,22, 0.08);
  color: #EA580C;
}
.xh-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.xh-mobile-actions .xh-login,
.xh-mobile-actions .xh-register {
  text-align: center;
  display: block;
}

@media (max-width: 900px) {
  .xh-header { padding: 10px 12px 0; }
  .xh-header.is-scrolled { padding-top: 6px; }
  .xh-menu, .xh-actions > .xh-login, .xh-actions > .xh-register { display: none; }
  .xh-toggle { display: flex; min-width: 44px; min-height: 44px; }
  .xh-icon-btn { min-width: 44px; min-height: 44px; }
  .xh-bar-inner { grid-template-columns: 1fr auto; gap: 12px; }
  .xh-mobile {
    display: grid;
    pointer-events: auto;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 88vw);
    height: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border: none;
    border-left: 1px solid var(--mp-line);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    transform: translateX(105%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 401;
    padding: 20px 16px 24px;
    padding-top: max(20px, env(safe-area-inset-top));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .xh-mobile-head { display: flex; }
  .xh-mobile a {
    min-height: 48px;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .xh-header.is-open .xh-mobile { transform: translateX(0); }
  .mp-mobile-dock { display: flex; }
  body.mp-home { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}

@media (min-width: 901px) {
  .xh-mobile,
  .xh-drawer-backdrop,
  .mp-mobile-dock { display: none !important; }
  .xh-toggle { display: none !important; }
}

@media (max-width: 600px) {
  .xh-bar-inner { padding: 10px 14px; }
  .xh-brand-text small { display: none; }
}

/* Hero */
.mp-hero {
  max-width: var(--mp-max); margin: 0 auto; padding: 108px 24px 48px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.mp-hero h1 {
  font-size: clamp(34px, 5vw, 56px); line-height: 1.08; font-weight: 900; letter-spacing: -.03em; margin-bottom: 18px;
}
.mp-lead { font-size: 18px; color: var(--mp-text-soft); max-width: 540px; margin-bottom: 28px; }
.mp-hero-search {
  display: flex; align-items: center; gap: 12px; padding: 8px 8px 8px 18px;
  background: var(--mp-surface); border: 1px solid var(--mp-line); border-radius: 16px;
  box-shadow: var(--mp-shadow-sm); margin-bottom: 24px;
}
.mp-hero-search svg { color: var(--mp-text-muted); flex-shrink: 0; }
.mp-hero-search input { flex: 1; border: none; outline: none; background: transparent; font-size: 15px; min-width: 0; }
.mp-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.mp-hero-visual { position: relative; min-height: 420px; }
.mp-hero-orbit { position: relative; width: 100%; height: 420px; }
.mp-hero-core {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 180px; height: 180px; border-radius: 50%; background: var(--mp-surface);
  border: 1px solid var(--mp-line); box-shadow: var(--mp-shadow);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.mp-hero-core span { font-size: 11px; font-weight: 800; color: var(--mp-blue); text-transform: uppercase; letter-spacing: .06em; }
.mp-hero-core strong { font-size: 36px; font-weight: 900; line-height: 1; margin: 4px 0; background: var(--mp-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mp-hero-core small { font-size: 12px; color: var(--mp-text-muted); font-weight: 600; }
.mp-float-card {
  position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 16px;
  background: var(--mp-surface); border: 1px solid var(--mp-line); border-radius: 16px; box-shadow: var(--mp-shadow-sm);
  animation: mp-float 5s ease-in-out infinite; animation-delay: var(--delay, 0s); min-width: 200px;
}
.mp-float-card--1 { top: 8%; left: 0; }
.mp-float-card--2 { top: 18%; right: 0; }
.mp-float-card--3 { bottom: 12%; left: 8%; }
.mp-float-card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--mp-surface-2);
  display: grid; place-items: center; overflow: hidden;
}
.mp-float-card-icon img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.mp-float-card b { display: block; font-size: 13px; }
.mp-float-card em { font-style: normal; font-size: 12px; font-weight: 800; color: var(--mp-blue); }

@keyframes mp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Trust */
.mp-trust {
  max-width: var(--mp-max); margin: 0 auto 24px; padding: 0 24px;
}
.mp-trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 24px; background: var(--mp-surface); border: 1px solid var(--mp-line);
  border-radius: var(--mp-radius); box-shadow: var(--mp-shadow-sm);
}
.mp-trust-item { text-align: center; padding: 8px; }
.mp-trust-item strong {
  display: block; font-size: 28px; font-weight: 900; margin-bottom: 4px;
  background: var(--mp-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mp-trust-item span { font-size: 13px; color: var(--mp-text-muted); font-weight: 700; }

/* Sections */
.mp-section { max-width: var(--mp-max); margin: 0 auto; padding: 48px 24px 32px; }
.mp-section-head { margin-bottom: 28px; }
.mp-section-head h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 10px; }
.mp-section-head p { color: var(--mp-text-soft); max-width: 560px; }
.mp-section-head--center { text-align: center; }
.mp-section-head--center p { margin: 0 auto; }
.mp-section-head--row {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

/* Categories */
.mp-cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.mp-cat-card {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: start;
  padding: 20px; background: var(--mp-surface); border: 1px solid var(--mp-line);
  border-radius: var(--mp-radius-sm); transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mp-cat-card:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-sm); border-color: rgba(249,115,22,.25); }
.mp-cat-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--mp-grad-soft);
  display: grid; place-items: center; color: var(--mp-blue);
}
.mp-cat-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.mp-cat-body p { font-size: 13px; color: var(--mp-text-muted); margin-bottom: 8px; }
.mp-cat-meta { font-size: 12px; font-weight: 800; color: var(--mp-blue); }
.mp-cat-arrow { font-size: 18px; color: var(--mp-text-muted); transition: transform .2s; }
.mp-cat-card:hover .mp-cat-arrow { transform: translateX(4px); color: var(--mp-blue); }

/* Product tools */
.mp-product-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.mp-chip-row { display: flex; gap: 8px; flex-wrap: wrap; max-width: 420px; }
.mp-chip-scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 4px;
  mask-image: linear-gradient(90deg, #000 92%, transparent);
}
.mp-chip-scroll::-webkit-scrollbar { display: none; }
.mp-chip-scroll .mp-chip { scroll-snap-align: start; flex-shrink: 0; }
.mp-product-tools-sticky {
  position: relative;
  z-index: 30;
}
@media (max-width: 900px) {
  .mp-product-tools-sticky {
    position: sticky;
    top: 68px;
    margin: 0 -24px 16px;
    padding: 12px 24px;
    background: rgba(246, 247, 251, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mp-line);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .mp-chip-scroll { max-width: none; width: 100%; mask-image: none; }
  .mp-select { width: 100%; min-height: 44px; }
}
.mp-chip {
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--mp-line);
  background: var(--mp-surface); font-size: 13px; font-weight: 800; color: var(--mp-text-soft); cursor: pointer;
  min-height: 44px;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
}
.mp-chip:active { transform: scale(0.97); }
.mp-chip.is-active, .mp-chip:hover { border-color: rgba(249,115,22,.35); color: var(--mp-blue); background: rgba(249,115,22,.08); }
.mp-select {
  padding: 10px 14px; border-radius: 10px; border: 1px solid var(--mp-line);
  background: var(--mp-surface); font-size: 13px; font-weight: 700; color: var(--mp-text);
}

/* Product grid */
.mp-product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.mp-product-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--mp-surface);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.mp-product-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(249,115,22,0), rgba(234,88,12,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.mp-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.18);
}
.mp-product-card:hover::before { opacity: 1; }

.mp-product-media {
  position: relative;
  padding: 18px 18px 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(249,115,22,.08), transparent 42%),
    radial-gradient(circle at 80% 80%, rgba(234,88,12,.06), transparent 40%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}
.mp-product-badge {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  padding: 6px 11px; border-radius: 999px;
  background: var(--mp-grad); color: #fff;
  font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.25);
}
.mp-wish-btn {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 38px; height: 38px; border-radius: 12px;
  border: 1px solid var(--mp-line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer; display: grid; place-items: center;
  color: var(--mp-text-soft);
  box-shadow: var(--mp-shadow-sm);
  transition: transform 0.2s, color 0.2s, border-color 0.2s, background 0.2s;
}
.mp-wish-btn:hover { transform: scale(1.05); }
.mp-wish-btn.is-active, .mp-wish-btn:hover {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(255, 255, 255, 1);
}
.mp-product-thumb {
  position: relative; z-index: 1;
  height: 148px; display: grid; place-items: center;
  transition: transform 0.35s ease;
}
.mp-product-card:hover .mp-product-thumb { transform: scale(1.04); }
.mp-product-thumb img {
  max-height: 108px; width: auto; object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.08));
}
.mp-product-icon {
  width: 72px; height: 72px; border-radius: 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(226,232,240,.9);
  display: grid; place-items: center;
  box-shadow: var(--mp-shadow-sm);
}
.mp-product-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(2px);
  opacity: 0; transition: opacity 0.25s ease;
}
.mp-product-card:hover .mp-product-overlay { opacity: 1; }
.mp-product-quick {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px; border: none;
  background: rgba(255,255,255,.96); color: var(--mp-text);
  font-size: 13px; font-weight: 800; cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  transform: translateY(8px); transition: transform 0.25s ease;
}
.mp-product-card:hover .mp-product-quick { transform: translateY(0); }
.mp-product-quick:hover { color: var(--mp-blue); }

.mp-product-body {
  display: flex; flex-direction: column; flex: 1;
  padding: 16px 18px 18px;
}
.mp-product-top {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 8px;
}
.mp-product-cat {
  font-size: 11px; font-weight: 800; color: var(--mp-blue);
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(249, 115, 22, 0.08);
  max-width: 70%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mp-product-rating-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 8px; border-radius: 999px;
  background: rgba(245, 158, 11, 0.1); color: #b45309;
  font-size: 11px; font-weight: 900; flex-shrink: 0;
}
.mp-product-body h3 {
  font-size: 15px; font-weight: 800; line-height: 1.45;
  margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.9em;
}
.mp-product-reviews {
  font-size: 12px; color: var(--mp-text-muted); font-weight: 600;
  margin-bottom: 14px;
}
.mp-product-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--mp-line);
}
.mp-product-price {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px; min-width: 0;
}
.mp-product-price strong {
  font-size: 20px; font-weight: 900; letter-spacing: -0.02em;
  background: var(--mp-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.mp-product-price del { font-size: 12px; color: var(--mp-text-muted); }
.mp-discount {
  font-size: 10px; font-weight: 900; color: #059669;
  background: rgba(5, 150, 105, 0.1); padding: 2px 7px; border-radius: 999px;
}
.mp-product-order {
  flex-shrink: 0;
  padding: 10px 16px; border: none; border-radius: 12px;
  background: var(--mp-grad); color: #fff;
  font-size: 13px; font-weight: 800; cursor: pointer;
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mp-product-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.34);
}
.mp-muted { font-size: 14px; color: var(--mp-text-muted); font-weight: 700; }
.mp-empty { text-align: center; color: var(--mp-text-muted); padding: 32px; }

/* Offer */
.mp-offer { max-width: var(--mp-max); margin: 0 auto; padding: 0 24px 12px; }
.mp-offer-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center;
  padding: 40px; border-radius: 28px; background: linear-gradient(135deg, #0f172a, #431407 55%, #7c2d12);
  color: #fff; overflow: hidden; position: relative;
}
.mp-offer-inner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(251,146,60,.35), transparent 45%);
}
.mp-offer-copy, .mp-offer-visual { position: relative; z-index: 1; }
.mp-offer-copy h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 900; margin-bottom: 12px; }
.mp-offer-discount { font-size: 18px; margin-bottom: 24px; opacity: .9; }
.mp-offer-discount strong { color: #fb923c; }
.mp-countdown { display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.mp-countdown div {
  min-width: 72px; padding: 12px; border-radius: 14px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); text-align: center;
}
.mp-countdown strong { display: block; font-size: 22px; font-weight: 900; }
.mp-countdown span { font-size: 11px; opacity: .75; font-weight: 700; text-transform: uppercase; }
.mp-offer-visual { display: grid; place-items: center; min-height: 220px; }
.mp-offer-card {
  width: 160px; height: 160px; border-radius: 28px; background: var(--mp-grad);
  display: grid; place-items: center; box-shadow: 0 24px 60px rgba(249,115,22,.4);
  animation: mp-pulse-card 3s ease-in-out infinite;
}
.mp-offer-card span { font-size: 48px; font-weight: 900; line-height: 1; }
.mp-offer-card small { font-size: 14px; font-weight: 900; letter-spacing: .1em; }
.mp-offer-ring {
  position: absolute; width: 260px; height: 260px; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.2); animation: mp-spin 18s linear infinite;
}
@keyframes mp-pulse-card { 0%,100%{transform:scale(1)} 50%{transform:scale(1.04)} }
@keyframes mp-spin { to { transform: rotate(360deg); } }

/* Benefits */
.mp-benefits { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.mp-benefit {
  padding: 24px 20px; background: var(--mp-surface); border: 1px solid var(--mp-line);
  border-radius: var(--mp-radius-sm); transition: transform .25s, box-shadow .25s;
}
.mp-benefit:hover { transform: translateY(-4px); box-shadow: var(--mp-shadow-sm); }
.mp-benefit-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--mp-grad-soft);
  display: grid; place-items: center; color: var(--mp-blue); margin-bottom: 14px;
  transition: transform .3s;
}
.mp-benefit:hover .mp-benefit-icon { transform: scale(1.08) rotate(-4deg); }
.mp-benefit h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.mp-benefit p { font-size: 13px; color: var(--mp-text-muted); }

/* Steps */
.mp-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative;
}
.mp-steps::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, rgba(249,115,22,.15), rgba(234,88,12,.25));
}
.mp-step {
  position: relative; padding: 24px 20px; background: var(--mp-surface);
  border: 1px solid var(--mp-line); border-radius: var(--mp-radius-sm);
}
.mp-step-num {
  display: inline-flex; width: 44px; height: 44px; border-radius: 12px;
  background: var(--mp-grad); color: #fff; font-weight: 900; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.mp-step h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.mp-step p { font-size: 13px; color: var(--mp-text-muted); }

/* Feature split */
.mp-feature {
  max-width: var(--mp-max); margin: 0 auto; padding: 72px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.mp-dash {
  border-radius: 24px; background: var(--mp-surface); border: 1px solid var(--mp-line);
  box-shadow: var(--mp-shadow); overflow: hidden;
}
.mp-dash-top { display: flex; gap: 8px; padding: 14px 16px; border-bottom: 1px solid var(--mp-line); }
.mp-dash-top span { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.mp-dash-body { display: grid; grid-template-columns: 80px 1fr; min-height: 280px; }
.mp-dash-sidebar { background: #f8fafc; border-right: 1px solid var(--mp-line); }
.mp-dash-main { padding: 20px; display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.mp-dash-stat { height: 70px; border-radius: 14px; background: var(--mp-grad-soft); }
.mp-dash-chart { grid-column: 1 / -1; height: 120px; border-radius: 14px; background: linear-gradient(180deg, rgba(249,115,22,.15), rgba(249,115,22,.02)); }
.mp-feature-copy h2 { font-size: clamp(28px, 3vw, 38px); font-weight: 900; margin-bottom: 16px; }
.mp-feature-list { list-style: none; display: grid; gap: 10px; margin: 20px 0 28px; }
.mp-feature-list li {
  padding-left: 28px; position: relative; font-weight: 700; color: var(--mp-text-soft);
}
.mp-feature-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--mp-blue); font-weight: 900;
}

/* Testimonials */
.mp-testimonials { position: relative; }
.mp-slider-viewport { overflow: hidden; }
.mp-slider-track { display: flex; gap: 20px; transition: transform .45s ease; }
.mp-review-card {
  flex: 0 0 calc(33.333% - 14px); min-width: 280px;
  padding: 24px; background: var(--mp-surface); border: 1px solid var(--mp-line);
  border-radius: var(--mp-radius-sm); box-shadow: var(--mp-shadow-sm);
}
.mp-review-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.mp-review-top img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.mp-review-top strong { display: block; font-size: 14px; }
.mp-review-top span { font-size: 12px; color: var(--mp-text-muted); }
.mp-verified { margin-left: auto; font-size: 11px; font-weight: 800; color: #059669; white-space: nowrap; }
.mp-review-card p { font-size: 14px; color: var(--mp-text-soft); margin-bottom: 12px; line-height: 1.65; }
.mp-review-tag { font-size: 11px; font-weight: 800; color: var(--mp-blue); }
.mp-slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--mp-line);
  background: var(--mp-surface); cursor: pointer; font-size: 22px; z-index: 2;
}
.mp-slider-btn.prev { left: -12px; }
.mp-slider-btn.next { right: -12px; }
.mp-slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.mp-slider-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none; background: #cbd5e1; cursor: pointer;
}
.mp-slider-dots button.is-active { background: var(--mp-blue); width: 24px; border-radius: 999px; }

/* FAQ */
.mp-faq { max-width: 760px; margin: 0 auto; display: grid; gap: 10px; }
.mp-faq-item {
  background: var(--mp-surface); border: 1px solid var(--mp-line); border-radius: 14px; overflow: hidden;
}
.mp-faq-item summary {
  padding: 18px 20px; cursor: pointer; font-weight: 800; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.mp-faq-item summary::-webkit-details-marker { display: none; }
.mp-faq-item summary::after { content: '+'; font-size: 20px; color: var(--mp-blue); }
.mp-faq-item[open] summary::after { content: '−'; }
.mp-faq-item p { padding: 0 20px 18px; color: var(--mp-text-soft); font-size: 14px; }

/* Final CTA */
.mp-final-cta { max-width: var(--mp-max); margin: 0 auto; padding: 0 24px 16px; }
.mp-final-cta-inner {
  text-align: center; padding: 36px 24px; border-radius: 28px;
  background: var(--mp-grad); color: #fff; box-shadow: 0 24px 60px rgba(249,115,22,.28);
}
.mp-final-cta-inner h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 900; margin-bottom: 12px; }
.mp-final-cta-inner p { opacity: .9; margin-bottom: 28px; max-width: 560px; margin-inline: auto; }
.mp-final-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Footer */
.mp-footer {
  margin-top: 8px;
  padding: 0 24px 12px;
}
.mp-footer-shell {
  max-width: var(--mp-max);
  margin: 0 auto;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 55%, #0f172a 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
}
.mp-footer-shell::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--mp-grad);
}
.mp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 32px;
  padding: 40px 36px 28px;
}
.mp-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #fff;
}
.mp-footer-logo-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--mp-grad);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}
.mp-footer-logo strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.mp-footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 300px;
  margin-bottom: 20px;
}
.mp-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.mp-footer-social a {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.mp-footer-social a:hover {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.35);
  color: #fb923c;
  transform: translateY(-2px);
}
.mp-footer-col h4 {
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f8fafc;
}
.mp-footer-col ul {
  list-style: none;
  display: grid;
  gap: 2px;
}
.mp-footer-col a {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #94a3b8;
  padding: 7px 0;
  transition: color 0.2s, transform 0.2s;
}
.mp-footer-col a:hover {
  color: #fb923c;
  transform: translateX(3px);
}
.mp-footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 0 36px 24px;
}
.mp-footer-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
}
.mp-footer-trust-item svg {
  color: #fb923c;
  flex-shrink: 0;
}
.mp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 36px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
  text-align: center;
}
.mp-footer-copy {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Overlay / drawer / modal */
.mp-backdrop {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.mp-overlay {
  position: fixed; inset: 0; z-index: 401;
  display: grid; place-items: start center; padding: 80px 24px 24px;
  pointer-events: none;
}
.mp-overlay:not([hidden]) { pointer-events: auto; }
.mp-overlay:not([hidden])::before {
  content: '';
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  z-index: -1;
}
.mp-search-panel {
  width: min(640px, 100%); background: var(--mp-surface); border-radius: 20px;
  border: 1px solid var(--mp-line); box-shadow: var(--mp-shadow); padding: 20px;
}
.mp-search-head { display: flex; gap: 10px; margin-bottom: 20px; }
.mp-search-head input {
  flex: 1; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--mp-line); outline: none;
}
.mp-search-head input:focus { border-color: var(--mp-blue); box-shadow: 0 0 0 3px rgba(249,115,22,.12); }
.mp-search-section h4 { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--mp-text-muted); margin-bottom: 10px; }
.mp-search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-search-tags button {
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--mp-line);
  background: var(--mp-surface-2); cursor: pointer; font-size: 12px; font-weight: 700;
}
.mp-search-result {
  display: flex; justify-content: space-between; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--mp-line); font-size: 14px;
}

.mp-drawer {
  position: fixed; top: 0; right: 0; width: min(380px, 100%); height: 100%; z-index: 402;
  background: var(--mp-surface); border-left: 1px solid var(--mp-line); box-shadow: var(--mp-shadow);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mp-drawer:not([hidden]) { transform: translateX(0); }
body.mp-cart-open .qs-wa-widget { z-index: 350 !important; }
.mp-drawer-head, .mp-drawer-foot { padding: 20px; border-bottom: 1px solid var(--mp-line); display: flex; align-items: center; justify-content: space-between; }
.mp-drawer-foot { margin-top: auto; border-bottom: none; border-top: 1px solid var(--mp-line); flex-direction: column; gap: 12px; align-items: stretch; }
.mp-drawer-body { flex: 1; overflow: auto; padding: 16px 20px; }
.mp-cart-item { display: flex; justify-content: space-between; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--mp-line); font-size: 14px; }

.mp-modal {
  position: fixed; inset: 0; z-index: 403;
  display: grid; place-items: center; padding: 24px;
  pointer-events: none;
}
.mp-modal:not([hidden]) {
  pointer-events: auto;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
}
.mp-modal-card {
  width: min(520px, 100%); background: var(--mp-surface); border-radius: 20px;
  border: 1px solid var(--mp-line); padding: 28px; position: relative; box-shadow: var(--mp-shadow);
}
.mp-modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--mp-line); background: var(--mp-surface); cursor: pointer; }

.mp-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 500;
  padding: 12px 20px; border-radius: 999px; background: var(--mp-navy); color: #fff;
  font-size: 13px; font-weight: 700; box-shadow: var(--mp-shadow);
}
@media (max-width: 900px) {
  .mp-toast {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

/* Mobile bottom dock */
.mp-mobile-dock {
  display: none;
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(10px + env(safe-area-inset-bottom));
  z-index: 380;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
  justify-content: space-around;
  align-items: stretch;
  gap: 4px;
}
.mp-dock-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 6px 4px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--mp-text-muted);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mp-dock-item svg { flex-shrink: 0; }
.mp-dock-item.is-active,
.mp-dock-item:active {
  color: #EA580C;
  background: rgba(249,115,22, 0.1);
}
.mp-dock-badge {
  position: absolute;
  top: 2px; right: calc(50% - 22px);
  min-width: 16px; height: 16px; padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, #F97316, #EA580C);
  color: #fff;
  font-size: 9px; font-style: normal; font-weight: 900;
  display: grid; place-items: center;
  border: 2px solid #fff;
}
body.mp-cart-open .mp-mobile-dock,
body.mp-overlay-open .mp-mobile-dock { transform: translateY(120%); opacity: 0; pointer-events: none; }
.mp-mobile-dock { transition: transform 0.3s, opacity 0.3s; }

/* Reveal animations */
.mp-reveal, .mp-reveal-child { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.mp-reveal.is-visible, .mp-reveal-child.is-visible { opacity: 1; transform: translateY(0); }
.mp-cat-card.is-tap { transform: scale(0.98); border-color: rgba(249,115,22, 0.35); }
.mp-trust-item strong.is-updated { animation: mp-count-pop 0.5s ease; }
@keyframes mp-count-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.mp-hero-core.is-pulse strong { animation: mp-count-pop 0.5s ease; }

/* Touch / mobile product cards */
@media (max-width: 600px), (hover: none) and (pointer: coarse) {
  .mp-product-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 55%);
    place-items: end center;
    padding-bottom: 14px;
  }
  .mp-product-quick { transform: none; min-height: 44px; padding: 12px 18px; }
  .mp-product-card:active { transform: scale(0.99); }
  .mp-wish-btn { width: 44px; height: 44px; }
  .mp-product-order { min-height: 44px; padding: 12px 18px; }
  .mp-btn { min-height: 44px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .mp-reveal, .mp-reveal-child,
  .mp-hero-copy > *, .mp-hero-visual,
  .mp-float-card, .mp-offer-card, .mp-offer-ring { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .mp-drawer { transition: none; }
  .xh-mobile { transition: none; }
}

/* Responsive */
@media (max-width: 1100px) {
  .mp-product-grid { grid-template-columns: repeat(3, 1fr); }
  .mp-benefits { grid-template-columns: repeat(3, 1fr); }
  .mp-review-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 900px) {
  .mp-hero { grid-template-columns: 1fr; padding-top: 92px; }
  .mp-hero-visual { min-height: 320px; }
  .mp-hero-orbit { height: 320px; }
  .mp-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-product-grid { grid-template-columns: repeat(2, 1fr); }
  .mp-offer-inner { grid-template-columns: 1fr; }
  .mp-steps { grid-template-columns: repeat(2, 1fr); }
  .mp-steps::before { display: none; }
  .mp-feature { grid-template-columns: 1fr; }
  .mp-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px 24px 20px; }
  .mp-footer-trust { padding: 0 24px 20px; }
  .mp-footer-bottom { padding: 16px 24px; }
}
@media (max-width: 600px) {
  .mp-hero, .mp-section, .mp-feature, .mp-offer, .mp-final-cta, .mp-footer { padding-left: 16px; padding-right: 16px; }
  .mp-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mp-hero { padding-top: 84px; }
  .mp-hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .mp-lead { font-size: 16px; margin-bottom: 20px; }
  .mp-hero-search { flex-wrap: wrap; padding: 10px; border-radius: 14px; }
  .mp-hero-search input { font-size: 16px; min-height: 44px; }
  .mp-hero-search .mp-btn { width: 100%; }
  .mp-hero-cta { flex-direction: column; }
  .mp-hero-cta .mp-btn { width: 100%; justify-content: center; }
  .mp-hero-visual { min-height: 260px; order: -1; margin-bottom: 8px; }
  .mp-hero-orbit { height: 260px; }
  .mp-hero-core { width: 140px; height: 140px; }
  .mp-hero-core strong { font-size: 28px; }
  .mp-float-card--2, .mp-float-card--3 { display: none; }
  .mp-float-card--1 { top: 12%; left: 50%; transform: translateX(-50%); min-width: 180px; }
  .mp-trust-grid, .mp-cat-grid, .mp-benefits, .mp-steps { grid-template-columns: 1fr; }
  .mp-product-tools-sticky { margin: 0 -16px 16px; padding: 12px 16px; top: 62px; }
  .mp-product-body h3 { font-size: 13px; min-height: auto; -webkit-line-clamp: 2; }
  .mp-product-price strong { font-size: 16px; }
  .mp-product-order { padding: 10px 12px; font-size: 12px; width: auto; }
  .mp-product-foot { flex-wrap: nowrap; gap: 6px; }
  .mp-product-media { padding: 12px 10px 10px; }
  .mp-product-thumb { height: 100px; }
  .mp-product-body { padding: 12px 10px 14px; }
  .mp-product-overlay { padding-bottom: 8px; }
  .mp-product-quick { font-size: 11px; padding: 8px 12px; min-height: 36px; }
  .mp-section-head--row { flex-direction: column; align-items: flex-start; }
  .mp-chip-row { max-width: none; }
  .mp-review-card { flex: 0 0 100%; }
  .mp-footer { padding: 0 16px 12px; }
  .mp-footer-shell { border-radius: 20px; }
  .mp-footer-grid { grid-template-columns: 1fr; gap: 20px; padding: 28px 20px 16px; }
  .mp-footer-brand p { max-width: none; }
  .mp-footer-trust { flex-direction: column; align-items: stretch; padding: 0 20px 16px; }
  .mp-footer-trust-item { justify-content: center; }
  .mp-footer-bottom { padding: 18px 20px 22px; }
  .mp-float-card { min-width: 170px; padding: 10px 12px; }
  .mp-offer-inner { padding: 28px 20px; border-radius: 20px; }
  .mp-countdown div { min-width: 64px; flex: 1; }
  .mp-overlay { padding: 16px; place-items: center; }
  .mp-search-panel { max-height: 90vh; overflow-y: auto; border-radius: 16px; }
  .mp-search-head input { font-size: 16px; min-height: 48px; }
  .mp-drawer { width: 100%; max-width: 100%; border-left: none; }
  .mp-modal-card { margin: 16px; max-height: 90vh; overflow-y: auto; }
  .mp-cat-card { padding: 16px; }
  .mp-trust-item strong { font-size: 24px; }
}
