/* ==========================================================================
   Ouhud Marketplace — public storefront design system
   Self-contained (no build step, no Tailwind dependency). Light + dark.
   ========================================================================== */

:root {
  --mp-navy: #0d2a78;
  --mp-navy-600: #12379a;
  --mp-navy-700: #0b2160;
  --mp-accent: #2f6bff;
  --mp-accent-ink: #ffffff;

  --mp-bg: #f5f7fc;
  --mp-bg-elev: #ffffff;
  --mp-surface: #ffffff;
  --mp-surface-2: #f1f4fb;
  --mp-text: #0f1b3d;
  --mp-text-soft: #40507a;
  --mp-muted: #6b7794;
  --mp-border: #e4e9f5;
  --mp-border-strong: #d3dbef;
  --mp-shadow: 0 1px 2px rgba(15, 27, 61, .06), 0 8px 24px rgba(15, 27, 61, .06);
  --mp-shadow-lg: 0 12px 40px rgba(13, 42, 120, .16);

  --mp-green-bg: #e7f7ee; --mp-green-fg: #147a45;
  --mp-blue-bg: #e7effe; --mp-blue-fg: #1d4ed8;
  --mp-slate-bg: #eef1f7; --mp-slate-fg: #475569;

  --mp-radius: 16px;
  --mp-radius-sm: 10px;
  --mp-maxw: 1200px;
  --mp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

:root[data-theme="dark"] {
  --mp-bg: #0a0f20;
  --mp-bg-elev: #111830;
  --mp-surface: #131b33;
  --mp-surface-2: #0f1730;
  --mp-text: #eaf0ff;
  --mp-text-soft: #b9c4e0;
  --mp-muted: #8b98bd;
  --mp-border: #23304f;
  --mp-border-strong: #2c3c63;
  --mp-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 10px 30px rgba(0, 0, 0, .35);
  --mp-shadow-lg: 0 16px 48px rgba(0, 0, 0, .5);
  --mp-accent: #5b86ff;

  --mp-green-bg: #10331f; --mp-green-fg: #57d98a;
  --mp-blue-bg: #16233f; --mp-blue-fg: #7aa2ff;
  --mp-slate-bg: #1c2743; --mp-slate-fg: #a7b4d4;
}

* { box-sizing: border-box; }

.mp-body {
  margin: 0;
  font-family: var(--mp-font);
  background: var(--mp-bg);
  color: var(--mp-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.mp-body a { color: inherit; text-decoration: none; }
.mp-container { width: 100%; max-width: var(--mp-maxw); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; }

.mp-skip-link {
  position: absolute; left: -999px; top: 0; background: var(--mp-navy); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200;
}
.mp-skip-link:focus { left: 0; }

/* ---------- Header ---------- */
.mp-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--mp-bg-elev) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--mp-border);
}
.mp-header__inner { display: flex; align-items: center; gap: 20px; height: 68px; }
.mp-brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; white-space: nowrap; }
.mp-brand__mark {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mp-navy), var(--mp-accent)); color: #fff; font-size: 15px;
}
.mp-brand__text strong { color: var(--mp-navy); font-weight: 800; }
:root[data-theme="dark"] .mp-brand__text strong { color: var(--mp-accent); }

.mp-search {
  flex: 1; display: flex; align-items: center; gap: 10px; position: relative;
  max-width: 520px;
}
.mp-search input {
  width: 100%; padding: 11px 14px 11px 40px; border-radius: 12px;
  border: 1px solid var(--mp-border-strong); background: var(--mp-surface); color: var(--mp-text);
  font-size: 15px; outline: none;
}
.mp-search input:focus { border-color: var(--mp-accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--mp-accent) 22%, transparent); }
.mp-search__icon { position: absolute; left: 14px; color: var(--mp-muted); }

.mp-nav { display: flex; align-items: center; gap: 18px; white-space: nowrap; }
.mp-nav > a { color: var(--mp-text-soft); font-weight: 600; font-size: 14.5px; }
.mp-nav > a:hover { color: var(--mp-text); }
.mp-theme-toggle {
  border: 1px solid var(--mp-border-strong); background: var(--mp-surface); color: var(--mp-text-soft);
  width: 38px; height: 38px; border-radius: 10px; cursor: pointer; font-size: 15px;
}
.mp-theme-toggle:hover { color: var(--mp-text); }

