/* ═══════════════════════════════════════════════════════════════
   PACABOT — Skills Marketplace
   Arabic Default · Dark Theme · Gold + Cyan
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-base:         #070B24;
  --bg-card:         #0D1235;
  --bg-card-hover:   #111842;
  --bg-coming:       #0A0F2A;
  --gold:            #F5A623;
  --gold-dim:        rgba(245, 166, 35, 0.13);
  --gold-glow:       rgba(245, 166, 35, 0.32);
  --gold-border:     rgba(245, 166, 35, 0.25);
  --cyan:            #00D4FF;
  --cyan-dim:        rgba(0, 212, 255, 0.10);
  --cyan-glow:       rgba(0, 212, 255, 0.28);
  --cyan-border:     rgba(0, 212, 255, 0.20);
  --white:           #FFFFFF;
  --text-primary:    #F4F7FF;
  --text-secondary:  #8A90B8;
  --text-dim:        #525780;
  --border-subtle:   rgba(255, 255, 255, 0.06);
  --border-card:     rgba(255, 255, 255, 0.08);
  --success:         #3FB950;
  --success-dim:     rgba(63, 185, 80, 0.15);

  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       18px;
  --radius-xl:       24px;
  --radius-pill:     100px;

  --max-w:           1200px;
  --trans:           all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card:     0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-glow-gold: 0 0 40px rgba(245, 166, 35, 0.18);
  --shadow-glow-cyan: 0 0 40px rgba(0, 212, 255, 0.14);
}

/* ── BASE ── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html[lang="ar"], html[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

html[lang="en"], html[dir="ltr"] {
  direction: ltr;
  text-align: left;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'Alexandria', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Subtle grid texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT UTILITY ── */
.mp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; line-height: 1.3; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.4; }
h4 { font-size: 1rem; font-weight: 500; }
p  { line-height: 1.7; color: var(--text-secondary); }
a  { color: inherit; text-decoration: none; transition: var(--trans); }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #FFD166 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════ */
.mp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 36, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

.mp-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.mp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mp-logo-mark {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--bg-base);
  flex-shrink: 0;
}

.mp-logo-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mp-logo-text span {
  color: var(--gold);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-family: 'Alexandria', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}

.lang-btn.active {
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 600;
}

.lang-btn:not(.active):hover {
  color: var(--text-primary);
}

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.mp-hero {
  padding: 80px 0 60px;
  text-align: center;
}

/* Free OSINT badge */
.free-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--success-dim);
  border: 1px solid rgba(63, 185, 80, 0.3);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--success);
}

.free-badge-icon {
  font-size: 0.75rem;
}

.mp-hero-title {
  background: linear-gradient(135deg, var(--white) 30%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.mp-hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 12px;
}

.mp-hero-desc {
  font-size: 0.95rem;
  color: var(--text-dim);
  max-width: 560px;
  margin: 0 auto 40px;
}

/* ── Category Filters ── */
.mp-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mp-filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  padding: 8px 20px;
  font-family: 'Alexandria', system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}

.mp-filter-btn:hover {
  border-color: var(--cyan-border);
  color: var(--cyan);
  background: var(--cyan-dim);
}

.mp-filter-btn.active {
  background: var(--cyan-dim);
  border-color: var(--cyan-border);
  color: var(--cyan);
}

/* ════════════════════════════════════════════
   SKILLS GRID
   ════════════════════════════════════════════ */
.mp-grid-section {
  padding: 20px 0 100px;
}

.mp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── Skill Card ── */
.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--trans);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.skill-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: var(--trans);
  pointer-events: none;
}

.skill-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card), var(--shadow-glow-gold);
}

.skill-card:hover::before {
  opacity: 1;
}

.skill-card.selected {
  border-color: var(--gold);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--gold), var(--shadow-glow-gold);
}

.skill-card.hidden {
  display: none;
}

/* Card Icon */
.card-icon-wrap {
  display: flex;
  align-items: flex-start;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

/* Icon colour variants */
.icon-conversion  { background: rgba(245, 166, 35, 0.12); border: 1px solid rgba(245, 166, 35, 0.2); }
.icon-finance     { background: rgba(0, 212, 255, 0.10); border: 1px solid rgba(0, 212, 255, 0.18); }
.icon-legal       { background: rgba(138, 111, 245, 0.12); border: 1px solid rgba(138, 111, 245, 0.2); }
.icon-content     { background: rgba(63, 185, 80, 0.10); border: 1px solid rgba(63, 185, 80, 0.18); }
.icon-strategy    { background: rgba(245, 166, 35, 0.10); border: 1px solid rgba(245, 166, 35, 0.18); }
.icon-startup     { background: rgba(0, 212, 255, 0.10); border: 1px solid rgba(0, 212, 255, 0.18); }
.icon-realestate  { background: rgba(248, 120, 60, 0.10); border: 1px solid rgba(248, 120, 60, 0.18); }
.icon-hr          { background: rgba(245, 100, 180, 0.10); border: 1px solid rgba(245, 100, 180, 0.18); }

/* ── CSS Icon Shapes ── */
.icon-shape {
  position: absolute;
}

/* Funnel (Conversion) */
.icon-funnel {
  width: 22px;
  height: 22px;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 16px solid var(--gold);
  opacity: 0.85;
}
.icon-funnel::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--gold);
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 2px 2px;
  opacity: 0.85;
}

