@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --cream: #FAF3E2;
  --cream-deep: #F1E7CE;
  --forest: #2B3420;
  --forest-deep: #1B2214;
  --amber: #D69A25;
  --amber-deep: #B5811C;
  --clay: #A8562E;
  --ink: #241F16;
  --ink-soft: #5B5445;
  --sage: #E7E6CF;
  --white: #FFFDF8;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 12px 32px -16px rgba(43, 52, 32, 0.35);
  --shadow-lift: 0 20px 48px -20px rgba(43, 52, 32, 0.45);
}

.staging-banner {
  background: #7a2e0b;
  color: #fff;
  padding: 9px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

[hidden] { display: none !important; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--forest-deep);
}

.mono { font-family: 'Space Mono', monospace; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 243, 226, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 52, 32, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--forest-deep);
}
.logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--amber), var(--clay));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}
.logo-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s;
}
nav.main-nav a:hover { color: var(--clay); }
.header-actions {
  display: flex; align-items: center; gap: 16px;
}
.cart-btn {
  position: relative;
  background: var(--forest);
  color: var(--white);
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.15s, background 0.2s;
}
.cart-btn:hover { background: var(--forest-deep); transform: translateY(-1px); }
.cart-count {
  background: var(--amber);
  color: var(--forest-deep);
  border-radius: 999px;
  min-width: 20px; height: 20px;
  font-size: 0.72rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  padding: 0 5px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 40px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  background: rgba(168, 86, 46, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.06;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--clay);
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  border: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline {
  background: transparent;
  color: var(--forest-deep);
  border: 1.5px solid rgba(43, 52, 32, 0.3);
}
.btn-outline:hover { border-color: var(--forest); background: rgba(43,52,32,0.04); }
.btn-block { width: 100%; justify-content: center; }

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-stat {
  border-left: 2px solid var(--amber);
  padding-left: 12px;
}
.hero-stat b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.02rem;
  color: var(--forest-deep);
}
.hero-stat span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4/5;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(250, 243, 226, 0.94);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  max-width: 240px;
  box-shadow: var(--shadow-soft);
}
.hero-badge b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--forest-deep);
}
.hero-badge span { font-size: 0.8rem; color: var(--ink-soft); }

/* honey drip divider - signature element */
.drip-divider {
  height: 46px;
  width: 100%;
  display: block;
  margin-top: -1px;
}

/* ---------- Section shells ---------- */
section { padding: 70px 0; }
.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  display: block;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 1rem; }

/* ---------- Benefit strip ---------- */
.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -10px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-soft);
}
.benefit-card .tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  color: var(--amber-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.benefit-card h3 { font-size: 1.12rem; margin: 8px 0 8px; }
.benefit-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.product-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sage);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-body h3 { font-size: 1.18rem; line-height: 1.25; }
.product-body p.desc { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-pills span {
  background: var(--sage);
  color: var(--forest-deep);
  font-size: 0.74rem;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 500;
}
.size-select {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.size-pill {
  border: 1.5px solid rgba(43,52,32,0.2);
  background: transparent;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.15s;
}
.size-pill.active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}
.price-row .price {
  font-family: 'Space Mono', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest-deep);
}
.price-row .mrp {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-decoration: line-through;
}
.price-row .save {
  font-size: 0.74rem;
  color: var(--clay);
  font-weight: 600;
  margin-left: auto;
}
.add-cart-btn {
  background: var(--amber);
  color: var(--forest-deep);
  border: none;
  padding: 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}
.add-cart-btn:hover { background: var(--amber-deep); transform: translateY(-1px); }

/* ---------- Wax seal / promise steps ---------- */
.promise-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.promise-step {
  text-align: center;
  padding: 8px;
}
.seal {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--amber), var(--clay) 78%);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-soft);
}
.promise-step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.promise-step p { color: var(--ink-soft); font-size: 0.86rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--forest);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  color: var(--white);
  margin: 0 28px;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,253,248,0.75); margin-bottom: 26px; }

