/* assets/css/main.css — BizForge Zambia */

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

:root {
  --gold:        #B8922A;
  --gold-lt:     #C9A84C;
  --gold-dk:     #8A6820;
  --gold-bg:     #FDF6E7;
  --gold-border: #E8D4A0;
  --navy:        #0D1B2A;
  --navy2:       #1A2F45;
  --navy3:       #2E4A63;
  --cream:       #FAF7F2;
  --white:       #FFFFFF;
  --text-primary:   #1A1A1A;
  --text-secondary: #5A6A78;
  --text-muted:     #8FA0AD;
  --border:      #E4E9EE;
  --border-lt:   #F0F3F6;
  --success-bg:  #EDFAF0; --success:  #1D7A3E;
  --warning-bg:  #FFF8E1; --warning:  #8A6200;
  --danger-bg:   #FEECEC; --danger:   #C0392B;
  --info-bg:     #EEF4FF; --info:     #1A5CCC;
  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 2px 12px rgba(0,0,0,.07);
  --shadow-md:   0 4px 24px rgba(0,0,0,.10);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--gold-dk); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }

.section-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.section-title { margin-bottom: 12px; }
.section-sub   { color: var(--text-secondary); max-width: 560px; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.btn-gold    { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-lt); color: var(--navy); }
.btn-navy    { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy2); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy3); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost   { background: transparent; border-color: transparent; color: var(--text-secondary); }
.btn-ghost:hover { color: var(--navy); background: var(--border-lt); }
.btn-danger  { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { opacity: .85; }
.btn-sm  { padding: 7px 16px; font-size: 13px; }
.btn-lg  { padding: 14px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ── Forms ──────────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,42,.12);
}
.form-control.is-invalid { border-color: var(--danger); }
textarea.form-control { min-height: 110px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6A78' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Alerts ─────────────────────────────────────────────────────────────────── */
.alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.alert-success { background: var(--success-bg); color: var(--success); border: 1px solid #B7E8C4; }
.alert-danger  { background: var(--danger-bg);  color: var(--danger);  border: 1px solid #F5BFBF; }
.alert-warning { background: var(--warning-bg); color: var(--warning); border: 1px solid #FFE082; }
.alert-info    { background: var(--info-bg);    color: var(--info);    border: 1px solid #B3CCFF; }

/* ── Badges ─────────────────────────────────────────────────────────────────── */
.badge { display: inline-flex; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 500; }
.badge-success { background: var(--success-bg); color: var(--success); }
.badge-warning { background: var(--warning-bg); color: var(--warning); }
.badge-danger  { background: var(--danger-bg);  color: var(--danger);  }
.badge-info    { background: var(--info-bg);     color: var(--info);    }
.badge-secondary { background: var(--border-lt); color: var(--text-secondary); }

/* ── Cards ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card-header {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border-lt);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-header h3 { font-size: 1rem; color: var(--navy); margin: 0; }
.card-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-lt);
}

/* ── Navbar ─────────────────────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,42,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--navy3);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand { display: flex; align-items: baseline; gap: 5px; }
.brand-bf { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold-lt); letter-spacing: .02em; }
.brand-zm { font-size: 11px; font-weight: 400; color: #6A8FA8; text-transform: uppercase; letter-spacing: .1em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a { color: #C0D4E4; font-size: 14px; padding: 6px 10px; border-radius: var(--radius-sm); transition: all .2s; }
.nav-links a:hover { color: var(--gold-lt); background: rgba(255,255,255,.04); }
.nav-sep { width: 1px; height: 20px; background: var(--navy3); margin: 0 6px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #C0D4E4; border-radius: 2px; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,42,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.hero-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--gold-lt); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--gold-lt); }
.hero-sub { color: #9FB3C8; font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { background: var(--navy2); border: 1px solid var(--navy3); border-radius: var(--radius-lg); padding: 24px; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-stat { background: rgba(255,255,255,.04); border: 1px solid var(--navy3); border-radius: var(--radius); padding: 18px; }
.hero-stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--gold-lt); }
.hero-stat-label { font-size: 12px; color: #6A8FA8; margin-top: 2px; }
.hero-trust { margin-top: 14px; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2); border-radius: var(--radius); padding: 12px 16px; font-size: 13px; color: var(--gold-lt); display: flex; align-items: center; gap: 8px; }

/* ── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .section-sub { margin: 0 auto; }

/* ── Service cards ──────────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold-border); transform: translateY(-2px); }
.svc-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.svc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.svc-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.svc-card p { font-size: 13px; color: var(--text-secondary); flex: 1; margin-bottom: 20px; }
.svc-footer { display: flex; align-items: center; justify-content: space-between; }
.svc-price { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); }
.svc-days { font-size: 12px; color: var(--text-muted); }

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: box-shadow .2s;
}
.plan-card.featured {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--white);
}
.plan-card.featured h3, .plan-card.featured .plan-price { color: var(--white); }
.plan-card.featured p, .plan-card.featured li { color: #9FB3C8; }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 500; padding: 3px 14px; border-radius: 20px; letter-spacing: .06em; }
.plan-name { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 6px; }
.plan-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--navy); }
.plan-period { font-size: 13px; color: var(--text-muted); font-family: var(--font-body); }
.plan-desc { font-size: 13px; color: var(--text-secondary); margin: 10px 0 24px; }
.plan-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 13px; display: flex; gap: 9px; align-items: flex-start; }
.plan-features li::before { content: '✓'; font-weight: 600; color: var(--gold); flex-shrink: 0; }
.plan-card.featured .plan-features li::before { color: var(--gold-lt); }

/* ── Table ──────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; padding: 10px 14px; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); font-weight: 500; border-bottom: 1.5px solid var(--border); }
td { padding: 12px 14px; border-bottom: 1px solid var(--border-lt); color: var(--text-primary); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--cream); }

/* ── Metric cards ───────────────────────────────────────────────────────────── */
.metrics-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 14px; margin-bottom: 24px; }
.metric-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; }
.metric-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 8px; }
.metric-val { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--navy); }
.metric-sub { font-size: 12px; color: var(--success); margin-top: 4px; }

/* ── Steps / how it works ───────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; counter-reset: step; }
.step { counter-increment: step; position: relative; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-border);
  display: block;
  margin-bottom: 10px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-secondary); }

/* ── FAQ ────────────────────────────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--navy); }
.faq-q svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding-bottom: 18px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── Page hero (inner pages) ────────────────────────────────────────────────── */
.page-hero { background: var(--navy); color: var(--white); padding: 60px 0 50px; }
.page-hero h1 { color: var(--white); font-size: 2.2rem; margin-bottom: 10px; }
.page-hero p { color: #9FB3C8; font-size: 15px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: #6A8FA8; margin-bottom: 16px; }
.breadcrumb a { color: #6A8FA8; }
.breadcrumb span { color: var(--gold-lt); }

/* ── Auth pages ─────────────────────────────────────────────────────────────── */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 40px 16px; background: var(--cream); }
.auth-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px 40px; width: 100%; max-width: 440px; box-shadow: var(--shadow-md); }
.auth-brand { text-align: center; margin-bottom: 32px; }
.auth-title { font-family: var(--font-display); font-size: 1.7rem; color: var(--navy); text-align: center; margin-bottom: 6px; }
.auth-sub { font-size: 13px; color: var(--text-secondary); text-align: center; margin-bottom: 28px; }
.auth-footer { text-align: center; font-size: 13px; color: var(--text-secondary); margin-top: 20px; }

/* ── Dashboard layout ───────────────────────────────────────────────────────── */
.body-dash { background: var(--cream); }
body.dash-menu-open { overflow: hidden; }
.dash-wrap {
  display: grid;
  grid-template-columns: 230px 1fr;
  grid-template-rows: 56px minmax(0, 1fr);
  height: 100vh;
  height: 100dvh; /* dynamic viewport height — accounts for mobile browser chrome */
}

.dash-topbar {
  grid-column: 1 / -1;
  position: sticky;
  top: 0;
  z-index: 130;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--navy3);
}
.dash-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: rgba(201, 168, 76, 0.15);
  border: 1.5px solid rgba(201, 168, 76, 0.5);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 11px;
  margin-right: 12px;
  min-width: 52px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s, border-color .2s;
}
.dash-menu-toggle:hover,
.dash-menu-toggle:active {
  background: rgba(201, 168, 76, 0.3);
  border-color: var(--gold-lt);
}
.dash-menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--gold-lt);
  border-radius: 2px;
}
.dash-menu-toggle::after {
  content: 'Menu';
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  color: var(--gold-lt);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 3px;
  line-height: 1;
}
.dash-topbar .brand-bf { font-size: 18px; }
.dash-topbar .brand-zm { font-size: 10px; }
.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dash-topbar-link {
  font-size: 12px;
  color: #6A8FA8;
  transition: color .2s;
}
.dash-topbar-link:hover { color: var(--gold-lt); }
.dash-avatar-sm {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--navy);
}