.mp-burger { display: none; border: 0; background: transparent; color: var(--mp-text); font-size: 22px; cursor: pointer; }
.mp-mobile-menu { display: none; flex-direction: column; padding: 8px 24px 16px; border-bottom: 1px solid var(--mp-border); }
.mp-mobile-menu a { padding: 12px 4px; font-weight: 600; border-top: 1px solid var(--mp-border); }

/* ---------- Buttons ---------- */
.mp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px; font-weight: 700; font-size: 14.5px;
  cursor: pointer; border: 1px solid transparent; transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}
.mp-btn:active { transform: translateY(1px); }
.mp-btn--primary { background: var(--mp-navy); color: #fff; }
.mp-btn--primary:hover { background: var(--mp-navy-600); box-shadow: var(--mp-shadow-lg); }
.mp-btn--ghost { background: var(--mp-surface); color: var(--mp-text); border-color: var(--mp-border-strong); }
.mp-btn--ghost:hover { border-color: var(--mp-accent); }
.mp-btn--ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.mp-btn--ghost-light:hover { background: rgba(255,255,255,.2); }
.mp-btn--light { background: #fff; color: var(--mp-navy); }
.mp-btn--light:hover { box-shadow: var(--mp-shadow-lg); }
.mp-btn--lg { padding: 13px 24px; font-size: 15.5px; }
.mp-btn--block { width: 100%; }

.mp-link { color: var(--mp-accent); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.mp-link:hover { text-decoration: underline; }

/* ---------- Hero ---------- */
.mp-hero {
  background: radial-gradient(1200px 500px at 70% -10%, rgba(47,107,255,.25), transparent),
              linear-gradient(160deg, var(--mp-navy-700), var(--mp-navy) 55%, var(--mp-navy-600));
  color: #fff; padding: 72px 0 64px;
}
.mp-hero--compact { padding: 56px 0 48px; }
.mp-hero__inner { max-width: 820px; }
.mp-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px;
  background: rgba(255,255,255,.14); padding: 6px 14px; border-radius: 999px; margin-bottom: 18px; }
.mp-hero__title { font-size: clamp(30px, 5vw, 48px); line-height: 1.1; font-weight: 850; margin: 0 0 16px; letter-spacing: -.02em; }
.mp-hero__lead { font-size: clamp(16px, 2.2vw, 19px); color: rgba(255,255,255,.85); margin: 0 0 28px; max-width: 640px; }
.mp-hero__search { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 14px; padding: 8px; max-width: 640px; box-shadow: var(--mp-shadow-lg); }
.mp-hero__search i { color: var(--mp-muted); padding-left: 12px; }
.mp-hero__search input { flex: 1; border: 0; outline: none; font-size: 16px; padding: 10px; background: transparent; color: #0f1b3d; }
.mp-hero__stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 36px; }
.mp-stat { display: flex; flex-direction: column; }
.mp-stat strong { font-size: 30px; font-weight: 850; }
.mp-stat span { color: rgba(255,255,255,.8); font-size: 14px; }

/* ---------- Sections ---------- */
.mp-section { padding: 56px 0 8px; }
.mp-section__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 24px; }
.mp-section__head h2 { font-size: 24px; font-weight: 800; margin: 0; letter-spacing: -.01em; }

/* ---------- Category grid ---------- */
.mp-category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 14px; }
.mp-category-tile {
  display: flex; align-items: center; gap: 12px; padding: 16px; border-radius: var(--mp-radius-sm);
  background: var(--mp-surface); border: 1px solid var(--mp-border); box-shadow: var(--mp-shadow);
  transition: transform .1s ease, border-color .15s ease;
}
.mp-category-tile:hover { transform: translateY(-2px); border-color: var(--mp-accent); }
.mp-category-tile__icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center;
  background: var(--mp-surface-2); color: var(--mp-navy); font-size: 17px; }
:root[data-theme="dark"] .mp-category-tile__icon { color: var(--mp-accent); }
.mp-category-tile__label { font-weight: 700; font-size: 15px; flex: 1; }
.mp-category-tile__count { color: var(--mp-muted); font-size: 13px; font-weight: 700; }