/* Chart bars (Finance) */
.icon-chart {
  width: 22px;
  height: 20px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.icon-chart::before,
.icon-chart::after {
  content: '';
  background: var(--cyan);
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
  flex: 1;
}
.icon-chart::before { height: 65%; }
.icon-chart::after  { height: 100%; }

/* Scales (Legal) */
.icon-scale {
  width: 22px;
  height: 22px;
}
.icon-scale::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: rgba(138, 111, 245, 0.85);
  top: 5px;
  left: 2px;
  border-radius: 1px;
}
.icon-scale::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 18px;
  background: rgba(138, 111, 245, 0.85);
  top: 2px;
  left: 10px;
  border-radius: 1px;
}

/* Pen (Content) */
.icon-pen {
  width: 20px;
  height: 20px;
}
.icon-pen::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(63, 185, 80, 0.85);
  border-radius: 2px;
  top: 2px;
  left: 3px;
  transform: rotate(45deg);
}

/* Diamond (Strategy) */
.icon-diamond {
  width: 20px;
  height: 20px;
  background: rgba(245, 166, 35, 0.75);
  transform: rotate(45deg);
  border-radius: 3px;
}

/* Rocket (Startup) */
.icon-rocket {
  width: 8px;
  height: 20px;
  background: var(--cyan);
  border-radius: 4px 4px 2px 2px;
  opacity: 0.85;
}
.icon-rocket::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 8px solid rgba(0, 212, 255, 0.5);
  top: -4px;
  left: -4px;
}

/* Building (Real Estate) */
.icon-building {
  width: 20px;
  height: 20px;
  background: rgba(248, 120, 60, 0.75);
  border-radius: 3px 3px 0 0;
}
.icon-building::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 3px;
  background: rgba(248, 120, 60, 0.5);
  bottom: -3px;
  left: -4px;
}

/* People (HR) */
.icon-people {
  width: 22px;
  height: 20px;
}
.icon-people::before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(245, 100, 180, 0.85);
  border-radius: 50%;
  top: 0;
  left: 6px;
}
.icon-people::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 8px;
  border: 2px solid rgba(245, 100, 180, 0.85);
  border-radius: 8px 8px 0 0;
  bottom: 0;
  left: 2px;
  border-bottom: none;
}

/* Coming soon icons */
.icon-datasci  { background: rgba(100, 180, 255, 0.10); border: 1px solid rgba(100, 180, 255, 0.18); }
.icon-health   { background: rgba(255, 80, 80, 0.10); border: 1px solid rgba(255, 80, 80, 0.18); }
.icon-supply   { background: rgba(245, 166, 35, 0.10); border: 1px solid rgba(245, 166, 35, 0.18); }

/* Scatter plot (Data Sci) */
.icon-scatter {
  width: 20px;
  height: 20px;
  position: relative;
}
.icon-scatter::before,
.icon-scatter::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(100, 180, 255, 0.85);
  border-radius: 50%;
}
.icon-scatter::before { top: 0; left: 0; }
.icon-scatter::after  { bottom: 2px; right: 0; }

/* Cross (Health) */
.icon-cross {
  width: 20px;
  height: 20px;
}
.icon-cross::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 5px;
  background: rgba(255, 80, 80, 0.75);
  border-radius: 2px;
  top: 7px;
  left: 0;
}
.icon-cross::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 20px;
  background: rgba(255, 80, 80, 0.75);
  border-radius: 2px;
  top: 0;
  left: 7px;
}

/* Chain links (Supply) */
.icon-chain {
  width: 22px;
  height: 10px;
}
.icon-chain::before,
.icon-chain::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(245, 166, 35, 0.75);
  border-radius: 50%;
}
.icon-chain::before { left: 0; }
.icon-chain::after  { right: 0; }

/* Card Body */
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.card-subtitle {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 400;
  margin-top: 2px;
}
[dir="rtl"] .card-subtitle {
  display: none;
}