.dash-sidebar {
  background: var(--navy2);
  border-right: 1px solid var(--navy3);
  padding: 0;
  overflow-y: auto;
}
.dash-sidebar-backdrop {
  display: none;
}
.dash-user {
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--navy3);
  margin-bottom: 8px;
}
.dash-avatar-lg {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 500; color: var(--navy);
  margin-bottom: 10px;
}
.dash-user-name { font-size: 14px; font-weight: 500; color: var(--white); }
.dash-user-role { font-size: 11px; color: #6A8FA8; text-transform: uppercase; letter-spacing: .08em; }
.dash-section-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3A5268;
  padding: 14px 20px 6px;
}
.dash-nav { display: flex; flex-direction: column; }
.dash-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  color: #9FB3C8;
  border-left: 2.5px solid transparent;
  transition: all .15s;
  text-decoration: none;
}
.dash-nav a:hover { color: var(--gold-lt); background: rgba(201,168,76,.06); }
.dash-nav a.active { color: var(--gold-lt); background: rgba(201,168,76,.1); border-left-color: var(--gold-lt); }
.dash-nav svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; flex-shrink: 0; }

.dash-main {
  background: var(--cream);
  overflow-y: auto;
  padding: 28px 32px;
  min-height: 0;
}
.dash-main .page-hdr { margin-bottom: 24px; }
.dash-main .page-hdr h2 { font-size: 1.5rem; margin-bottom: 4px; }
.dash-main .page-hdr p { font-size: 13px; color: var(--text-secondary); }