/* ---------- App grid + cards ---------- */
.mp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.mp-grid--partners { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.mp-card {
  background: var(--mp-surface); border: 1px solid var(--mp-border); border-radius: var(--mp-radius);
  box-shadow: var(--mp-shadow); overflow: hidden; transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
}
.mp-card:hover { transform: translateY(-3px); box-shadow: var(--mp-shadow-lg); border-color: var(--mp-border-strong); }
.mp-card__link { display: block; padding: 20px; height: 100%; }
.mp-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 14px; }
.mp-card__title { font-size: 17px; font-weight: 800; margin: 0 0 2px; }
.mp-card__vendor { color: var(--mp-muted); font-size: 13px; margin: 0 0 10px; }
.mp-card__summary { color: var(--mp-text-soft); font-size: 14px; margin: 0 0 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 40px; }
.mp-card__meta { display: flex; flex-wrap: wrap; gap: 6px; }

/* ---------- Logo tile ---------- */
.mp-logo { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--mp-surface-2); color: var(--mp-navy); font-size: 22px; flex-shrink: 0; overflow: hidden; }
.mp-logo img { width: 30px; height: 30px; object-fit: contain; }
.mp-logo--lg { width: 72px; height: 72px; font-size: 32px; border-radius: 16px; }
.mp-logo--lg img { width: 46px; height: 46px; }
/* colour tints (from brand assets) */
.mp-logo--sky, .mp-logo--blue { background: #e7effe; color: #1d4ed8; }
.mp-logo--indigo, .mp-logo--violet, .mp-logo--purple { background: #eee9fe; color: #6d28d9; }
.mp-logo--green, .mp-logo--emerald { background: #e6f7ee; color: #12784a; }
.mp-logo--teal, .mp-logo--cyan { background: #e2f6f7; color: #0e7490; }
.mp-logo--red, .mp-logo--rose, .mp-logo--pink { background: #fdeaef; color: #be123c; }
.mp-logo--orange, .mp-logo--amber, .mp-logo--yellow { background: #fef2e0; color: #b45309; }
.mp-logo--slate, .mp-logo--gray, .mp-logo--grey { background: var(--mp-surface-2); color: var(--mp-text-soft); }
:root[data-theme="dark"] .mp-logo { background: #1b2645; color: var(--mp-accent); }
:root[data-theme="dark"] .mp-logo[class*="mp-logo--"] { background: #1b2645; }

/* ---------- Badges + chips ---------- */
.mp-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 800;
  padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.mp-badge--green { background: var(--mp-green-bg); color: var(--mp-green-fg); }
.mp-badge--blue { background: var(--mp-blue-bg); color: var(--mp-blue-fg); }
.mp-badge--slate { background: var(--mp-slate-bg); color: var(--mp-slate-fg); }
.mp-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600;
  padding: 5px 10px; border-radius: 8px; background: var(--mp-surface-2); color: var(--mp-text-soft); border: 1px solid var(--mp-border); }
.mp-chip--muted { background: transparent; }
.mp-chip--code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
.mp-chip--light { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.2); }

/* ---------- Trust band ---------- */
.mp-trust-band { background: var(--mp-bg-elev); border-top: 1px solid var(--mp-border); border-bottom: 1px solid var(--mp-border); margin-top: 56px; padding: 48px 0; }
.mp-trust-band__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.mp-trust-item__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; margin-bottom: 12px; }
.mp-trust-item h3 { margin: 0 0 6px; font-size: 17px; }
.mp-trust-item p { margin: 0; color: var(--mp-text-soft); font-size: 14.5px; }

/* ---------- CTA band ---------- */
.mp-cta-band { margin: 56px 0 0; }
.mp-cta-band__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--mp-navy), var(--mp-accent)); color: #fff;
  border-radius: 22px; padding: 36px 40px; margin-bottom: 56px;
}
.mp-cta-band__inner h2 { margin: 0 0 6px; font-size: 24px; }
.mp-cta-band__inner p { margin: 0; color: rgba(255,255,255,.88); }

/* ---------- Browse / filters ---------- */
.mp-browse { padding: 36px 0 64px; }
.mp-browse__header { margin-bottom: 22px; }
.mp-browse__header h1 { font-size: 28px; font-weight: 850; margin: 8px 0 4px; }
.mp-browse__count { color: var(--mp-muted); margin: 0; font-weight: 600; }
.mp-breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--mp-muted); font-size: 13px; }
.mp-breadcrumb a:hover { color: var(--mp-text); }
.mp-breadcrumb i { font-size: 9px; }
.mp-breadcrumb--light { color: rgba(255,255,255,.75); }
.mp-breadcrumb--light a:hover { color: #fff; }

.mp-filters {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px; margin-bottom: 28px;
  padding: 16px; background: var(--mp-surface); border: 1px solid var(--mp-border); border-radius: var(--mp-radius); box-shadow: var(--mp-shadow);
}
.mp-filters__search { position: relative; flex: 1; min-width: 200px; }
.mp-filters__search i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--mp-muted); }
.mp-filters__search input { width: 100%; padding: 10px 12px 10px 36px; border-radius: 10px; border: 1px solid var(--mp-border-strong); background: var(--mp-bg-elev); color: var(--mp-text); font-size: 14px; }
.mp-select { display: flex; flex-direction: column; gap: 5px; }
.mp-select__label { font-size: 12px; font-weight: 700; color: var(--mp-muted); }
.mp-select select { padding: 9px 12px; border-radius: 10px; border: 1px solid var(--mp-border-strong); background: var(--mp-bg-elev); color: var(--mp-text); font-size: 14px; min-width: 140px; }
.mp-filters__reset { margin-left: auto; }

