/*
Theme Name:  Scoppar v3
Theme URI:   https://scoppar.com
Author:      Scoppar LTD
Description: Scoppar Group brand theme v3.0.0 — inventory-first trade infrastructure platform for scoppar.com. Public brand site + manufacturer portal. Mobile-first, no page builder required.
Version:     3.0.0
Requires at least: 6.2
Requires PHP: 8.0
Text Domain: scoppar-v3
Tags: custom-background, custom-logo, full-width-template, sticky-post, threaded-comments
*/

/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --navy:      #001F3F;
  --navy2:     #0B2C55;
  --navy3:     #163A6B;
  --deep:      #060d1a;
  --red:       #D32F2F;
  --red-h:     #B71C1C;
  --gold:      #D4AF37;
  --gold-h:    #C49B2E;
  --gold-pale: rgba(212,175,55,.12);
  --green:     #0D9B52;
  --green-h:   #0a8245;
  --white:     #FFFFFF;
  --bg:        #F4F6FB;
  --bg2:       #EEF1F8;
  --surface:   #FFFFFF;
  --border:    rgba(0,31,63,.09);
  --border-md: rgba(0,31,63,.16);
  --text:      #0a1628;
  --muted:     #526070;
  --muted2:    #8a99aa;

  /* Spacing & shape */
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow:    0 1px 12px rgba(0,31,63,.07);
  --shadow-md: 0 6px 28px rgba(0,31,63,.11);
  --shadow-lg: 0 20px 60px rgba(0,31,63,.16);
  --max:       1200px;
  --nav-h:     66px;

  /* SUI alias tokens — used by scoppar-pay and other plugins */
  --sui-navy:      #001F3F;
  --sui-navy2:     #0B2C55;
  --sui-red:       #D32F2F;
  --sui-red-h:     #B71C1C;
  --sui-gold:      #D4AF37;
  --sui-green:     #0D9B52;
  --sui-blue:      #1D6FE8;
  --sui-wa:        #25D366;
  --sui-bg:        #F4F6FB;
  --sui-surface:   #FFFFFF;
  --sui-text:      #0a1628;
  --sui-muted:     #526070;
  --sui-muted2:    #8a99aa;
  --sui-line:      #E2E8F0;
  --sui-r:         12px;
  --sui-r-lg:      20px;
  --sui-shadow:    0 2px 16px rgba(0,31,63,.07);
  --sui-shadow-md: 0 8px 32px rgba(0,31,63,.12);
  --sui-shadow-lg: 0 20px 60px rgba(0,31,63,.16);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6,
.sc-display { font-family: 'Manrope', sans-serif; font-weight: 800; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* Skip link */
.skip-link {
  position: absolute; top: -999px; left: 20px; z-index: 9999;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 0 0 8px 8px; font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 0; }

/* WP admin bar offset */
body.admin-bar .sc-nav { top: 32px; }
@media (max-width: 782px) { body.admin-bar .sc-nav { top: 46px; } }

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════════ */
.sc-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.sc-container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .sc-container { padding: 0 32px; } }
.sc-text-center { text-align: center; }
.sc-mt-0 { margin-top: 0 !important; }
.sc-mb-0 { margin-bottom: 0 !important; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS — touch-sized, accessible
═══════════════════════════════════════════════════════════ */
.sc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 11px;
  font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 15px;
  text-decoration: none !important; transition: all .18s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; border: none; cursor: pointer; line-height: 1.2;
  min-height: 50px; /* WCAG touch target */
}
.sc-btn:focus-visible { outline: 3px solid rgba(29,110,232,.4); outline-offset: 3px; }
.sc-btn:active { transform: scale(.98) !important; }