/* dashboard 4-col metrics */
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.dash-metric {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}
.dash-metric .metric-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 6px; }
.dash-metric .metric-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--navy); }
.dash-metric .metric-sub { font-size: 11px; color: var(--success); margin-top: 3px; }

.dash-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }

/* ── Contact form ───────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 14px; margin-bottom: 2px; }
.contact-info-item p { font-size: 13px; color: var(--text-secondary); }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer { background: var(--navy); color: #9FB3C8; padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .brand-bf { color: var(--gold-lt); }
.footer-brand p { font-size: 13px; color: #6A8FA8; margin-top: 14px; max-width: 260px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: var(--white); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: #6A8FA8; transition: color .2s; }
.footer-col a:hover { color: var(--gold-lt); }
.footer-bottom { border-top: 1px solid var(--navy3); padding: 20px 0; display: flex; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.footer-bottom p { font-size: 12px; color: #3A5268; }

/* ── Empty state ────────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.empty-state svg { width: 48px; height: 48px; stroke: var(--border); fill: none; stroke-width: 1; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.1rem; color: var(--text-secondary); margin-bottom: 8px; }
.empty-state p { font-size: 13px; margin-bottom: 20px; }

/* ── Pagination ──────────────────────────────────────────────────────────────── */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 24px; }
.pagination a, .pagination span {
  padding: 6px 12px; border-radius: var(--radius-sm); font-size: 13px; border: 1px solid var(--border);
}
.pagination a { color: var(--text-secondary); }
.pagination a:hover { background: var(--border-lt); }
.pagination .active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Utilities ──────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.d-flex { display: flex; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .dash-wrap { grid-template-columns: 1fr; }
  .dash-menu-toggle { display: flex; }
  .dash-sidebar {
    display: block;
    position: fixed;
    top: 56px;
    left: 0;
    bottom: 0;
    width: min(82vw, 320px);
    max-width: 320px;
    z-index: 120;
    transform: translateX(-100%);
    transition: transform .25s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
  }
  .dash-wrap.sidebar-open .dash-sidebar {
    transform: translateX(0);
  }
  .dash-sidebar-backdrop {
    display: block;
    position: fixed;
    inset: 56px 0 0 0;
    background: rgba(6, 16, 27, .45);
    border: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 110;
  }
  .dash-wrap.sidebar-open .dash-sidebar-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .dash-grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .progress-tracker { flex-direction: column; }
  .progress-tracker .progress-step::after { display: none; }
  .dash-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: var(--navy); padding: 16px; gap: 4px; border-bottom: 1px solid var(--navy3); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-sep { display: none; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .auth-card { padding: 28px 20px; }
  .dash-metrics { grid-template-columns: 1fr; }
  .dash-topbar { padding: 0 14px; }
  .dash-topbar-right { gap: 10px; }
  .dash-topbar-link { font-size: 11px; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   Phase 2 additions — Payments, Documents, Progress, Notifications
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── Progress tracker ───────────────────────────────────────────────────────── */
.progress-tracker {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 28px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.progress-step::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 55%;
  right: -45%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.progress-step:last-child::after { display: none; }
.progress-step.done::after { background: var(--success); }
.progress-step.active::after { background: linear-gradient(90deg, var(--gold) 50%, var(--border) 50%); }
.progress-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--text-muted);
  transition: all .2s;
}
.progress-step.done .progress-dot { background: var(--success); border-color: var(--success); color: var(--white); }
.progress-step.active .progress-dot { background: var(--gold); border-color: var(--gold); color: var(--navy); font-weight: 600; }
.progress-step.cancelled .progress-dot { background: var(--danger); border-color: var(--danger); color: var(--white); }
.progress-label { font-size: 11px; color: var(--text-muted); line-height: 1.3; }
.progress-step.done .progress-label { color: var(--success); font-weight: 500; }
.progress-step.active .progress-label { color: var(--gold-dk); font-weight: 500; }

/* ── File upload zone ───────────────────────────────────────────────────────── */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
}
.upload-zone:hover, .upload-zone.dragover { border-color: var(--gold); background: var(--gold-bg); }
.upload-zone svg { width: 36px; height: 36px; stroke: var(--text-muted); fill: none; stroke-width: 1.2; margin-bottom: 10px; }
.upload-zone p { font-size: 13px; color: var(--text-secondary); }
.upload-zone .upload-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.upload-zone input[type="file"] { display: none; }

.file-list { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
}
.file-item .file-icon { width: 32px; height: 32px; background: var(--gold-bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.file-item .file-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.file-item .file-info { flex: 1; min-width: 0; }
.file-item .file-name { font-weight: 500; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-item .file-meta { font-size: 11px; color: var(--text-muted); }
.file-item .file-actions { display: flex; gap: 6px; }

/* ── Invoice / receipt ──────────────────────────────────────────────────────── */
.invoice-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 700px;
}
.invoice-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 2px solid var(--navy); }
.invoice-header h2 { font-size: 1.5rem; color: var(--navy); }
.invoice-header .invoice-meta { text-align: right; font-size: 13px; color: var(--text-secondary); }
.invoice-parties { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.invoice-party h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 8px; }
.invoice-party p { font-size: 13px; color: var(--text-primary); line-height: 1.6; }
.invoice-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.invoice-table th { background: var(--cream); padding: 10px 14px; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); border-bottom: 1px solid var(--border); text-align: left; }
.invoice-table td { padding: 12px 14px; border-bottom: 1px solid var(--border-lt); font-size: 13px; }
.invoice-table .text-right { text-align: right; }
.invoice-totals { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; margin-bottom: 24px; }
.invoice-totals .total-row { display: flex; gap: 24px; font-size: 13px; }
.invoice-totals .total-row span:first-child { color: var(--text-secondary); min-width: 100px; text-align: right; }
.invoice-totals .total-row.grand { font-size: 16px; font-weight: 600; color: var(--navy); border-top: 2px solid var(--navy); padding-top: 8px; margin-top: 4px; }
.invoice-footer { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-lt); padding-top: 16px; }