/* ---------- Footer ---------- */
footer {
  padding: 40px 28px 30px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
}
footer a { color: var(--clay); font-weight: 600; }
footer .foot-brand {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--forest-deep);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(27, 34, 20, 0.45);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100%);
  background: var(--cream);
  z-index: 91;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(43,52,32,0.1);
}
.cart-header h3 { font-size: 1.2rem; }
.close-btn {
  background: none; border: none; font-size: 1.4rem; color: var(--ink); line-height: 1;
}
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-item {
  display: flex; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(43,52,32,0.08);
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.92rem; margin: 0 0 4px; font-family: 'Work Sans'; font-weight: 600; }
.cart-item-info span { font-size: 0.8rem; color: var(--ink-soft); }
.qty-row {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
}
.qty-btn {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(43,52,32,0.25);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.remove-link { font-size: 0.78rem; color: var(--clay); font-weight: 600; margin-left: auto; }
.cart-item-price { font-family: 'Space Mono', monospace; font-weight: 700; font-size: 0.92rem; white-space: nowrap; }

.cart-summary {
  padding: 20px 24px 26px;
  border-top: 1px solid rgba(43,52,32,0.1);
}
.summary-row {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; margin-bottom: 8px; color: var(--ink-soft);
}
.summary-row.total {
  font-size: 1.1rem; font-weight: 700; color: var(--forest-deep);
  margin-top: 10px; padding-top: 10px;
  border-top: 1px dashed rgba(43,52,32,0.2);
}
.empty-cart { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

/* ---------- Checkout modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(27,34,20,0.5);
  z-index: 100; display: none; align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 520px; width: 100%; padding: 32px;
  box-shadow: var(--shadow-lift);
}
.modal-box h3 { font-size: 1.4rem; margin-bottom: 6px; }
.modal-box .modal-sub { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; color: var(--forest-deep);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px;
  border: 1.5px solid rgba(43,52,32,0.18); font-family: inherit; font-size: 0.92rem;
  background: var(--cream);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
}
.payment-options { display: flex; gap: 12px; margin: 18px 0; }
.pay-option {
  flex: 1; border: 1.5px solid rgba(43,52,32,0.18); border-radius: 12px;
  padding: 14px; text-align: center; font-weight: 600; font-size: 0.88rem;
  cursor: pointer; transition: all 0.15s;
}
.pay-option.active { border-color: var(--forest); background: var(--sage); }
.form-error { color: var(--clay); font-size: 0.85rem; margin-top: 10px; display: none; }
.form-error.show { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--forest); color: var(--white); padding: 14px 22px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 600; box-shadow: var(--shadow-lift);
  z-index: 200; opacity: 0; pointer-events: none; transition: all 0.3s;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Order success ---------- */
.success-box { text-align: center; padding: 20px 0; }
.success-icon {
  width: 70px; height: 70px; border-radius: 50%; background: var(--amber);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
  font-size: 2rem; color: var(--forest-deep);
}
.order-code-box {
  background: var(--cream); border: 1.5px dashed var(--amber-deep);
  border-radius: 12px; padding: 14px; font-family: 'Space Mono', monospace;
  font-weight: 700; font-size: 1.1rem; color: var(--forest-deep); margin: 16px 0;
}

/* ---------- Track page ---------- */
.track-shell { max-width: 560px; margin: 60px auto; padding: 0 24px; }
.track-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-soft); }
.status-track { display: flex; justify-content: space-between; margin: 30px 0; position: relative; }
.status-track::before {
  content: ''; position: absolute; top: 15px; left: 5%; right: 5%; height: 2px; background: rgba(43,52,32,0.15);
}
.status-step { text-align: center; flex: 1; position: relative; z-index: 1; }
.status-dot {
  width: 32px; height: 32px; border-radius: 50%; background: var(--white);
  border: 2px solid rgba(43,52,32,0.2); margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem;
}
.status-step.done .status-dot { background: var(--forest); border-color: var(--forest); color: var(--white); }
.status-step span { font-size: 0.74rem; color: var(--ink-soft); }
.status-step.done span { color: var(--forest-deep); font-weight: 600; }

