@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --c-void: 8, 11, 22;
  --c-bg: 246, 248, 252;
  --c-surface: 255, 255, 255;
  --c-surface2: 235, 240, 249;
  --c-ink: 13, 18, 32;
  --c-muted: 90, 99, 122;
  --c-border: 216, 224, 240;
  --c-accent: 36, 174, 243;
  --c-accent-dark: 29, 78, 216;
  color-scheme: light;
}
html.dark {
  --c-bg: 8, 11, 20;
  --c-surface: 14, 18, 32;
  --c-surface2: 19, 24, 42;
  --c-ink: 236, 241, 252;
  --c-muted: 148, 158, 184;
  --c-border: 32, 40, 66;
  color-scheme: dark;
}

* { box-sizing: border-box; border-color: rgb(var(--c-border)); }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  margin: 0; overflow-x: hidden; width: 100%; max-width: 100vw;
  background-color: rgb(var(--c-bg)); color: rgb(var(--c-ink));
  font-family: var(--font-body); -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.container-main { max-width: 1180px; margin: 0 auto; padding: 0 24px; width: 100%; }
@media (max-width: 640px) { .container-main { padding: 0 18px; } }

/* ---------- Typography ---------- */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: rgb(var(--c-accent));
}
.section-label::before { content: ''; width: 16px; height: 1px; background: rgb(var(--c-accent)); }
.heading-xl { font-family: var(--font-display); font-size: clamp(2.1rem, 6vw, 4.2rem); font-weight: 600; line-height: 1.06; letter-spacing: -0.02em; margin: 0; }
.heading-lg { font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
.heading-md { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.25; margin: 0; }
.italic-accent { font-style: italic; color: rgb(var(--c-accent)); }
.muted { color: rgb(var(--c-muted)); }

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgb(var(--c-accent)); color: #fff; border: none; cursor: pointer;
  padding: 14px 28px; font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  letter-spacing: .02em; border-radius: 999px; transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 34px -6px rgba(36,174,243,.55); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; cursor: pointer;
  border: 1px solid rgb(var(--c-border)); color: rgb(var(--c-ink));
  padding: 14px 28px; font-weight: 600; font-size: .9rem; border-radius: 999px; transition: all .2s ease;
  white-space: nowrap;
}
.btn-outline:hover { border-color: rgb(var(--c-accent)); color: rgb(var(--c-accent)); transform: translateY(-2px); }

/* ---------- Cards ---------- */
.card { background: rgb(var(--c-surface)); border: 1px solid rgb(var(--c-border)); border-radius: 20px; padding: 28px; transition: all .25s ease; }
.card:hover { border-color: rgba(36,174,243,.4); transform: translateY(-3px); }

/* =========================================================
   HEADER / NAV — fully rebuilt
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 200; backdrop-filter: blur(10px);
  background: rgba(var(--c-bg), .85); border-bottom: 1px solid rgb(var(--c-border));
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: 1180px; margin: 0 auto; position: relative; }
.nav-logo { display: flex; align-items: center; height: 34px; }
.nav-logo img { height: 100%; width: auto; display: block; }
.logo-light { display: block; }
.logo-dark { display: none; }
html.dark .logo-light { display: none; }
html.dark .logo-dark { display: block; }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-size: .9rem; font-weight: 500; color: rgb(var(--c-muted)); transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: rgb(var(--c-accent)); }
.nav-links a.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: rgb(var(--c-accent)); }

.theme-toggle-btn { background: none; border: 1px solid rgb(var(--c-border)); border-radius: 999px; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; color: rgb(var(--c-ink)); transition: border-color .2s, color .2s; flex-shrink: 0; }
.theme-toggle-btn:hover { border-color: rgb(var(--c-accent)); color: rgb(var(--c-accent)); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: 1px solid rgb(var(--c-border)); border-radius: 10px; cursor: pointer; width: 40px; height: 40px; flex-shrink: 0; }
.nav-toggle-bar { display: block; width: 18px; height: 2px; border-radius: 2px; background: rgb(var(--c-ink)); transition: transform .28s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] .bar1 { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar2 { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar3 { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0; z-index: 190;
    background: rgb(var(--c-bg));
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links a { font-size: 1.3rem; font-family: var(--font-display); font-weight: 600; }
  .nav-toggle { display: flex; }
}

/* =========================================================
   PAGE HERO / SECTIONS
   ========================================================= */
.page-hero { padding: 120px 0 60px; background: rgb(var(--c-surface2)); border-bottom: 1px solid rgb(var(--c-border)); overflow: hidden; position: relative; }
@media (max-width: 640px) { .page-hero { padding: 96px 0 44px; } }