/* ── Payment method cards ───────────────────────────────────────────────────── */
.payment-methods { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 20px; }
.payment-method {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  background: var(--white);
}
.payment-method:hover { border-color: var(--gold-border); }
.payment-method.selected { border-color: var(--gold); background: var(--gold-bg); }
.payment-method input { display: none; }
.payment-method .pm-icon { font-size: 24px; margin-bottom: 6px; }
.payment-method .pm-label { font-size: 13px; font-weight: 500; color: var(--navy); }
.payment-method .pm-desc { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Notification items ─────────────────────────────────────────────────────── */
.notif-list { display: flex; flex-direction: column; }
.notif-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-lt);
  transition: background .15s;
}
.notif-item:last-child { border-bottom: none; }
.notif-item.unread { background: var(--gold-bg); margin: 0 -24px; padding: 14px 24px; border-radius: var(--radius); }
.notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.notif-item:not(.unread) .notif-dot { background: transparent; }
.notif-content { flex: 1; }
.notif-title { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.notif-msg { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.notif-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

/* ── Dashboard 3-col grid ───────────────────────────────────────────────────── */
.dash-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-bottom: 18px; }

/* ── Status timeline ────────────────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 24px; }
.timeline::before { content:''; position:absolute; left:7px; top:0; bottom:0; width:2px; background:var(--border); }
.timeline-item { position: relative; padding-bottom: 20px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content:''; position:absolute; left:-20px; top:4px; width:10px; height:10px; border-radius:50%; background:var(--gold); border:2px solid var(--white); z-index:1; }
.timeline-item .tl-date { font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.timeline-item .tl-text { font-size: 13px; color: var(--text-primary); }
.timeline-item .tl-note { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ── Notification badge in nav ──────────────────────────────────────────────── */
.nav-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 10px; background: var(--danger); color: var(--white); font-size: 10px; font-weight: 600; margin-left: 6px; }