/* ---------- Admin ---------- */
.admin-shell { min-height: 100vh; background: var(--cream); }
.admin-topbar {
  background: var(--forest); color: var(--white); padding: 18px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-topbar .logo { color: var(--white); }
.logout-btn {
  background: rgba(255,255,255,0.12); color: var(--white); border: none;
  padding: 9px 16px; border-radius: 999px; font-size: 0.84rem; font-weight: 600;
}
.admin-main { max-width: 1180px; margin: 0 auto; padding: 32px 28px 60px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 32px; }
.stat-card { background: var(--white); border-radius: var(--radius-md); padding: 20px 22px; box-shadow: var(--shadow-soft); }
.stat-card .stat-label { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }
.stat-card .stat-value { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--forest-deep); margin-top: 6px; }

.filter-row { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.filter-chip {
  border: 1.5px solid rgba(43,52,32,0.2); background: var(--white);
  padding: 8px 16px; border-radius: 999px; font-size: 0.84rem; font-weight: 600;
}
.filter-chip.active { background: var(--forest); color: var(--white); border-color: var(--forest); }

.orders-table { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 18px; font-size: 0.88rem; border-bottom: 1px solid rgba(43,52,32,0.08); }
th { background: var(--sage); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--forest-deep); }
tr:last-child td { border-bottom: none; }
.status-badge {
  display: inline-block; padding: 5px 12px; border-radius: 999px; font-size: 0.76rem; font-weight: 700;
  text-transform: capitalize;
}
.status-badge.placed { background: #F1E2C0; color: #8A6210; }
.status-badge.confirmed { background: #DCE7F5; color: #2A5A9E; }
.status-badge.shipped { background: #E4D9F5; color: #6633A6; }
.status-badge.delivered { background: #DCF0DC; color: #2C7A2C; }
.status-badge.cancelled { background: #F5D9D9; color: #A62C2C; }
.status-select { padding: 6px 10px; border-radius: 8px; border: 1px solid rgba(43,52,32,0.2); font-size: 0.82rem; }

.login-shell {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px;
  background: var(--forest);
}
.login-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 400px;
  box-shadow: var(--shadow-lift);
}
.login-card h2 { text-align: center; margin-bottom: 6px; }
.login-card .modal-sub { text-align: center; margin-bottom: 26px; color: var(--ink-soft); font-size: 0.9rem;}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; aspect-ratio: 16/10; }
  .benefit-strip, .products-grid { grid-template-columns: 1fr; }
  .promise-steps { grid-template-columns: repeat(2, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .orders-table { overflow-x: auto; }
  nav.main-nav { display: none; }
}

/* Order lookup and policy pages */
.lookup-summary { background: var(--cream); border-radius: 14px; padding: 18px; margin-bottom: 16px; }
.lookup-line { display: flex; justify-content: space-between; gap: 16px; font-size: 0.88rem; padding: 5px 0; }
.lookup-summary .total { border-top: 1px dashed rgba(43,52,32,0.2); margin-top: 12px; padding-top: 12px; }
.lookup-meta { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.7; }
.lookup-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.policy-shell { width: min(820px, calc(100% - 32px)); margin: 56px auto 90px; background: #fff; border-radius: 20px; padding: clamp(24px, 5vw, 56px); box-shadow: var(--shadow); }
.policy-shell h1 { margin-bottom: 8px; }
.policy-shell h2 { margin: 30px 0 8px; color: var(--forest-deep); }
.policy-shell p { color: var(--ink-soft); line-height: 1.75; }
.draft-notice { border: 1px solid #c17a2e; background: #fff6e8; color: #74420f; border-radius: 10px; padding: 12px 14px; margin-bottom: 28px; font-weight: 700; }
.muted { color: var(--ink-soft); font-size: 0.8rem; }
.empty-table { text-align: center; color: var(--ink-soft); padding: 40px; }
.remove-link { border: 0; background: transparent; color: var(--clay); cursor: pointer; text-decoration: underline; }
.status-badge.pending { background: #F1E2C0; color: #8A6210; }
.status-badge.paid { background: #DCF0DC; color: #2C7A2C; }
.status-badge.failed, .status-badge.refunded { background: #F5D9D9; color: #A62C2C; }