.sc-btn-primary  { background: var(--red); color: #fff !important; box-shadow: 0 6px 20px rgba(211,47,47,.28); }
.sc-btn-primary:hover { background: var(--red-h); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(211,47,47,.36); }
.sc-btn-navy     { background: var(--navy); color: #fff !important; }
.sc-btn-navy:hover { background: var(--navy2); transform: translateY(-1px); }
.sc-btn-gold     { background: var(--gold); color: var(--navy) !important; box-shadow: 0 6px 20px rgba(212,175,55,.25); }
.sc-btn-gold:hover { background: var(--gold-h); transform: translateY(-1px); }
.sc-btn-ghost    { color: rgba(255,255,255,.8) !important; border: 1.5px solid rgba(255,255,255,.22); background: transparent; }
.sc-btn-ghost:hover { color: #fff !important; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); }
.sc-btn-ghost-dark { color: var(--navy) !important; border: 1.5px solid var(--border-md); background: transparent; }
.sc-btn-ghost-dark:hover { background: var(--bg); }
.sc-btn-wa { background: rgba(37,211,102,.12); border: 1px solid rgba(37,211,102,.22); color: #25D366 !important; border-radius: 99px !important; }
.sc-btn-wa:hover { background: rgba(37,211,102,.22); }
.sc-btn-sm { padding: 9px 18px !important; font-size: 13px !important; border-radius: 9px !important; min-height: 40px !important; }
.sc-btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 13px; }
.sc-btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   PUBLIC NAV — dark sticky, hamburger on mobile
═══════════════════════════════════════════════════════════ */
.sc-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(6,13,26,.97); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  height: var(--nav-h); display: flex; align-items: center; padding: 0 20px;
}
.sc-nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none !important; flex-shrink: 0; }
.sc-nav-mark {
  width: 32px; height: 32px; background: var(--red); border-radius: 8px;
  display: grid; place-items: center; flex-shrink: 0;
}
.sc-nav-mark svg { width: 16px; height: 16px; color: #fff; }
.sc-nav-wordmark { font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 18px; color: #fff; letter-spacing: -.4px; }
.sc-nav-wordmark span { color: var(--gold); }
.sc-nav-spacer { flex: 1; }
.sc-nav-links { display: none; align-items: center; gap: 2px; }
.sc-nav-links a { color: rgba(255,255,255,.6); font-size: 14px; font-weight: 500; padding: 7px 13px; border-radius: 8px; text-decoration: none !important; transition: all .14s; }
.sc-nav-links a:hover, .sc-nav-links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.07); }
.sc-nav-cta { display: none; gap: 8px; align-items: center; }

/* Hamburger */
.sc-hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: none; border: none; cursor: pointer;
  border-radius: 8px; transition: background .14s; flex-shrink: 0;
  padding: 0;
}
.sc-hamburger:hover { background: rgba(255,255,255,.07); }
.sc-hamburger span { display: block; height: 2px; background: rgba(255,255,255,.7); border-radius: 2px; transition: all .22s cubic-bezier(.4,0,.2,1); }
.sc-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sc-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.sc-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.sc-drawer {
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 199;
  background: rgba(6,13,26,.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; padding: 20px 20px 32px; gap: 4px;
  transform: translateX(100%); transition: transform .26s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.sc-drawer.is-open { transform: translateX(0); }
body.sc-drawer-open { overflow: hidden; }
.sc-drawer a, .sc-drawer button {
  display: block; padding: 14px 16px; font-size: 17px; font-weight: 600;
  color: rgba(255,255,255,.75); text-decoration: none !important;
  border-radius: 10px; transition: all .14s; border: none; background: none;
  cursor: pointer; text-align: left; width: 100%;
}
.sc-drawer a:hover, .sc-drawer button:hover { background: rgba(255,255,255,.07); color: #fff; }
.sc-drawer-divider { height: 1px; background: rgba(255,255,255,.07); margin: 10px 0; }
.sc-drawer-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.sc-drawer-cta .sc-btn { justify-content: center; }

/* ≥768px: expand nav, hide hamburger */
@media (min-width: 768px) {
  .sc-nav { padding: 0 32px; }
  .sc-nav-links { display: flex; }
  .sc-nav-cta { display: flex; }
  .sc-hamburger, .sc-drawer { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.sc-hero {
  background: linear-gradient(152deg, #020912 0%, #001228 35%, #001f3f 65%, #0a2850 100%);
  padding: 64px 20px 56px; position: relative; overflow: hidden;
}
.sc-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 800px 500px at 72% 30%, rgba(212,175,55,.07) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 4% 85%, rgba(13,155,82,.06) 0%, transparent 60%),
    radial-gradient(ellipse 400px 300px at 90% 85%, rgba(211,47,47,.05) 0%, transparent 55%);
}
.sc-hero::after {
  content: ''; position: absolute; inset: 0; opacity: .032; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.45) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.45) 1px, transparent 1px);
  background-size: 48px 48px;
}
.sc-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }
.sc-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.25);
  color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 99px; margin-bottom: 20px;
}
.sc-hero-eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.sc-headline {
  font-family: 'Manrope', sans-serif; font-size: clamp(34px, 8vw, 64px);
  font-weight: 900; line-height: 1.05; letter-spacing: -.03em; color: #fff; margin-bottom: 18px;
}
.sc-headline em { font-style: normal; color: var(--gold); }
.sc-hero-body { font-size: clamp(15px, 3vw, 17px); line-height: 1.72; color: rgba(255,255,255,.65); margin-bottom: 28px; max-width: 540px; }
.sc-hero-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 36px; }
.sc-hero-actions .sc-btn { width: 100%; justify-content: center; }
.sc-hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; overflow: hidden;
}
.sc-stat { padding: 16px 18px; border-right: 1px solid rgba(255,255,255,.07); border-bottom: 1px solid rgba(255,255,255,.07); }
.sc-stat:nth-child(2) { border-right: none; }
.sc-stat:nth-child(3) { border-bottom: none; }
.sc-stat:nth-child(4) { border-right: none; border-bottom: none; }
.sc-stat-val { font-family: 'Manrope', sans-serif; font-size: 24px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 5px; }
.sc-stat-lbl { font-size: 11.5px; color: rgba(255,255,255,.45); font-weight: 500; }
/* Hero visual cards — desktop only */
.sc-hero-visual { display: none; }
.sc-float-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 18px 20px; backdrop-filter: blur(10px); }
.sc-fc-tag { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 8px; }
.sc-fc-val { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.sc-fc-val-gold { color: var(--gold); }
.sc-fc-sub { font-size: 12.5px; color: rgba(255,255,255,.5); }
.sc-fc-row { display: flex; gap: 8px; }
.sc-fc-row .sc-float-card { flex: 1; padding: 14px 16px; }
.sc-fc-val-sm { font-family: 'Manrope', sans-serif; font-size: 18px; font-weight: 900; color: #fff; }
.sc-card-stack { display: flex; flex-direction: column; gap: 10px; animation: scStackIn .7s ease both; }
@keyframes scStackIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

@media (min-width: 768px) {
  .sc-hero { padding: 92px 32px 82px; }
  .sc-hero-actions { flex-direction: row; }
  .sc-hero-actions .sc-btn { width: auto; }
  .sc-hero-stats { grid-template-columns: repeat(4, 1fr); background: none; border: none; gap: 12px; }
  .sc-stat { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: 18px 22px; }
}
@media (min-width: 1024px) {
  .sc-hero-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
  .sc-hero-visual { display: block; }
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════ */
.sc-trust { background: var(--deep); padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,.05); }
.sc-trust-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.sc-trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.5); font-size: 12px; font-weight: 500; white-space: nowrap; }
.sc-trust-icon { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.sc-trust-div { width: 1px; height: 16px; background: rgba(255,255,255,.1); flex-shrink: 0; }
@media (max-width: 600px) { .sc-trust-div { display: none; } .sc-trust-inner { gap: 12px; } }

/* ═══════════════════════════════════════════════════════════
   SECTION LAYOUT
═══════════════════════════════════════════════════════════ */
.sc-section { padding: 64px 20px; }
.sc-section-sm { padding: 40px 20px; }
.sc-section-alt { background: var(--bg); }
.sc-section-dark { background: linear-gradient(155deg, var(--navy) 0%, var(--navy2) 100%); }
.sc-section-deep { background: var(--deep); }
.sc-section-inner { max-width: var(--max); margin: 0 auto; }
.sc-section-header { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sc-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.sc-section-dark .sc-eyebrow, .sc-section-deep .sc-eyebrow { color: var(--gold); }
.sc-section-title { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 4vw, 40px); font-weight: 900; line-height: 1.1; letter-spacing: -.022em; color: var(--navy); margin-bottom: 14px; }
.sc-section-dark .sc-section-title, .sc-section-deep .sc-section-title { color: #fff; }
.sc-section-body { font-size: 16px; line-height: 1.72; color: var(--muted); margin: 0; }
.sc-section-dark .sc-section-body, .sc-section-deep .sc-section-body { color: rgba(255,255,255,.58); }
@media (min-width: 768px) { .sc-section { padding: 96px 32px; } .sc-section-sm { padding: 56px 32px; } }

/* ═══════════════════════════════════════════════════════════
   PIPELINE — stacked mobile, 4-col + connector desktop
═══════════════════════════════════════════════════════════ */
.sc-pipeline { display: flex; flex-direction: column; gap: 24px; }
.sc-pipe { display: flex; align-items: flex-start; gap: 20px; }
.sc-pipe-num {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 20px; flex-shrink: 0;
}
.sc-pipe-n1 { background: var(--navy); color: #fff; box-shadow: 0 0 0 6px rgba(0,31,63,.1); }
.sc-pipe-n2 { background: var(--gold); color: var(--navy); box-shadow: 0 0 0 6px rgba(212,175,55,.12); }
.sc-pipe-n3 { background: var(--red); color: #fff; box-shadow: 0 0 0 6px rgba(211,47,47,.1); }
.sc-pipe-n4 { background: var(--green); color: #fff; box-shadow: 0 0 0 6px rgba(13,155,82,.1); }
.sc-pipe-title { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.sc-pipe-body { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (min-width: 768px) {
  .sc-pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; position: relative; }
  .sc-pipeline::before { content: ''; position: absolute; top: 26px; left: calc(12.5% + 10px); right: calc(12.5% + 10px); height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--red) 100%); z-index: 0; }
  .sc-pipe { flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
  .sc-pipe-num { margin-bottom: 18px; transition: transform .2s; }
  .sc-pipe:hover .sc-pipe-num { transform: scale(1.08); }
}

/* ═══════════════════════════════════════════════════════════
   AUDIENCE CARDS
═══════════════════════════════════════════════════════════ */
.sc-audience { display: flex; flex-direction: column; gap: 20px; }
.sc-aud-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: all .22s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column;
}
.sc-aud-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.sc-aud-mfr::before  { background: linear-gradient(90deg, var(--navy), var(--navy3)); }
.sc-aud-agent::before { background: linear-gradient(90deg, var(--gold), #e8c84b); }
.sc-aud-buyer::before { background: linear-gradient(90deg, var(--green), #22d36b); }
.sc-aud-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.sc-aud-icon { width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 18px; }
.sc-aud-mfr  .sc-aud-icon { background: rgba(0,31,63,.07); }
.sc-aud-agent .sc-aud-icon { background: rgba(212,175,55,.12); }
.sc-aud-buyer .sc-aud-icon { background: rgba(13,155,82,.09); }
.sc-aud-label { font-size: 10.5px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; margin-bottom: 7px; }
.sc-aud-mfr  .sc-aud-label { color: var(--navy3); }
.sc-aud-agent .sc-aud-label { color: #8a6e00; }
.sc-aud-buyer .sc-aud-label { color: var(--green-h); }
.sc-aud-title { font-family: 'Manrope', sans-serif; font-size: 20px; font-weight: 900; color: var(--navy); margin-bottom: 10px; line-height: 1.15; }
.sc-aud-body { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.sc-aud-perks { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-direction: column; gap: 7px; }
.sc-aud-perks li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text); }
.sc-aud-perks li::before { content: '✓'; font-size: 10px; font-weight: 900; width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.sc-aud-mfr  .sc-aud-perks li::before { background: rgba(0,31,63,.08); color: var(--navy); }
.sc-aud-agent .sc-aud-perks li::before { background: rgba(212,175,55,.16); color: #8a6e00; }
.sc-aud-buyer .sc-aud-perks li::before { background: rgba(13,155,82,.1); color: var(--green-h); }
.sc-aud-cta .sc-btn { width: 100%; justify-content: center; }
@media (min-width: 768px) {
  .sc-audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .sc-aud-cta .sc-btn { width: auto; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS — grid + carousel
═══════════════════════════════════════════════════════════ */
.sc-products-controls { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.sc-products-tabs { display: flex; gap: 4px; background: var(--bg2); border-radius: 10px; padding: 4px; overflow-x: auto; }
.sc-products-tab { padding: 7px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--muted); cursor: pointer; transition: all .15s; border: none; background: none; white-space: nowrap; }
.sc-products-tab.active { background: var(--surface); color: var(--navy); box-shadow: var(--shadow); }
.sc-products-view-btns { display: flex; gap: 6px; flex-shrink: 0; }
.sc-view-btn { width: 36px; height: 36px; border: 1px solid var(--border-md); border-radius: 8px; background: var(--surface); color: var(--muted); display: grid; place-items: center; cursor: pointer; transition: all .15s; }
.sc-view-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }

.sc-carousel-wrap { position: relative; overflow: hidden; }
.sc-carousel { display: flex; gap: 18px; transition: transform .4s cubic-bezier(.4,0,.2,1); cursor: grab; user-select: none; }
.sc-carousel.is-dragging { cursor: grabbing; transition: none; }
.sc-carousel.grid-mode { flex-wrap: wrap; cursor: default; }

/* Product card */
.sc-product-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  flex: 0 0 calc(88vw - 40px);
  transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column;
}
.sc-product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* carousel widths by breakpoint */
@media (min-width: 600px)  { .sc-product-card { flex: 0 0 calc(50% - 9px); } }
@media (min-width: 900px)  { .sc-product-card { flex: 0 0 calc(33.333% - 12px); } }
@media (min-width: 1100px) { .sc-product-card { flex: 0 0 calc(25% - 14px); } }

/* grid widths */
.sc-carousel.grid-mode .sc-product-card               { flex: 0 0 calc(50% - 9px); }
@media (min-width: 768px)  { .sc-carousel.grid-mode .sc-product-card { flex: 0 0 calc(33.333% - 12px); } }
@media (min-width: 1100px) { .sc-carousel.grid-mode .sc-product-card { flex: 0 0 calc(25% - 14px); } }

.sc-product-img { aspect-ratio: 4/3; background: linear-gradient(135deg, #e8edf5, #d0d8e8); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sc-product-img-placeholder { font-size: 48px; opacity: .35; }
.sc-product-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 99px; }
.sc-badge-new      { background: rgba(13,155,82,.15); color: var(--green-h); }
.sc-badge-featured { background: rgba(212,175,55,.18); color: #8a6e00; }
.sc-badge-hot      { background: rgba(211,47,47,.12); color: var(--red-h); }

.sc-product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sc-product-cat  { font-size: 10.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); }
.sc-product-name { font-family: 'Manrope', sans-serif; font-size: 16px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.sc-product-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 4px; flex: 1; }
.sc-product-prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sc-price-item { text-align: center; }
.sc-price-label { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted2); margin-bottom: 3px; }
.sc-price-val { font-family: 'Manrope', sans-serif; font-size: 14px; font-weight: 800; color: var(--navy); }
.sc-price-val.sc-price-wholesale { color: var(--green-h); }
.sc-product-markets { display: flex; gap: 4px; flex-wrap: wrap; padding: 6px 0 2px; }
.sc-product-market { font-size: 16px; line-height: 1; }
.sc-product-footer { display: flex; gap: 8px; margin-top: 10px; padding-top: 12px; border-top: 1px solid var(--border); }
.sc-product-footer .sc-btn { flex: 1; justify-content: center; }

/* Carousel nav */
.sc-carousel-nav { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 24px; }
.sc-carousel-dots { display: flex; gap: 6px; }
.sc-carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-md); transition: all .2s; cursor: pointer; border: none; padding: 0; }
.sc-carousel-dot.active { background: var(--navy); width: 20px; border-radius: 3px; }
.sc-carousel-arrow { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border-md); color: var(--navy); display: grid; place-items: center; cursor: pointer; transition: all .15s; }
.sc-carousel-arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.sc-carousel-arrow svg { width: 16px; height: 16px; }
.sc-products-cta { text-align: center; margin-top: 36px; }
.sc-products-cta-note { margin-top: 12px; font-size: 13.5px; color: var(--muted); }
.sc-products-cta-note a { color: var(--navy); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   AFRICA AGENTS SECTION
═══════════════════════════════════════════════════════════ */
.sc-africa { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.sc-africa-text { max-width: 560px; }
.sc-africa-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.sc-africa-title { font-family: 'Manrope', sans-serif; font-size: clamp(24px, 4vw, 36px); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.02em; margin-bottom: 14px; }
.sc-africa-body { font-size: 15px; color: rgba(255,255,255,.62); line-height: 1.72; margin-bottom: 28px; }
.sc-africa-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.sc-africa-pill { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.75); font-size: 12px; font-weight: 600; padding: 6px 13px; border-radius: 99px; display: flex; align-items: center; gap: 6px; }
.sc-africa-map { width: 100%; max-width: 440px; flex-shrink: 0; }
.sc-africa-map svg { width: 100%; height: auto; }

.sc-hub-markets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 40px; }
.sc-hm { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 13px; padding: 18px 12px 14px; text-align: center; transition: all .18s; }
.sc-hm:hover { background: rgba(255,255,255,.09); transform: translateY(-2px); }
.sc-hm-flag { font-size: 28px; margin-bottom: 8px; }
.sc-hm-name { font-family: 'Manrope', sans-serif; font-size: 13px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.sc-hm-cur  { font-size: 10.5px; color: rgba(255,255,255,.4); font-weight: 500; }
.sc-hm-tag  { font-size: 9.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-top: 6px; }
.sc-hub-divider { border-top: 1px solid rgba(255,255,255,.08); padding-top: 40px; }
.sc-hub-label { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 18px; color: rgba(255,255,255,.75); margin-bottom: 20px; text-align: center; }

@media (min-width: 900px) {
  .sc-africa { flex-direction: row; align-items: flex-start; gap: 60px; }
  .sc-hub-markets { grid-template-columns: repeat(6, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   AGENT GATEWAY
═══════════════════════════════════════════════════════════ */
.sc-gateway {
  background: linear-gradient(130deg, #001228 0%, #0a2048 55%, #112858 100%);
  border-radius: 20px; padding: 40px 28px; position: relative; overflow: hidden;
}
.sc-gateway::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 400px at 100% 50%, rgba(212,175,55,.07) 0%, transparent 65%); pointer-events: none; }
.sc-gw-eye { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.sc-gw-eye::before { content: ''; width: 20px; height: 2px; background: var(--gold); border-radius: 2px; }
.sc-gw-title { font-family: 'Manrope', sans-serif; font-size: clamp(20px, 3vw, 32px); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 12px; letter-spacing: -.02em; }
.sc-gw-body { font-size: 14px; color: rgba(255,255,255,.62); line-height: 1.65; margin-bottom: 24px; }
.sc-gw-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.sc-gw-actions .sc-btn { justify-content: center; }
.sc-gw-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sc-gw-badge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 12px 14px; display: flex; align-items: center; gap: 10px; }
.sc-gw-badge-icon { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-size: 16px; flex-shrink: 0; }
.sc-gw-badge-title { font-size: 12.5px; font-weight: 600; color: #fff; }
.sc-gw-badge-sub { font-size: 11px; color: rgba(255,255,255,.4); }
@media (min-width: 900px) {
  .sc-gateway { padding: 56px 52px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
  .sc-gw-actions { flex-direction: row; }
  .sc-gw-actions .sc-btn { width: auto; }
  .sc-gw-badges { display: flex; flex-direction: column; gap: 9px; min-width: 230px; }
}

/* ═══════════════════════════════════════════════════════════
   FINANCIALS
═══════════════════════════════════════════════════════════ */
.sc-fin { display: flex; flex-direction: column; gap: 20px; }
.sc-fin-table { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); }
.sc-fin-thead { background: var(--navy); padding: 16px 20px; }
.sc-fin-thead-eye { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.sc-fin-thead-title { font-family: 'Manrope', sans-serif; font-size: 15px; font-weight: 800; color: #fff; }
.sc-fin-row { display: flex; justify-content: space-between; align-items: center; padding: 13px 20px; border-bottom: 1px solid var(--border); font-size: 13.5px; }
.sc-fin-row:last-child { border-bottom: none; }
.sc-fin-lbl { color: var(--muted); }
.sc-fin-val { font-weight: 700; color: var(--navy); }
.sc-fin-val.sc-pos { color: var(--green); }
.sc-fin-highlights { display: flex; flex-direction: column; gap: 14px; }
.sc-hl { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; display: flex; align-items: center; gap: 16px; box-shadow: var(--shadow); }
.sc-hl-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; }
.sc-hl-val { font-family: 'Manrope', sans-serif; font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 3px; }
.sc-hl-lbl { font-size: 12.5px; color: var(--muted); line-height: 1.45; }
@media (min-width: 900px) { .sc-fin { flex-direction: row; align-items: start; } .sc-fin-table { flex: 1; } .sc-fin-highlights { flex: 1.2; } }

/* ═══════════════════════════════════════════════════════════
   PARTNER CTA
═══════════════════════════════════════════════════════════ */
.sc-partner-block { background: linear-gradient(140deg, #001228 0%, #001f3f 100%); border-radius: 20px; padding: 52px 28px; text-align: center; position: relative; overflow: hidden; }
.sc-partner-block::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 500px at 50% 0%, rgba(212,175,55,.06) 0%, transparent 65%); }
.sc-partner-title { font-family: 'Manrope', sans-serif; font-size: clamp(26px, 4vw, 44px); font-weight: 900; color: #fff; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 14px; position: relative; }
.sc-partner-body { font-size: 15px; color: rgba(255,255,255,.58); max-width: 500px; margin: 0 auto 32px; line-height: 1.7; position: relative; }
.sc-partner-actions { display: flex; flex-direction: column; gap: 10px; justify-content: center; position: relative; }
.sc-partner-actions .sc-btn { justify-content: center; }
.sc-partner-wa { display: flex; justify-content: center; margin-top: 22px; position: relative; }
@media (min-width: 600px) { .sc-partner-actions { flex-direction: row; } .sc-partner-block { padding: 72px 48px; } }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.sc-footer { background: var(--deep); padding: 56px 20px 32px; border-top: 1px solid rgba(255,255,255,.05); }
.sc-footer-inner { max-width: var(--max); margin: 0 auto; }
.sc-footer-grid { display: flex; flex-direction: column; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px; }
.sc-footer-brand-name { font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 20px; color: #fff; margin-bottom: 10px; letter-spacing: -.4px; }
.sc-footer-brand-name span { color: var(--gold); }
.sc-footer-about { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.38); max-width: 280px; }
.sc-footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.sc-footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.sc-footer-links a { color: rgba(255,255,255,.48); font-size: 14px; text-decoration: none !important; transition: color .13s; }
.sc-footer-links a:hover { color: rgba(255,255,255,.85); }
.sc-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.sc-footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.sc-footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.sc-footer-badge { font-size: 10.5px; color: rgba(255,255,255,.28); padding: 4px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 6px; }
@media (min-width: 600px) { .sc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; } }
@media (min-width: 900px) { .sc-footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1fr; } .sc-footer { padding: 64px 32px 36px; } }

/* ═══════════════════════════════════════════════════════════
   MANUFACTURER PORTAL
═══════════════════════════════════════════════════════════ */
body.sc-manufacturer-page { background: var(--bg); }

/* Portal topbar */
.sc-mfr-topbar {
  position: sticky; top: 0; z-index: 100;
  height: 58px; background: var(--surface); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 20px; gap: 12px;
}
.sc-mfr-topbar-logo { display: flex; align-items: center; gap: 8px; text-decoration: none !important; }
.sc-mfr-topbar-mark { width: 28px; height: 28px; background: var(--red); border-radius: 7px; display: grid; place-items: center; }
.sc-mfr-topbar-mark svg { width: 13px; height: 13px; color: #fff; }
.sc-mfr-topbar-word { font-family: 'Manrope', sans-serif; font-weight: 900; font-size: 15px; color: var(--navy); }
.sc-mfr-topbar-word span { color: var(--gold); }
.sc-mfr-topbar-spacer { flex: 1; }
.sc-mfr-topbar-right { display: flex; align-items: center; gap: 8px; }
.sc-mfr-status-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 99px; background: rgba(13,155,82,.1); color: var(--green-h); }
.sc-mfr-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; font-family: 'Manrope', sans-serif; flex-shrink: 0; }

/* Portal mobile nav pills */
.sc-mfr-mobile-nav { display: flex; overflow-x: auto; gap: 6px; padding: 10px 20px; background: var(--surface); border-bottom: 1px solid var(--border); -webkit-overflow-scrolling: touch; }
.sc-mfr-mobile-nav::-webkit-scrollbar { display: none; }
.sc-mfr-pill { padding: 7px 14px; border-radius: 99px; font-size: 12.5px; font-weight: 600; white-space: nowrap; flex-shrink: 0; border: none; cursor: pointer; transition: all .15s; text-decoration: none !important; }
.sc-mfr-pill-active { background: var(--navy); color: #fff; }
.sc-mfr-pill-inactive { background: var(--bg); color: var(--muted); }

/* Portal layout */
.sc-mfr-layout { display: flex; min-height: calc(100vh - 58px); }

/* Sidebar — hidden mobile */
.sc-mfr-sidebar { display: none; }
@media (min-width: 900px) {
  .sc-mfr-sidebar {
    display: flex; flex-direction: column; width: 210px; flex-shrink: 0;
    background: var(--surface); border-right: 1px solid var(--border);
    padding: 14px 8px 24px; gap: 2px; position: sticky; top: 58px; height: calc(100vh - 58px); overflow-y: auto;
  }
  .sc-mfr-mobile-nav { display: none; }
}
.sc-mfr-sidebar-label { font-size: 10px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted2); padding: 12px 10px 4px; }
.sc-mfr-nav-item { display: flex; align-items: center; gap: 8px; padding: 9px 10px; border-radius: 9px; font-size: 13px; font-weight: 500; color: var(--muted); cursor: pointer; transition: all .13s; border: none; background: none; width: 100%; text-align: left; text-decoration: none !important; }
.sc-mfr-nav-item:hover { background: var(--bg); color: var(--navy); }
.sc-mfr-nav-item.active { background: rgba(0,31,63,.07); color: var(--navy); font-weight: 600; }
.sc-mfr-nav-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--border-md); flex-shrink: 0; }
.sc-mfr-nav-item.active .sc-mfr-nav-dot { background: var(--red); }

.sc-mfr-main { flex: 1; padding: 20px; min-width: 0; }
@media (min-width: 600px) { .sc-mfr-main { padding: 28px 32px; } }

/* Page header */
.sc-mfr-page-header { margin-bottom: 22px; }
.sc-mfr-page-eye { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted2); margin-bottom: 5px; }
.sc-mfr-page-title { font-family: 'Manrope', sans-serif; font-size: clamp(20px, 4vw, 26px); font-weight: 900; color: var(--navy); letter-spacing: -.02em; }
.sc-mfr-page-sub { font-size: 13.5px; color: var(--muted); margin-top: 3px; }

/* KPI grid */
.sc-mfr-kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 22px; }
@media (min-width: 900px) { .sc-mfr-kpi-grid { grid-template-columns: repeat(4, 1fr); } }
.sc-mfr-kpi { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow); transition: all .2s; }
.sc-mfr-kpi:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sc-mfr-kpi-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sc-mfr-kpi-icon { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; }
.sc-mfr-kpi-delta { font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 99px; }
.sc-mfr-kpi-delta-up { background: #dcfce7; color: #166534; }
.sc-mfr-kpi-delta-dn { background: #fee2e2; color: #991b1b; }
.sc-mfr-kpi-label { font-size: 11.5px; color: var(--muted); margin-bottom: 4px; font-weight: 500; }
.sc-mfr-kpi-value { font-family: 'Manrope', sans-serif; font-size: clamp(20px, 3vw, 26px); font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; letter-spacing: -.02em; }
.sc-mfr-kpi-meta { font-size: 11px; color: var(--muted2); }

/* Panel */
.sc-mfr-panel-grid { display: flex; flex-direction: column; gap: 18px; margin-bottom: 18px; }
@media (min-width: 900px) { .sc-mfr-panel-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 20px; } }
.sc-mfr-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px; box-shadow: var(--shadow); }
.sc-mfr-panel-stack { display: flex; flex-direction: column; gap: 16px; }
.sc-mfr-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.sc-mfr-panel-title { font-family: 'Manrope', sans-serif; font-size: 14.5px; font-weight: 800; color: var(--navy); }
.sc-mfr-panel-meta { font-size: 12px; color: var(--muted); }

/* Stock table */
.sc-mfr-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sc-mfr-stock-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 380px; }
.sc-mfr-stock-table th { text-align: left; padding: 8px 12px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted2); background: var(--bg); border-bottom: 1px solid var(--border); }
.sc-mfr-stock-table td { padding: 11px 12px; border-bottom: 1px solid #f0f4f9; vertical-align: middle; }
.sc-mfr-stock-table tr:last-child td { border-bottom: none; }
.sc-mfr-stock-table tbody tr:hover td { background: #f8fafc; }
.sc-mfr-market-flag { display: inline-flex; align-items: center; gap: 7px; }
.sc-mfr-market-flag span { font-size: 16px; }
.sc-mfr-stock-bar { height: 5px; border-radius: 3px; background: #e2e8f0; position: relative; overflow: hidden; width: 70px; }
.sc-mfr-stock-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 3px; }
.sc-mfr-status { display: inline-flex; padding: 3px 9px; border-radius: 99px; font-size: 10.5px; font-weight: 700; }
.sc-mfr-status-ok  { background: #dcfce7; color: #166534; }
.sc-mfr-status-low { background: #fef3c7; color: #92400e; }
.sc-mfr-status-out { background: #fee2e2; color: #991b1b; }

/* Mini chart */
.sc-mfr-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 56px; }
.sc-mfr-bar { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(to top, rgba(0,31,63,.15), rgba(0,31,63,.05)); transition: opacity .2s; }
.sc-mfr-bar.sc-hi { background: linear-gradient(to top, var(--navy), var(--navy2)); }
.sc-mfr-chart-footer { display: flex; justify-content: space-between; margin-top: 6px; font-size: 11px; color: var(--muted2); }

/* Agent list */
.sc-mfr-agent-list { display: flex; flex-direction: column; gap: 8px; }
.sc-mfr-agent-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: var(--bg); border-radius: 9px; }
.sc-mfr-agent-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; display: grid; place-items: center; font-family: 'Manrope', sans-serif; flex-shrink: 0; }
.sc-mfr-agent-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.sc-mfr-agent-meta { font-size: 11.5px; color: var(--muted); }
.sc-mfr-agent-units { margin-left: auto; font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 13.5px; color: var(--navy); text-align: right; }
.sc-mfr-agent-units small { font-size: 10px; font-weight: 500; color: var(--muted2); display: block; }

/* ═══════════════════════════════════════════════════════════
   SUI COMPONENT LIBRARY (scoppar-pay and other plugins)
═══════════════════════════════════════════════════════════ */
.sui-page { min-height: 100vh; background: var(--sui-bg); }
.sui-page-inner { max-width: 780px; margin: 0 auto; padding: 28px 20px 60px; }
.sui-page-inner-wide { max-width: 1060px; }
.sui-card { background: #fff; border-radius: var(--sui-r-lg); box-shadow: var(--sui-shadow); padding: 28px; margin-bottom: 16px; }
.sui-card-h { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 19px; color: var(--sui-navy); margin-bottom: 6px; }
.sui-card-sub { font-size: 13px; color: var(--sui-muted); line-height: 1.65; margin-bottom: 18px; }
.sui-flash { padding: 13px 16px; border-radius: 10px; font-size: 14px; font-weight: 500; margin-bottom: 18px; line-height: 1.5; }
.sui-flash-success { background: #F0FDF4; color: #065F46; border: 1px solid #A7F3D0; }
.sui-flash-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.sui-flash-info    { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.sui-flash-warn    { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.sui-field { margin-bottom: 14px; }
.sui-field-label, .sui-label { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: var(--sui-muted2); margin-bottom: 6px; }
.sui-input, .sui-select, .sui-textarea { width: 100%; height: 50px; border: 1.5px solid var(--sui-line); border-radius: var(--sui-r); padding: 0 14px; font-family: inherit; font-size: 14px; color: var(--sui-text); background: #FAFBFC; outline: none; transition: border-color .15s, box-shadow .15s; box-sizing: border-box; }
.sui-input:focus, .sui-select:focus, .sui-textarea:focus { border-color: var(--sui-navy); background: #fff; box-shadow: 0 0 0 3px rgba(0,31,63,.08); }
.sui-textarea { height: auto; min-height: 88px; padding: 12px 14px; resize: vertical; }
.sui-select { appearance: none; cursor: pointer; }
.sui-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 50px; padding: 0 22px; border: none; border-radius: var(--sui-r); font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 15px; cursor: pointer; transition: all .15s; text-decoration: none !important; white-space: nowrap; background: var(--sui-navy); color: #fff; }
.sui-btn:hover { background: var(--sui-navy2); transform: translateY(-1px); color: #fff; }
.sui-btn-full { width: 100%; }
.sui-btn-sm { height: 36px !important; padding: 0 14px !important; font-size: 12px !important; border-radius: 8px !important; }
.sui-btn-green { background: var(--sui-green); } .sui-btn-green:hover { background: #0a8245; }
.sui-btn-red   { background: var(--sui-red);   } .sui-btn-red:hover   { background: var(--sui-red-h); }
.sui-btn-ghost { background: #fff; color: var(--sui-navy); border: 1.5px solid var(--sui-line); } .sui-btn-ghost:hover { border-color: var(--sui-navy); background: var(--sui-bg); color: var(--sui-navy); }
.sui-btn-gold  { background: var(--sui-gold); color: var(--sui-navy); } .sui-btn-gold:hover { background: #C49B2E; color: var(--sui-navy); }
.sui-badge { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 99px; font-size: 11px; font-weight: 700; }
.sui-badge-none    { background: #F3F4F6; color: #6B7280; }
.sui-badge-pending { background: #FEF3C7; color: #92400E; }
.sui-badge-active  { background: #D1FAE5; color: #065F46; }
.sui-badge-rejected{ background: #FEE2E2; color: #991B1B; }
.sui-badge-info    { background: #DBEAFE; color: #1D4ED8; }

/* spay- classes (scoppar-pay plugin) */
.spay-commission-summary, .spay-payout-form { font-family: 'DM Sans', sans-serif; }

/* ═══════════════════════════════════════════════════════════
   WP ALIGNMENT & BLOCK EDITOR COMPATIBILITY
═══════════════════════════════════════════════════════════ */
.alignleft  { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; margin-bottom: 1em; }
.wp-block-image figcaption { font-size: 13px; color: var(--muted); text-align: center; margin-top: 6px; }

/* ═══════════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════════ */
@media print {
  .sc-nav, .sc-drawer, .sc-trust, .sc-footer, .sc-hamburger { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; }
}