/* ── Report cards ───────────────────────────────────────────────────────────── */
.report-stat { text-align: center; padding: 20px; }
.report-stat .metric-val { font-size: 2.2rem; }
.report-stat .metric-sub { font-size: 12px; color: var(--text-secondary); }

/* ── Tab-style radio for payment ────────────────────────────────────────────── */
.tab-pills { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tab-pill { padding: 7px 16px; border-radius: 20px; font-size: 13px; border: 1px solid var(--border); color: var(--text-secondary); cursor: pointer; transition: all .2s; background: var(--white); text-decoration: none; }
.tab-pill:hover { border-color: var(--gold-border); color: var(--navy); }
.tab-pill.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── Print-friendly invoice ─────────────────────────────────────────────────── */
@media print {
  body { background: #fff; }
  .dash-wrap { display: block; }
  .dash-topbar, .dash-sidebar, .btn, .no-print { display: none !important; }
  .dash-main { padding: 0; }
  .invoice-box { border: none; box-shadow: none; max-width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PHASE 3: Products, Courses, Blog, Bookings, Subscriptions
   ═══════════════════════════════════════════════════════════════════════════════ */

/* ── Product / Course card grid ─────────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-lt); transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.product-card .pc-img {
  height: 180px; background: linear-gradient(135deg, var(--navy) 0%, var(--navy3) 100%);
  display: flex; align-items: center; justify-content: center; color: var(--gold-lt);
  font-size: 48px; position: relative;
}
.product-card .pc-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card .pc-badge { position: absolute; top: 12px; right: 12px; }
.product-card .pc-body { padding: 18px; }
.product-card .pc-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 500; margin-bottom: 6px; }
.product-card .pc-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.product-card .pc-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.product-card .pc-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card .pc-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); }
.product-card .pc-price.free { color: var(--success); }
.product-card .pc-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; margin-bottom: 10px; }
.product-card .pc-meta span { display: inline-flex; align-items: center; gap: 4px; }

/* ── Course lesson sidebar ──────────────────────────────────────────────────── */
.course-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; }
.lesson-sidebar { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-lt); overflow: hidden; }
.lesson-sidebar .ls-header { padding: 16px; background: var(--navy); color: var(--white); }
.lesson-sidebar .ls-header h3 { color: var(--white); font-size: 1rem; }
.lesson-sidebar .ls-list { list-style: none; }
.lesson-sidebar .ls-item { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border-lt); font-size: 13px; color: var(--text-secondary); transition: background .2s; text-decoration: none; }
.lesson-sidebar .ls-item:hover { background: var(--cream); color: var(--navy); }
.lesson-sidebar .ls-item.active { background: var(--gold-bg); color: var(--gold-dk); font-weight: 500; border-left: 3px solid var(--gold); }
.lesson-sidebar .ls-item.completed { color: var(--success); }
.lesson-sidebar .ls-num { width: 24px; height: 24px; border-radius: 50%; background: var(--border-lt); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.lesson-sidebar .ls-item.active .ls-num { background: var(--gold); color: var(--white); }
.lesson-sidebar .ls-item.completed .ls-num { background: var(--success); color: var(--white); }
.lesson-content { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-lt); padding: 32px; }
.lesson-content h3 { margin-bottom: 16px; }
.lesson-content p { margin-bottom: 14px; line-height: 1.8; color: var(--text-secondary); }
.lesson-content ul, .lesson-content ol { margin-bottom: 14px; padding-left: 24px; }
.lesson-content li { margin-bottom: 6px; color: var(--text-secondary); line-height: 1.7; }
.lesson-nav { display: flex; justify-content: space-between; margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--border-lt); }