/* Price badge */
.price-badge {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Unlock bullets */
.card-unlocks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card-unlocks li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-inline-start: 18px;
  position: relative;
  line-height: 1.45;
}

.card-unlocks li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  top: 1px;
}

/* Install Button */
.install-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-family: 'Alexandria', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11px 20px;
  width: 100%;
  cursor: pointer;
  transition: var(--trans);
}

.install-btn:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

.skill-card.selected .install-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-base);
}

.skill-card.selected .install-btn::before {
  content: '✓ ';
}

.install-btn-icon {
  font-size: 0.85rem;
}

/* ════════════════════════════════════════════
   CART BAR (sticky bottom)
   ════════════════════════════════════════════ */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(13, 18, 53, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--gold-border);
  padding: 14px 0;
  box-shadow: 0 -8px 40px rgba(245, 166, 35, 0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cart-bar[hidden] {
  display: block !important;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cart-bar:not([hidden]) {
  transform: translateY(0);
  opacity: 1;
}

.cart-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cart-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.cart-count {
  background: var(--gold);
  color: var(--bg-base);
  font-weight: 700;
  font-size: 0.85rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-label {
  color: var(--text-secondary);
}

.cart-divider {
  color: var(--text-dim);
}

.cart-total-label {
  color: var(--text-secondary);
}

.cart-total {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.05rem;
}

.cart-cta {
  background: var(--gold);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--bg-base);
  font-family: 'Alexandria', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 28px;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cart-cta:hover {
  background: #FFB733;
  box-shadow: 0 0 24px var(--gold-glow);
}

.cart-arrow {
  transition: var(--trans);
}

html[dir="ltr"] .cart-arrow {
  content: '→';
}

html[dir="rtl"] .cart-arrow::before {
  content: '←';
}

html[dir="ltr"] .cart-arrow::before {
  content: '→';
}

/* ════════════════════════════════════════════
   COMING SOON SECTION
   ════════════════════════════════════════════ */
.mp-coming-soon {
  background: var(--bg-coming);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 80px 0;
}

.coming-soon-header {
  text-align: center;
  margin-bottom: 48px;
}

.coming-soon-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-border);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  margin-bottom: 16px;
}

.coming-soon-title {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.coming-soon-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
}

.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.coming-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px dashed var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.coming-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.coming-info {
  flex: 1;
}

.coming-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.coming-desc {
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.coming-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   CUSTOM SKILL CTA
   ════════════════════════════════════════════ */
.mp-custom-cta {
  padding: 90px 0;
}

.custom-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.custom-cta-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold-border), transparent 50%, var(--cyan-border));
  z-index: -1;
}

.custom-cta-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.custom-cta-title {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.custom-cta-desc {
  font-size: 0.97rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}

.custom-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  border: none;
  border-radius: var(--radius-pill);
  color: var(--bg-base);
  font-family: 'Alexandria', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  cursor: pointer;
  transition: var(--trans);
  margin-bottom: 16px;
}

.custom-cta-btn:hover {
  background: #FFB733;
  box-shadow: 0 0 32px var(--gold-glow);
}

.btn-arrow {
  transition: var(--trans);
}

.custom-cta-btn:hover .btn-arrow {
  transform: translateX(-3px);
}

html[dir="ltr"] .btn-arrow {
  transform-origin: center;
}

html[dir="ltr"] .custom-cta-btn:hover .btn-arrow {
  transform: translateX(3px);
}

.custom-cta-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: block;
  margin-top: 12px;
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.mp-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 28px 0;
  /* account for sticky cart bar height */
  padding-bottom: 40px;
}

.mp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mp-footer-copy {
  font-size: 0.82rem;
  color: var(--text-dim);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
  .mp-hero { padding: 60px 0 44px; }

  .mp-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .skill-card {
    padding: 22px 20px 18px;
  }

  .cart-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cart-cta {
    justify-content: center;
  }

  .custom-cta-card {
    padding: 40px 24px;
  }

  .coming-soon-grid {
    grid-template-columns: 1fr;
  }

  .mp-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .mp-filters {
    gap: 8px;
  }

  .mp-filter-btn {
    font-size: 0.82rem;
    padding: 7px 14px;
  }
}

@media (max-width: 480px) {
  .mp-header-inner {
    padding: 0 16px;
  }

  .mp-container {
    padding: 0 16px;
  }

  h1 { font-size: 1.9rem; }

  .card-title-row {
    flex-direction: column;
    gap: 8px;
  }

  .price-badge {
    align-self: flex-start;
  }
}

/* ── Body padding when cart bar is visible ── */
body.cart-active {
  padding-bottom: 80px;
}