/* ---------- Pagination ---------- */
.mp-pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 40px 0 0; }
.mp-pagination__info { color: var(--mp-muted); font-weight: 700; font-size: 14px; }

/* ---------- Empty ---------- */
.mp-empty { text-align: center; padding: 64px 20px; }
.mp-empty--page { padding: 96px 20px; }
.mp-empty > i { font-size: 40px; color: var(--mp-muted); margin-bottom: 16px; }
.mp-empty h1, .mp-empty h2 { margin: 0 0 8px; }
.mp-empty p { color: var(--mp-text-soft); margin: 0 0 20px; }
.mp-empty__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Detail ---------- */
.mp-detail-hero { background: linear-gradient(160deg, var(--mp-navy-700), var(--mp-navy)); color: #fff; padding: 28px 0 40px; }
.mp-detail-hero__inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.mp-detail-hero__id { display: flex; gap: 20px; align-items: center; }
.mp-detail-hero__id h1 { margin: 0 0 4px; font-size: clamp(24px, 3.5vw, 34px); font-weight: 850; }
.mp-detail-hero__vendor { color: rgba(255,255,255,.8); margin: 0 0 12px; }
.mp-detail-hero__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-detail-hero__actions { display: flex; flex-direction: column; gap: 10px; min-width: 240px; }
.mp-detail-hero__hint { color: rgba(255,255,255,.7); font-size: 12.5px; margin: 2px 0 0; text-align: center; }

.mp-detail-body { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding: 36px 24px 64px; align-items: start; }
.mp-detail-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.mp-detail-side { min-width: 0; }
.mp-panel { background: var(--mp-surface); border: 1px solid var(--mp-border); border-radius: var(--mp-radius); box-shadow: var(--mp-shadow); padding: 24px; }
.mp-panel h2 { margin: 0 0 14px; font-size: 20px; font-weight: 800; }
.mp-panel__title-sm { font-size: 15px !important; text-transform: uppercase; letter-spacing: .04em; color: var(--mp-muted); }
.mp-panel--sticky { position: sticky; top: 88px; }
.mp-detail-summary { font-size: 16px; color: var(--mp-text); font-weight: 600; }
.mp-subhead { font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--mp-muted); margin: 20px 0 10px; }
.mp-muted { color: var(--mp-muted); }

.mp-usage__row { display: flex; gap: 14px; align-items: center; }
.mp-usage__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--mp-surface-2); color: var(--mp-navy); display: grid; place-items: center; font-size: 20px; }
:root[data-theme="dark"] .mp-usage__icon { color: var(--mp-accent); }
.mp-usage__row p { margin: 2px 0 0; color: var(--mp-muted); font-size: 14px; }
.mp-taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.mp-checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.mp-checklist li { display: flex; align-items: center; gap: 10px; font-size: 14.5px; }
.mp-checklist li i { color: var(--mp-green-fg); }

