/* =====================================================
   USA AutoHub — Main Stylesheet
   Palette: Navy #0B1B33, Deep Navy #071426, Red #D62839,
            White #FFFFFF, Steel #8DA0BC, Fog #EEF2F7
   ===================================================== */

:root {
    --navy: #0B1B33;
    --navy-deep: #071426;
    --red: #D62839;
    --red-dark: #A81E2C;
    --white: #FFFFFF;
    --steel: #8DA0BC;
    --fog: #EEF2F7;
    --ink: #16233B;
    --success: #1E8E5A;
    --warn: #C98A11;
    --radius: 10px;
    --radius-lg: 18px;
    --shadow: 0 10px 30px rgba(7, 20, 38, 0.15);
    --shadow-lg: 0 24px 60px rgba(7, 20, 38, 0.28);
    --glass-bg: rgba(255, 255, 255, 0.10);
    --glass-bg-strong: rgba(255, 255, 255, 0.16);
    --glass-border: rgba(255, 255, 255, 0.22);
    --glass-blur: blur(18px) saturate(180%);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --font-display: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--fog);
    line-height: 1.55;
}

/* ---------- Glass utility ---------- */
.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* ---------- Scroll-reveal motion ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* Stagger children of grids as their parent section reveals (scoped to .reveal sections only —
   vehicle-grid/card grids used outside a .reveal wrapper, e.g. inventory.php, must stay fully visible) */