.hero-glow { isolation: isolate; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; opacity: .3; animation: blobFloat 14s ease-in-out infinite; }
.hero-blob-1 { width: 380px; height: 380px; background: rgb(var(--c-accent)); top: -140px; right: -80px; }
.hero-blob-2 { width: 300px; height: 300px; background: rgb(var(--c-accent-dark)); bottom: -160px; left: -80px; animation-delay: -7s; }
@keyframes blobFloat { 0%, 100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-16px, 20px) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .hero-blob { animation: none; } }
@media (max-width: 640px) { .hero-blob { display: none; } }

.section { padding: 72px 0; }
@media (max-width: 640px) { .section { padding: 52px 0; } }
.section-alt { background: rgb(var(--c-surface2)); border-top: 1px solid rgb(var(--c-border)); border-bottom: 1px solid rgb(var(--c-border)); }
.section-dark { background: rgb(var(--c-void)); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: rgb(var(--c-surface2)); border-top: 1px solid rgb(var(--c-border)); padding: 56px 0 28px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgb(var(--c-accent)); margin-bottom: 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { font-size: .88rem; color: rgb(var(--c-muted)); }
.footer-grid a:hover { color: rgb(var(--c-ink)); }
.footer-logo img { height: 28px; width: auto; margin-bottom: 14px; }
.footer-bottom { max-width: 1180px; margin: 36px auto 0; padding: 20px 24px 0; border-top: 1px solid rgb(var(--c-border)); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: rgb(var(--c-muted)); }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 18px; } }
@media (min-width: 781px) { .footer-grid { padding: 0 24px; } }