.mp-facts { margin: 16px 0; display: grid; gap: 12px; }
.mp-facts > div { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; border-bottom: 1px solid var(--mp-border); padding-bottom: 10px; }
.mp-facts dt { color: var(--mp-muted); margin: 0; }
.mp-facts dd { margin: 0; font-weight: 700; text-align: right; }

.mp-trust-summary { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mp-trust-summary__status { font-size: 13px; font-weight: 700; color: var(--mp-text-soft); }
.mp-trust-summary__evidence { font-size: 13px; margin: 12px 0 0; }
.mp-checks { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 9px; }
.mp-check { display: flex; align-items: center; gap: 10px; font-size: 13.5px; }
.mp-check--ok i { color: var(--mp-green-fg); }
.mp-check--pending i { color: var(--mp-muted); }
.mp-check--pending { color: var(--mp-muted); }

/* ---------- Reviews / stars ---------- */
.mp-stars { color: #f5a623; font-size: 14px; }
.mp-reviews__summary { display: flex; gap: 24px; align-items: center; margin-bottom: 16px; }
.mp-reviews__avg { display: flex; align-items: center; gap: 10px; }
.mp-reviews__score { font-size: 34px; font-weight: 850; }
.mp-reviews__count { color: var(--mp-muted); font-size: 14px; }
.mp-reviews__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.mp-review { border-top: 1px solid var(--mp-border); padding-top: 16px; }
.mp-review__head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mp-review p { margin: 0 0 6px; color: var(--mp-text-soft); }
.mp-review__meta { color: var(--mp-muted); font-size: 12.5px; }

/* ---------- Partners ---------- */
.mp-partner-card { background: var(--mp-surface); border: 1px solid var(--mp-border); border-radius: var(--mp-radius); box-shadow: var(--mp-shadow); transition: transform .12s ease, box-shadow .18s ease; }
.mp-partner-card:hover { transform: translateY(-3px); box-shadow: var(--mp-shadow-lg); }
.mp-partner-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mp-partner-avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-weight: 850; font-size: 20px;
  background: linear-gradient(135deg, var(--mp-navy), var(--mp-accent)); color: #fff; }
.mp-partner-avatar--lg { width: 72px; height: 72px; font-size: 30px; }

/* ---------- Steps (developers) ---------- */
.mp-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.mp-step { background: var(--mp-surface); border: 1px solid var(--mp-border); border-radius: var(--mp-radius); box-shadow: var(--mp-shadow); padding: 24px; }
.mp-step__num { width: 36px; height: 36px; border-radius: 10px; background: var(--mp-navy); color: #fff; display: grid; place-items: center; font-weight: 850; margin-bottom: 12px; }
.mp-step h3 { margin: 0 0 6px; font-size: 16px; }
.mp-step p { margin: 0; color: var(--mp-text-soft); font-size: 14px; }

/* ---------- Footer ---------- */
.mp-footer { background: var(--mp-bg-elev); border-top: 1px solid var(--mp-border); margin-top: 64px; padding: 48px 0 24px; }
.mp-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.mp-footer__brand p { color: var(--mp-muted); font-size: 14px; margin: 10px 0 0; max-width: 320px; }
.mp-footer h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .05em; color: var(--mp-muted); margin: 0 0 14px; }
.mp-footer__grid > div > a { display: block; padding: 5px 0; color: var(--mp-text-soft); font-size: 14.5px; }
.mp-footer__grid > div > a:hover { color: var(--mp-text); }
.mp-footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--mp-border); color: var(--mp-muted); font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .mp-detail-body { grid-template-columns: 1fr; }
  .mp-panel--sticky { position: static; }
  .mp-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .mp-search { display: none; }
  .mp-nav { display: none; }
  .mp-burger { display: block; }
  .mp-mobile-menu[data-open="true"] { display: flex; }
  .mp-header__inner { justify-content: space-between; }
  .mp-detail-hero__actions { min-width: 0; width: 100%; }
  .mp-cta-band__inner { padding: 28px 24px; }
}
@media (max-width: 520px) {
  .mp-container { padding: 0 16px; }
  .mp-footer__grid { grid-template-columns: 1fr; }
  .mp-hero__stats { gap: 20px; }
}