.reveal .vehicle-grid .vehicle-card,
.reveal .steps .step,
.reveal .testimonial-grid .card,
.reveal .grid-2 .card {
    opacity: 0; transform: translateY(18px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.in-view .vehicle-grid .vehicle-card,
.reveal.in-view .steps .step,
.reveal.in-view .testimonial-grid .card,
.reveal.in-view .grid-2 .card {
    opacity: 1; transform: none;
}
.reveal.in-view .vehicle-grid .vehicle-card:nth-child(1),
.reveal.in-view .steps .step:nth-child(1),
.reveal.in-view .testimonial-grid .card:nth-child(1),
.reveal.in-view .grid-2 .card:nth-child(1) { transition-delay: .05s; }
.reveal.in-view .vehicle-grid .vehicle-card:nth-child(2),
.reveal.in-view .steps .step:nth-child(2),
.reveal.in-view .testimonial-grid .card:nth-child(2),
.reveal.in-view .grid-2 .card:nth-child(2) { transition-delay: .12s; }
.reveal.in-view .vehicle-grid .vehicle-card:nth-child(3),
.reveal.in-view .steps .step:nth-child(3),
.reveal.in-view .testimonial-grid .card:nth-child(3),
.reveal.in-view .grid-2 .card:nth-child(3) { transition-delay: .19s; }
.reveal.in-view .vehicle-grid .vehicle-card:nth-child(4),
.reveal.in-view .steps .step:nth-child(4),
.reveal.in-view .grid-2 .card:nth-child(4) { transition-delay: .26s; }
.reveal.in-view .vehicle-grid .vehicle-card:nth-child(5) { transition-delay: .33s; }
.reveal.in-view .vehicle-grid .vehicle-card:nth-child(6) { transition-delay: .4s; }
.stats-grid .stat:nth-child(1) { transition-delay: .05s; }
.stats-grid .stat:nth-child(2) { transition-delay: .12s; }
.stats-grid .stat:nth-child(3) { transition-delay: .19s; }
.stats-grid .stat:nth-child(4) { transition-delay: .26s; }
@media (prefers-reduced-motion: reduce) {
    .reveal .vehicle-grid .vehicle-card, .reveal .steps .step, .reveal .testimonial-grid .card, .reveal .grid-2 .card {
        opacity: 1; transform: none; transition: none;
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--navy);
    margin: 0 0 .5em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: var(--radius);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease), color .22s var(--ease);
    will-change: transform;
}
.btn-red { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: #fff; box-shadow: 0 6px 18px rgba(214,40,57,.28); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(214,40,57,.4); }
.btn-red:active { transform: translateY(0); }
.btn-outline { background: rgba(255,255,255,.06); border-color: var(--white); color: var(--white); backdrop-filter: blur(6px); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; box-shadow: 0 6px 18px rgba(7,20,38,.3); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(7,20,38,.4); }
.btn-block { width: 100%; text-align: center; }
.btn-sm { padding: 8px 16px; font-size: 12px; }
.btn-ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-ghost:hover { transform: translateY(-2px); background: var(--navy); color: #fff; }

/* ---------- Top bar & Navbar ---------- */
.topbar {
    background: var(--navy-deep);
    color: var(--steel);
    font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; }
.topbar a { color: var(--steel); margin-left: 16px; transition: color .18s ease; }
.topbar a:hover { color: #fff; }

.navbar {
    background: rgba(11, 27, 51, .78);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(255,255,255,.06);
    position: sticky; top: 0; z-index: 100;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 22px; color: #fff; letter-spacing: .04em; }
.brand span { color: var(--red); }
.brand-logo { height: 38px; width: auto; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a { position: relative; color: var(--fog); font-weight: 500; font-size: 14.5px; text-transform: uppercase; letter-spacing: .02em; padding-bottom: 3px; transition: color .18s ease; }
.nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
    background: var(--red); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; transition: transform .18s ease; }
.nav-toggle:hover { transform: scale(1.1); }

@media (max-width: 900px) {
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(11, 27, 51, .92);
        -webkit-backdrop-filter: blur(16px) saturate(160%);
        backdrop-filter: blur(16px) saturate(160%);
        flex-direction: column; padding: 16px 20px; display: none; gap: 14px;
        opacity: 0; transform: translateY(-8px);
        transition: opacity .22s var(--ease), transform .22s var(--ease);
    }
    .nav-links.open { display: flex; opacity: 1; transform: none; }
    .nav-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background: linear-gradient(180deg, rgba(7,20,38,.88), rgba(7,20,38,.94)),
                repeating-linear-gradient(135deg, rgba(214,40,57,.08) 0 2px, transparent 2px 40px);
    color: #fff;
    padding: 100px 0 90px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}
.hero.hero-media { padding: 130px 0 100px; }
.hero-bg-video, .hero-bg-image {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -2;
}
.hero-bg-image { background-size: cover; background-position: center; }
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(7,20,38,.82), rgba(7,20,38,.92)),
                radial-gradient(circle at 30% 20%, rgba(214,40,57,.18), transparent 55%);
}
.hero-content { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--red); font-family: var(--font-display); letter-spacing: .12em; font-size: 13px; text-transform: uppercase; }
.hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); margin-top: 10px; }
.hero p.lead { color: var(--steel); max-width: 600px; margin: 14px auto 30px; font-size: 17px; }

.search-box {
    background: var(--glass-bg-strong);
    -webkit-backdrop-filter: var(--glass-blur);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    max-width: 900px; margin: 0 auto; padding: 20px; display: grid;
    grid-template-columns: repeat(4, 1fr) auto; gap: 10px; align-items: end;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.search-box:hover { transform: translateY(-3px); }
.search-box label { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--steel); font-weight: 700; display: block; margin-bottom: 4px; }
.search-box select, .search-box input {
    width: 100%; padding: 10px; border: 1px solid rgba(255,255,255,.35); border-radius: 6px; font-size: 14px;
    background: rgba(255,255,255,.92); color: var(--ink);
    transition: box-shadow .18s ease, border-color .18s ease;
}
.search-box select:focus, .search-box input:focus {
    outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,40,57,.25);
}
@media (max-width: 900px) { .search-box { grid-template-columns: 1fr 1fr; } }

/* ---------- Stats strip ---------- */
.stats-strip { position: relative; margin: -46px auto 0; z-index: 5; padding: 0 20px 20px; }
.stats-grid {
    background: var(--navy);
    background-image: linear-gradient(135deg, rgba(214,40,57,.18), transparent 60%);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.08);
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 30px 20px;
}
.stat { text-align: center; padding: 10px; }
.stat-num {
    font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 600;
    background: linear-gradient(135deg, #fff, var(--steel));
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--steel); font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin-top: 4px; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 20px; } .stats-strip { margin-top: -30px; } }