/* ── Blog cards ─────────────────────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-bottom: 24px; }
.blog-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-lt); transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.blog-card .bc-img {
  height: 200px; background: linear-gradient(135deg, var(--navy2) 0%, var(--navy3) 100%);
  display: flex; align-items: center; justify-content: center; color: var(--gold-lt); font-size: 36px;
}
.blog-card .bc-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .bc-body { padding: 20px; }
.blog-card .bc-cat { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 500; margin-bottom: 8px; }
.blog-card .bc-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.blog-card .bc-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.blog-card .bc-meta { font-size: 12px; color: var(--text-muted); display: flex; gap: 12px; }

/* ── Blog detail ────────────────────────────────────────────────────────────── */
.blog-detail { max-width: 800px; margin: 0 auto; }
.blog-detail .bd-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 12px; }
.blog-detail .bd-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; display: flex; gap: 16px; flex-wrap: wrap; }
.blog-detail .bd-content { font-size: 15px; line-height: 1.9; color: var(--text-secondary); }
.blog-detail .bd-content h3 { color: var(--navy); margin: 24px 0 12px; }
.blog-detail .bd-content p { margin-bottom: 16px; }
.blog-detail .bd-content ul, .blog-detail .bd-content ol { margin-bottom: 16px; padding-left: 24px; }
.blog-detail .bd-content li { margin-bottom: 6px; }

/* ── Booking time slots ─────────────────────────────────────────────────────── */
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; margin-bottom: 16px; }
.slot-card {
  padding: 12px; border: 1.5px solid var(--border); border-radius: var(--radius); text-align: center;
  cursor: pointer; transition: all .2s; background: var(--white);
}
.slot-card:hover { border-color: var(--gold-border); }
.slot-card.selected { border-color: var(--gold); background: var(--gold-bg); }
.slot-card.unavailable { opacity: .4; cursor: not-allowed; pointer-events: none; }
.slot-card input { display: none; }
.slot-card .sc-time { font-weight: 500; font-size: 14px; color: var(--navy); }
.slot-card .sc-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* ── Subscription plan cards ────────────────────────────────────────────────── */
.plan-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.plan-card {
  background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border-lt);
  padding: 32px 24px; text-align: center; transition: all .2s; position: relative;
}
.plan-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.plan-card.featured { border-color: var(--gold); }
.plan-card.featured::before { content: 'Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 600; padding: 3px 14px; border-radius: 10px; text-transform: uppercase; letter-spacing: .05em; }
.plan-card .plan-name { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.plan-card .plan-price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--gold-dk); margin-bottom: 4px; }
.plan-card .plan-cycle { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.plan-card .plan-features { list-style: none; text-align: left; margin-bottom: 24px; }
.plan-card .plan-features li { font-size: 13px; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border-lt); display: flex; align-items: center; gap: 8px; }
.plan-card .plan-features li::before { content: '✓'; color: var(--success); font-weight: 600; font-size: 14px; }

/* ── Progress bar ───────────────────────────────────────────────────────────── */
.progress-bar-wrap { background: var(--border-lt); border-radius: 6px; height: 10px; overflow: hidden; margin-bottom: 6px; }
.progress-bar-fill { height: 100%; background: var(--gold); border-radius: 6px; transition: width .5s; min-width: 2px; }
.progress-text { font-size: 12px; color: var(--text-muted); }

/* ── Responsive additions for Phase 3 ──────────────────────────────────────── */
@media (max-width: 768px) {
  .product-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .course-layout { grid-template-columns: 1fr; }
  .lesson-sidebar { order: 2; }
  .plan-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Checkout ──────────────────────────────────────────────────────────────── */
.checkout-section { padding: 60px 0; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.checkout-summary, .checkout-form { padding: 24px; }

/* Payment method selector */
.payment-methods { display: flex; flex-direction: column; gap: 10px; }
.payment-method-card {
  display: block;
  border: 2px solid var(--border-lt);
  border-radius: var(--radius);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.payment-method-card:hover { border-color: var(--gold); }
.payment-method-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 146, 42, .15);
  background: rgba(184, 146, 42, .03);
}
.payment-method-card input[type=radio] { display: none; }
.pm-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pm-icon { font-size: 1.5rem; flex-shrink: 0; }
.pm-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.pm-desc { font-size: 12px; color: var(--text-muted); }

/* Checkout spinner */
.checkout-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border-lt);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: cspin .8s linear infinite;
  margin: 0 auto;
}
@keyframes cspin { to { transform: rotate(360deg); } }

/* Payment transactions table in admin */
.txn-amount { font-weight: 600; font-family: var(--font-display); }

@media (max-width: 768px) {
  .checkout-grid { grid-template-columns: 1fr; }
}