/* ---------- Forms ---------- */
.form-label { display: block; font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: rgba(var(--c-ink),.8); margin-bottom: 8px; }
.form-input, .form-textarea, .form-select {
  width: 100%; border: 1px solid rgb(var(--c-border)); background: rgb(var(--c-surface));
  border-radius: 12px; padding: 12px 16px; font-family: var(--font-body); font-size: .9rem;
  color: rgb(var(--c-ink)); transition: border-color .2s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: rgb(var(--c-accent)); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-error { color: #ef4444; font-size: 12px; margin-top: 4px; }
.form-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 70px 24px; border: 1px solid rgb(var(--c-border)); background: rgb(var(--c-surface2)); border-radius: 20px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Marquee ---------- */
.marquee-wrap { overflow: hidden; border-top: 1px solid rgb(var(--c-border)); border-bottom: 1px solid rgb(var(--c-border)); background: rgb(var(--c-void)); padding: 16px 0; }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 26s linear infinite; }
.marquee-track span { font-family: var(--font-mono); font-size: .8rem; color: rgba(255,255,255,.6); white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Grid utilities ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.pill { display: inline-block; font-size: 12px; border: 1px solid rgb(var(--c-border)); background: rgb(var(--c-surface)); padding: 4px 12px; border-radius: 999px; color: rgba(var(--c-ink),.8); }

/* ---------- "Stand out" numbered row & "Why choose us" cards ---------- */
.stat-row { display: flex; gap: 20px; flex-wrap: wrap; }
.stat-row > div { min-width: 90px; }
.numbered-card { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid rgb(var(--c-border)); }
.numbered-card:last-child { border-bottom: none; }
.numbered-card .num { font-family: var(--font-mono); font-size: 1.7rem; font-weight: 600; color: rgba(var(--c-accent),.35); flex-shrink: 0; width: 44px; }
.why-card { display: flex; flex-direction: column; height: 100%; }
.why-card .icon-wrap { width: 46px; height: 46px; border-radius: 12px; background: rgba(36,174,243,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-card .icon-wrap img { width: 24px; height: 24px; object-fit: contain; }
.why-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.why-card li { font-size: .86rem; margin-bottom: 8px; display: flex; gap: 8px; }
.why-card li::before { content: '✓'; color: rgb(var(--c-accent)); flex-shrink: 0; }

/* ---------- Spinner ---------- */
.spinner { width: 40px; height: 40px; border: 3px solid rgb(var(--c-border)); border-top-color: rgb(var(--c-accent)); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 20px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   CHECKOUT — dedicated page, not a modal
   ========================================================= */
.checkout-wrap { max-width: 560px; margin: 0 auto; }
.checkout-summary { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; background: rgb(var(--c-surface2)); border: 1px solid rgb(var(--c-border)); border-radius: 16px; margin-bottom: 28px; }
.checkout-summary .price { font-family: var(--font-mono); font-size: 1.6rem; font-weight: 600; color: rgb(var(--c-accent)); }
.pay-option { border: 1px solid rgb(var(--c-border)); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgb(var(--c-surface)); }
.pay-option-head { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; background: transparent; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: rgb(var(--c-ink)); }
.pay-option-head:hover { color: rgb(var(--c-accent)); }
.test-mode-banner { background: #fef3c7; color: #92400e; text-align: center; padding: 10px 16px; font-size: .85rem; font-weight: 600; }
html.dark .test-mode-banner { background: #453b12; color: #fde68a; }
.checkout-status-box { text-align: center; padding: 60px 24px; }
.checkout-status-box.success .icon-circle { background: rgba(34,197,94,.15); color: #22c55e; }
.checkout-status-box.failed .icon-circle { background: rgba(239,68,68,.15); color: #ef4444; }
.icon-circle { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }

/* ---------- Quick service card ---------- */
.qs-card { display: flex; flex-direction: column; height: 100%; }
.qs-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin: 0 0 16px; min-height: 3rem; }
.qs-row { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.qs-price { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 600; color: rgb(var(--c-accent)); }

/* =========================================================
   ADMIN + DOCS SHELL — shares the same light/dark theme now
   ========================================================= */
.admin-body { background: rgb(var(--c-bg)); font-family: var(--font-body); color: rgb(var(--c-ink)); min-height: 100vh; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-topbar { display: none; position: sticky; top: 0; z-index: 40; align-items: center; justify-content: space-between; padding: 14px 18px; background: rgb(var(--c-surface)); border-bottom: 1px solid rgb(var(--c-border)); }
.admin-menu-btn { background: none; border: 1px solid rgb(var(--c-border)); border-radius: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: rgb(var(--c-ink)); }
.admin-sidebar { width: 240px; background: rgb(var(--c-surface)); border-right: 1px solid rgb(var(--c-border)); flex-shrink: 0; padding: 22px 0; }
.admin-sidebar .brand { display: flex; align-items: center; height: 28px; padding: 0 22px 20px; }
.admin-sidebar .brand img { height: 100%; width: auto; }
.admin-sidebar a { display: block; padding: 10px 22px; font-size: .87rem; color: rgb(var(--c-muted)); }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgb(var(--c-surface2)); color: rgb(var(--c-accent)); }
.admin-main { flex: 1; padding: 30px; max-width: 1240px; }
.admin-card { background: rgb(var(--c-surface)); border: 1px solid rgb(var(--c-border)); border-radius: 14px; padding: 24px; margin-bottom: 20px; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.admin-table th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: rgb(var(--c-muted)); border-bottom: 1px solid rgb(var(--c-border)); padding: 10px 12px; }
.admin-table td { padding: 12px; border-bottom: 1px solid rgb(var(--c-border)); vertical-align: top; }
.admin-stat { display: flex; flex-direction: column; gap: 4px; }
.admin-stat .num { font-family: var(--font-display); font-size: 2rem; font-weight: 600; }
.admin-stat .label { font-size: .8rem; color: rgb(var(--c-muted)); }
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; }
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-approved, .badge-paid { background: #d1fae5; color: #065f46; }
.badge-rejected, .badge-failed { background: #fee2e2; color: #991b1b; }
.badge-created { background: #e0e7ff; color: #3730a3; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: rgb(var(--c-void)); padding: 20px; }
.admin-login-box { background: rgb(var(--c-surface)); border: 1px solid rgb(var(--c-border)); border-radius: 16px; padding: 40px; width: 100%; max-width: 380px; }
.admin-btn { background: rgb(var(--c-accent)); color: #fff; border: none; padding: 11px 20px; border-radius: 8px; font-weight: 600; font-size: .85rem; cursor: pointer; }
.admin-btn:hover { opacity: .9; }
.admin-btn-danger { background: #dc2626; }
.admin-btn-outline { background: rgb(var(--c-surface)); border: 1px solid rgb(var(--c-border)); color: rgb(var(--c-ink)); }
.admin-input { width: 100%; border: 1px solid rgb(var(--c-border)); background: rgb(var(--c-surface)); color: rgb(var(--c-ink)); border-radius: 8px; padding: 9px 12px; font-size: .88rem; }
.admin-flash { padding: 12px 16px; border-radius: 10px; margin-bottom: 16px; font-size: .86rem; }
.admin-flash-ok { background: #d1fae5; color: #065f46; }
.admin-flash-err { background: #fee2e2; color: #991b1b; }
@media (max-width: 900px) {
  .admin-topbar { display: flex; }
  .admin-shell { flex-direction: column; }
  .admin-sidebar { position: fixed; inset: 0 30% 0 0; z-index: 150; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 20px 0 40px rgba(0,0,0,.2); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { padding: 20px 16px; }
}

/* ---------- Docs shell (same theme + toggle as everything else) ---------- */
.docs-topbar { display: none; position: sticky; top: 0; z-index: 40; align-items: center; justify-content: space-between; padding: 14px 18px; background: rgb(var(--c-surface)); border-bottom: 1px solid rgb(var(--c-border)); }
.docs-menu-btn { background: none; border: 1px solid rgb(var(--c-border)); border-radius: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: rgb(var(--c-ink)); }
.docs-shell { display: flex; min-height: 100vh; }
.docs-sidebar { width: 260px; flex-shrink: 0; background: rgb(var(--c-surface)); border-right: 1px solid rgb(var(--c-border)); padding: 24px 0; }
.docs-sidebar .docs-logo { padding: 0 22px; margin-bottom: 20px; height: 28px; display: flex; align-items: center; }
.docs-sidebar .docs-logo img { height: 100%; width: auto; }
.docs-sidebar .user-row { padding: 0 22px 18px; margin-bottom: 12px; border-bottom: 1px solid rgb(var(--c-border)); font-size: .82rem; color: rgb(var(--c-muted)); }
.docs-sidebar .user-row a { color: #ef4444; font-weight: 500; }
.docs-nav-group { padding: 0 12px; margin-bottom: 18px; }
.docs-nav-group h4 { font-family: var(--font-mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgb(var(--c-muted)); padding: 0 10px; margin: 0 0 6px; }
.docs-nav-group a { display: block; padding: 9px 10px; border-radius: 8px; font-size: .87rem; color: rgba(var(--c-ink),.85); }
.docs-nav-group a:hover { background: rgb(var(--c-surface2)); }
.docs-nav-group a.active { background: rgba(36,174,243,.12); color: rgb(var(--c-accent)); font-weight: 600; }
.docs-main { flex: 1; max-width: 860px; padding: 44px 52px; }
.docs-main h1 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin: 0 0 10px; }
.docs-main h2 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; margin: 30px 0 12px; }
.docs-main p { font-size: .92rem; line-height: 1.8; }
.docs-main .lede { color: rgb(var(--c-muted)); margin-bottom: 28px; }
.doc-table { width: 100%; border-collapse: collapse; font-size: .84rem; margin: 16px 0; }
.doc-table th, .doc-table td { border: 1px solid rgb(var(--c-border)); padding: 8px 12px; text-align: left; }
.doc-table th { background: rgb(var(--c-surface2)); }
pre { background: rgb(var(--c-surface2)); border: 1px solid rgb(var(--c-border)); border-radius: 10px; padding: 16px; overflow-x: auto; font-family: var(--font-mono); font-size: .8rem; line-height: 1.6; }
code { font-family: var(--font-mono); background: rgb(var(--c-surface2)); padding: 2px 6px; border-radius: 4px; font-size: .85em; }
.docs-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; }
.docs-login-box { background: rgb(var(--c-surface)); border: 1px solid rgb(var(--c-border)); border-radius: 16px; padding: 40px; width: 100%; max-width: 380px; }
.docs-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 24px; height: 30px; }
.docs-logo img { height: 100%; width: auto; }
.flash { padding: 10px 14px; border-radius: 8px; margin-bottom: 14px; font-size: .84rem; }
.flash-err { background: #fee2e2; color: #991b1b; }
.flash-ok { background: #d1fae5; color: #065f46; }
@media (max-width: 900px) {
  .docs-topbar { display: flex; }
  .docs-sidebar { position: fixed; inset: 0 30% 0 0; z-index: 150; transform: translateX(-100%); transition: transform .25s ease; box-shadow: 20px 0 40px rgba(0,0,0,.15); }
  .docs-sidebar.open { transform: translateX(0); }
  .docs-main { padding: 24px 18px; max-width: 100%; }
}

/* ---------- Receipt page ---------- */
.receipt-box { max-width: 640px; margin: 0 auto; background: rgb(var(--c-surface)); border: 1px solid rgb(var(--c-border)); border-radius: 18px; padding: 36px; }
.receipt-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid rgb(var(--c-border)); flex-wrap: wrap; gap: 16px; }
.receipt-header img { height: 32px; width: auto; }
.receipt-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .88rem; }
.receipt-table th, .receipt-table td { text-align: left; padding: 10px 0; border-bottom: 1px solid rgb(var(--c-border)); }