/* ---------- Section headers ---------- */
.section { padding: 60px 0; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head .eyebrow { color: var(--red); font-family: var(--font-display); letter-spacing: .12em; font-size: 13px; text-transform: uppercase; }
.section-alt { background: #fff; }

/* ---------- About section ---------- */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-layout-solo { grid-template-columns: 1fr; max-width: 760px; text-align: center; }
@media (max-width: 900px) { .about-layout { grid-template-columns: 1fr; } }
.about-media {
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
    transform: rotate(-1deg); transition: transform .4s var(--ease);
}
.about-media:hover { transform: rotate(0deg) scale(1.02); }
.about-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-copy .lead-dark { color: #55617a; font-size: 16px; margin-top: 10px; }

/* ---------- Vehicle grid & cards ---------- */
.vehicle-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.vehicle-card {
    background: rgba(255,255,255,.85);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 4px 14px rgba(7,20,38,.08);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
    display: flex; flex-direction: column;
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(214,40,57,.35); }
.vehicle-card .photo { position: relative; aspect-ratio: 4/3; background: #dde4ee; overflow: hidden; }
.vehicle-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.vehicle-card:hover .photo img { transform: scale(1.08); }
.vehicle-card .badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: #fff; font-size: 11px; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; font-family: var(--font-display); letter-spacing: .04em; }
.vehicle-card .price-badge { position: absolute; bottom: 10px; right: 10px; background: var(--navy); color: #fff; font-family: var(--font-display); padding: 6px 12px; border-radius: 3px; font-size: 15px; }
.vehicle-card .body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.vehicle-card h3 { font-size: 17px; margin-bottom: 6px; }
.vehicle-card .meta { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 13px; color: var(--steel); margin-bottom: 14px; }
.vehicle-card .meta span::before { content: '•'; margin-right: 6px; color: var(--red); }
.vehicle-card .meta span:first-child::before { content: ''; margin: 0; }
.vehicle-card .stock { font-size: 12px; color: var(--steel); margin-bottom: 12px; }
.vehicle-card .actions { margin-top: auto; display: flex; gap: 8px; }

/* ---------- Filters sidebar ---------- */
.inventory-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; }
@media (max-width: 900px) { .inventory-layout { grid-template-columns: 1fr; } }
.filters { background: #fff; border-radius: var(--radius); padding: 20px; box-shadow: 0 4px 14px rgba(7,20,38,.06); align-self: start; position: sticky; top: 90px; }
.filters h4 { font-size: 14px; border-bottom: 2px solid var(--fog); padding-bottom: 10px; margin-bottom: 14px; }
.filters .field { margin-bottom: 14px; }
.filters label { font-size: 12px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 4px; text-transform: uppercase; letter-spacing: .03em; }
.filters select, .filters input { width: 100%; padding: 9px; border: 1px solid #d8dfe9; border-radius: 4px; font-size: 14px; }
.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 10px; }

/* ---------- Vehicle details ---------- */
.gallery-main { aspect-ratio: 16/10; background: #dde4ee; border-radius: var(--radius); overflow: hidden; margin-bottom: 10px; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; }
.gallery-thumbs img { width: 90px; height: 64px; object-fit: cover; border-radius: 4px; cursor: pointer; border: 2px solid transparent; }
.gallery-thumbs img.active { border-color: var(--red); }

.details-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .details-layout { grid-template-columns: 1fr; } }

.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.spec-table tr { border-bottom: 1px solid #e4e9f1; }
.spec-table td { padding: 10px 4px; font-size: 14px; }
.spec-table td:first-child { color: var(--steel); font-weight: 600; width: 45%; }

.price-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 90px; }
.price-card .price { font-family: var(--font-display); font-size: 34px; color: var(--red); }
.price-card .down { color: var(--steel); font-size: 14px; margin-bottom: 18px; }
.price-card .btn { width: 100%; margin-bottom: 10px; text-align: center; }
.price-card .stat-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 13px; border-top: 1px solid var(--fog); }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
.step { text-align: center; }
.step .num { font-family: var(--font-display); font-size: 40px; color: var(--red); }
.step h4 { font-size: 15px; }
.step p { font-size: 13.5px; color: #55617a; }

/* ---------- Cards / testimonials ---------- */
.card {
    background: #fff; border-radius: var(--radius-lg); padding: 22px;
    box-shadow: 0 4px 14px rgba(7,20,38,.06);
    border: 1px solid transparent;
    transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(214,40,57,.18); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.stars { color: #f0ad2e; letter-spacing: 2px; margin-bottom: 8px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); max-width: 480px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 5px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 11px; border: 1px solid #d8dfe9; border-radius: 4px; font-size: 14.5px; font-family: var(--font-body);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.alert { padding: 12px 16px; border-radius: 4px; margin-bottom: 16px; font-size: 14px; }
.alert-success { background: #e4f5ec; color: var(--success); border: 1px solid #b9e4cc; }
.alert-error { background: #fbe7e9; color: var(--red-dark); border: 1px solid #f1bfc4; }
.alert-info { background: #e8f0fb; color: var(--navy); border: 1px solid #c6d8f2; }

/* ---------- Tracking timeline ---------- */
.timeline { display: flex; flex-wrap: wrap; gap: 0; margin: 30px 0; }
.timeline .tl-step { flex: 1; min-width: 110px; text-align: center; position: relative; padding: 0 6px; }
.timeline .tl-dot { width: 18px; height: 18px; border-radius: 50%; background: #d8dfe9; margin: 0 auto 8px; position: relative; z-index: 2; }
.timeline .tl-step.done .tl-dot { background: var(--success); }
.timeline .tl-step.current .tl-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(214,40,57,.2); }
.timeline .tl-step::before { content: ''; position: absolute; top: 9px; left: -50%; width: 100%; height: 2px; background: #d8dfe9; z-index: 1; }
.timeline .tl-step:first-child::before { display: none; }
.timeline .tl-step.done::before { background: var(--success); }
.timeline .tl-label { font-size: 11.5px; font-weight: 600; color: var(--steel); }
.timeline .tl-step.done .tl-label, .timeline .tl-step.current .tl-label { color: var(--navy); }

/* ---------- Footer ---------- */
footer {
    position: relative; background: var(--navy-deep); color: var(--steel);
    padding: 50px 0 20px; margin-top: 60px;
}
footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
footer h4 { color: #fff; font-size: 14px; margin-bottom: 14px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 8px; font-size: 13.5px; }
footer a { transition: color .18s ease; }
footer a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #16233b; padding-top: 18px; text-align: center; font-size: 12.5px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed; bottom: 22px; right: 22px; background: #25D366; color: #fff;
    width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 6px 20px rgba(0,0,0,.25); z-index: 200;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation-play-state: paused; }
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(0,0,0,.25), 0 0 0 0 rgba(37,211,102,.5); }
    50% { box-shadow: 0 6px 20px rgba(0,0,0,.25), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce) { .wa-float { animation: none; } }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0{margin-top:0} .mb-0{margin-bottom:0}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 800px) { .grid-2 { grid-template-columns: 1fr; } }
.empty-state { text-align: center; padding: 60px 20px; color: var(--steel); }
.table-simple { width: 100%; border-collapse: collapse; }
.table-simple th, .table-simple td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #e4e9f1; font-size: 13.5px; }
.table-simple th { background: var(--fog); text-transform: uppercase; font-size: 11.5px; letter-spacing: .03em; color: var(--steel); }
.pill { display: inline-block; padding: 3px 11px; border-radius: 20px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.pill-available, .pill-verified, .pill-delivered, .pill-active { background: #e4f5ec; color: var(--success); }
.pill-pending, .pill-processing { background: #fdf1dc; color: var(--warn); }
.pill-sold, .pill-cancelled, .pill-failed, .pill-blocked { background: #fbe7e9; color: var(--red-dark); }
.pill-reserved, .pill-in-transit { background: #e8f0fb; color: var(--navy); }
