﻿:root {
    --surface: #FFFFFF;
    --border: rgba(245, 114, 10, 0.18);
    --border-strong: rgba(245, 114, 10, 0.50);
    --text: #1C0800;
    --text-soft: #5A3000;
    --text-dim: #8A6035;
    --brand: #F5720A;
    --brand-strong: #D45C00;
    --shadow: 0 4px 28px rgba(245, 114, 10, 0.12);

    /* Fluid typography */
    --text-xs:   clamp(0.7rem,  1.5vw, 0.78rem);
    --text-sm:   clamp(0.82rem, 1.8vw, 0.875rem);
    --text-base: clamp(0.9rem,  2vw,   1rem);
    --text-lg:   clamp(1rem,    2.5vw, 1.125rem);
    --text-xl:   clamp(1.1rem,  3vw,   1.25rem);
    --text-2xl:  clamp(1.25rem, 4vw,   1.5rem);
    --text-3xl:  clamp(1.5rem,  5vw,   2rem);
    --text-4xl:  clamp(1.8rem,  6vw,   2.5rem);

    /* Spacing tokens */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;

    /* Marketing page warm accents */
    --peach:        #F5720A;
    --peach-deep:   #E06500;
    --peach-glow:   rgba(245, 114, 10, 0.15);
    --sage:         #6B8E5A;
    --terracotta:   #B85450;
}

html {
    scroll-behavior: smooth;
}

body.app-body {
    min-height: 100vh;
    color: var(--text);
    background: #FFF5EE;
    font-family: "Instrument Sans", "Segoe UI", sans-serif;
}

.app-body::before { display: none; }

/* ── Dark theme for seller/admin panels ── */
body.app-body.dark-theme {
    --surface: rgba(22, 8, 0, 0.85);
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(245, 114, 10, 0.50);
    --text: #fff0e6;
    --text-soft: #c9a880;
    --text-dim: #9e7850;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.50);
    background:
        radial-gradient(ellipse at top left, rgba(245, 114, 10, 0.18), transparent 35%),
        radial-gradient(ellipse at top right, rgba(212, 92, 0, 0.10), transparent 30%),
        radial-gradient(ellipse at bottom center, rgba(200, 80, 0, 0.06), transparent 50%),
        linear-gradient(180deg, #1a0900 0%, #100500 55%, #0a0300 100%);
}
body.app-body.dark-theme::before {
    content: "";
    position: fixed;
    inset: 0;
    display: block;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(245, 114, 10, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 114, 10, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .display-4 {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    letter-spacing: -0.03em;
}
a {
    color: #D45C00;
}
a:hover {
    color: #F5720A;
}

/* ── Navbar — light by default, sticky ── */
.app-navbar {
    position: sticky !important;
    top: 0;
    z-index: 1030;
    background: rgba(255, 245, 238, 0.97) !important;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 114, 10, 0.22) !important;
    box-shadow: 0 2px 16px rgba(245, 114, 10, 0.10);
}

.app-navbar .nav-link,
.app-navbar .navbar-brand,
.app-navbar .dropdown-item {
    color: #1C0800 !important;
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus,
.app-navbar .dropdown-item:hover,
.app-navbar .dropdown-item:focus {
    color: var(--brand) !important;
}

.app-navbar .text-warning,
.app-navbar .fw-bold.text-warning {
    color: #D45C00 !important;
}

.app-navbar .dropdown-menu {
    background: #FFFFFF !important;
    border: 1px solid rgba(245, 114, 10, 0.20) !important;
    box-shadow: 0 8px 32px rgba(245, 114, 10, 0.15);
}

.app-navbar .navbar-toggler-icon {
    filter: invert(20%) sepia(80%) saturate(600%) hue-rotate(5deg) brightness(0.5);
}

/* Dark theme navbar (admin only) */
.dark-theme .app-navbar {
    background: rgba(20, 8, 4, 0.95) !important;
    border-bottom: 1px solid rgba(245, 114, 10, 0.18) !important;
    box-shadow: none;
}
.dark-theme .app-navbar .nav-link,
.dark-theme .app-navbar .navbar-brand,
.dark-theme .app-navbar .dropdown-item {
    color: #fff0e6 !important;
}
.dark-theme .app-navbar .nav-link:hover,
.dark-theme .app-navbar .dropdown-item:hover {
    color: var(--brand) !important;
}
.dark-theme .app-navbar .text-warning,
.dark-theme .app-navbar .fw-bold.text-warning {
    color: #F5720A !important;
}
.dark-theme .app-navbar .dropdown-menu {
    background: rgba(22, 9, 5, 0.98) !important;
    border: 1px solid rgba(245, 114, 10, 0.18) !important;
}
.dark-theme .app-navbar .navbar-toggler-icon {
    filter: none;
}

.app-main {
    position: relative;
    z-index: 1;
    padding-top: clamp(1rem, 4vw, 2rem);
    padding-bottom: clamp(1.5rem, 4vw, 3rem);
}

/* Touch targets */
.btn, a.nav-link, .form-control, .form-select { min-height: 44px; }
.btn-sm { min-height: 36px; }

/* Focus ring */
:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Badge sizing */
.badge { padding: 0.35em 0.72em; font-size: var(--text-xs); }

.page-header {
    margin-bottom: 1.75rem;
}

.page-title {
    margin-bottom: 0.45rem;
    font-weight: 700;
    color: var(--text);
}

.page-subtitle {
    margin: 0;
    color: var(--text-soft);
    font-size: 1rem;
}

.hero-panel,
.surface-card,
.surface-panel,
.ticker-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 3rem;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% 45%;
    height: 280px;
    background: radial-gradient(circle, rgba(245, 114, 10, 0.30), transparent 62%);
}

.surface-card,
.surface-panel {
    border-radius: 24px;
}

.surface-panel {
    padding: 1.5rem;
}

.metric-card {
    height: 100%;
    padding: 1.35rem;
}

.metric-label {
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.74rem;
}

.metric-value {
    color: var(--text);
    font-weight: 700;
}

.table-shell {
    overflow: hidden;
}

.table {
    --bs-table-color: var(--text);
    --bs-table-bg: transparent;
    --bs-table-border-color: rgba(245, 114, 10, 0.12);
    --bs-table-striped-bg: rgba(245, 114, 10, 0.04);
    --bs-table-striped-color: var(--text);
    margin-bottom: 0;
}

.table thead th {
    color: #D45C00;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom-width: 1px;
}

.table td,
.table th {
    vertical-align: middle;
    padding: 1rem 0.9rem;
}

.card,
.modal-content {
    background: var(--surface) !important;
    border-color: var(--border) !important;
    box-shadow: var(--shadow);
}

.card-header {
    background: rgba(245, 114, 10, 0.04) !important;
    border-bottom-color: var(--border) !important;
}

.list-group-item {
    background: transparent !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}

.form-control,
.form-select,
.input-group-text {
    background: #FFFFFF !important;
    color: var(--text) !important;
    border-color: rgba(245, 114, 10, 0.22) !important;
}

.form-control::placeholder {
    color: var(--text-dim);
}

.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(245, 114, 10, 0.20) !important;
    border-color: var(--brand) !important;
}

.btn-warning {
    background: linear-gradient(135deg, #F5720A, #D45C00);
    border-color: transparent;
    color: #fff;
    font-weight: 700;
}

.btn-warning:hover,
.btn-warning:focus {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(245, 114, 10, 0.40);
}

.btn-outline-warning {
    color: var(--brand);
    border-color: var(--brand);
}
.btn-outline-warning:hover {
    background-color: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.text-muted,
.text-secondary,
.small.text-muted,
small.text-muted {
    color: var(--text-soft) !important;
}

.text-warning {
    color: #F5720A !important;
}

.price-tag,
.text-brand {
    color: #F5720A !important;
}

.auth-shell {
    min-height: calc(100vh - 220px);
    display: flex;
    align-items: center;
}

.auth-card {
    padding: 2rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: #F5720A;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.auction-card {
    transition: transform 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
}

.auction-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong) !important;
}

.auction-card img,
.detail-media {
    object-fit: cover;
}

.price-tag {
    font-weight: 700;
    color: #ffd36b;
}

.status-panel {
    background: rgba(245, 114, 10, 0.06);
    border: 1px solid rgba(245, 114, 10, 0.14);
    border-radius: 16px;
}

.empty-state {
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-soft);
}

.ticker-panel {
    max-width: 320px;
    z-index: 1050;
    border-radius: 18px;
    padding: 0.85rem 1rem;
}

.fade-up {
    animation: fade-up 0.55s ease both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky mobile bid bar */
#mobile-bid-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: rgba(16, 6, 0, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-strong);
    padding: 0.75rem 1rem;
}

/* Countdown urgent pulse */
.timer-urgent {
    color: #ff4d4d !important;
    animation: pulse-urgent 1s ease infinite;
}
@keyframes pulse-urgent {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Upload zone */
.upload-zone {
    position: relative;
    cursor: pointer;
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
}
.upload-zone:hover {
    border-color: var(--brand);
    background: rgba(245, 114, 10, 0.04);
}
.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

/* Auction lifecycle steps */
.lifecycle-steps {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
}
.lifecycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 60px;
    font-size: var(--text-xs);
    color: var(--text-dim);
    position: relative;
}
.lifecycle-step::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -50%;
    right: 50%;
    height: 2px;
    background: var(--border);
}
.lifecycle-step:first-child::before { display: none; }
.lifecycle-step .step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: transparent;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}
.lifecycle-step.active .step-dot {
    background: var(--brand);
    border-color: var(--brand);
}
.lifecycle-step.done .step-dot {
    background: #22c55e;
    border-color: #22c55e;
}
.lifecycle-step.active { color: var(--brand); }
.lifecycle-step.done { color: #22c55e; }

/* How-it-works steps */
.how-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(245, 114, 10, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--brand);
}

/* Role card selector */
.role-card {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-align: center;
}
.role-card.selected,
.role-card:hover {
    border-color: var(--brand);
    background: rgba(245, 114, 10, 0.06);
}

@media (max-width: 767.98px) {
    .hero-panel {
        padding: 1.5rem;
        border-radius: 22px;
    }

    .app-main {
        padding-top: 1.25rem;
    }

    .auth-shell {
        min-height: auto;
        align-items: stretch;
    }

    /* Table-to-card on mobile */
    .table-mobile-cards thead { display: none; }
    .table-mobile-cards tr {
        display: block;
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 0.75rem;
        padding: 0.75rem;
        background: var(--surface);
    }
    .table-mobile-cards td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none !important;
        padding: 0.3rem 0 !important;
        font-size: var(--text-sm);
    }
    .table-mobile-cards td::before {
        content: attr(data-label);
        color: var(--text-soft);
        font-size: var(--text-xs);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    #mobile-bid-bar { display: flex; gap: 0.5rem; align-items: center; }
}

@media (min-width: 992px) {
    #mobile-bid-bar { display: none !important; }
}

/* ─── Navbar brand color ─── */
.app-navbar .navbar-brand {
    color: var(--brand) !important;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ─── Landing-page light sections (used only on home page) ─── */
.lp-section {
    position: relative;
    z-index: 1;
}

/* Landing hero — full bleed warm light */
.lp-hero {
    background: linear-gradient(135deg, #FFF5EE 0%, #FFEEDD 40%, #FFF2E8 100%);
    color: #1C0800;
    min-height: 88vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(245,114,10,0.25);
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(245,114,10,0.25), transparent 55%),
        radial-gradient(ellipse at 10% 80%, rgba(212,92,0,0.10), transparent 40%);
    pointer-events: none;
}

/* Landing sections alternating */
.lp-white { background: #FFFFFF; color: #1C0800; }
.lp-cream { background: #FFF5EE; color: #1C0800; }
.lp-peach-band {
    background: linear-gradient(135deg, #F5720A, #D45C00);
    color: #fff;
}

/* Landing text overrides */
.lp-hero h1, .lp-white h2, .lp-cream h2 { color: #1C0800; }
.lp-hero p, .lp-white p, .lp-cream p { color: #5A3800; }
.lp-muted { color: #8A6035 !important; }

/* Feature card (light bg) */
.lp-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(245,114,10,0.20);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 20px rgba(245,114,10,0.10);
    transition: box-shadow 0.25s, transform 0.25s;
}
.lp-feature-card:hover {
    box-shadow: 0 8px 32px rgba(245,114,10,0.20);
    transform: translateY(-4px);
}
.lp-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245,114,10,0.18), rgba(212,92,0,0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #D45C00;
    margin-bottom: 1rem;
}

/* Stat card (light) */
.lp-stat-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(245,114,10,0.15);
    box-shadow: 0 2px 12px rgba(245,114,10,0.08);
}
.lp-stat-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    font-family: "Space Grotesk", sans-serif;
    background: linear-gradient(135deg, #F5720A, #D45C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.lp-stat-label { color: #8A6035; font-size: 0.875rem; margin-top: 0.5rem; }

/* Step in light theme */
.lp-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid rgba(245,114,10,0.18);
    box-shadow: 0 2px 16px rgba(245,114,10,0.08);
}
.lp-step-num {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F5720A, #D45C00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

/* Live auction card (light) */
.lp-auction-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(245,114,10,0.18);
    box-shadow: 0 2px 16px rgba(245,114,10,0.08);
    transition: transform 0.22s, box-shadow 0.22s;
}
.lp-auction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(245,114,10,0.18);
}
.lp-auction-card .price { color: #D45C00; font-weight: 700; font-size: 1.15rem; }
.lp-auction-card .cat { color: #8A6035; font-size: 0.8rem; }
.lp-auction-card .title { color: #1C0800; font-weight: 600; font-size: 0.92rem; }

/* Testimonial (light) */
.lp-testimonial {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(245,114,10,0.18);
    box-shadow: 0 2px 16px rgba(245,114,10,0.06);
}
.lp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,114,10,0.30), rgba(212,92,0,0.20));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #D45C00;
    flex-shrink: 0;
}
.lp-stars { color: #F5720A; font-size: 0.85rem; }

/* CTA band */
.lp-cta-band {
    background: linear-gradient(135deg, #1a0900 0%, #2a0e00 100%);
    color: #f5ede8;
    padding: 5rem 0;
    border-top: 1px solid rgba(245,114,10,0.20);
    border-bottom: 1px solid rgba(245,114,10,0.20);
}

/* Mockup card floating in hero */
.lp-mockup {
    background: #FFFFFF;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(212,92,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(245,114,10,0.20);
}
.lp-mockup-header {
    background: linear-gradient(135deg, #1a0900, #2a0e00);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.lp-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(245,114,10,0.15);
    border: 1px solid rgba(245,114,10,0.30);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    font-size: 0.78rem;
    color: #F5720A;
    font-weight: 600;
}

/* Hero decoration blobs */
.lp-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
}

/* Light btn overrides for landing page */
.btn-brand {
    background: linear-gradient(135deg, #F5720A, #D45C00);
    color: #fff;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 16px rgba(212,92,0,0.30);
    transition: all 0.2s;
}
.btn-brand:hover {
    color: #fff;
    filter: brightness(1.07);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212,92,0,0.35);
}
.btn-dark-outline {
    background: transparent;
    border: 1.5px solid rgba(28,20,16,0.25);
    color: #1C0800;
    font-weight: 600;
}
.btn-dark-outline:hover {
    background: rgba(245,114,10,0.10);
    border-color: #F5720A;
    color: #D45C00;
}
.btn-light-outline {
    background: transparent;
    border: 1.5px solid rgba(245,114,10,0.50);
    color: #F5720A;
    font-weight: 600;
}
.btn-light-outline:hover {
    background: rgba(245,114,10,0.15);
    border-color: #F5720A;
    color: #fff;
}

/* Category tile — light */
.lp-cat-tile {
    background: #FFFFFF;
    border: 1px solid rgba(245,114,10,0.18);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.22s;
    display: block;
    box-shadow: 0 2px 12px rgba(245,114,10,0.06);
}
.lp-cat-tile:hover {
    transform: translateY(-4px);
    border-color: #F5720A;
    box-shadow: 0 8px 28px rgba(245,114,10,0.18);
}
.lp-cat-tile .cat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(245,114,10,0.18), rgba(212,92,0,0.10));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #D45C00;
    margin: 0 auto 0.85rem;
}
.lp-cat-tile .cat-name { color: #1C0800; font-weight: 600; font-size: 0.88rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ─── Marketing page additions ─── */

.hero-peach {
    background:
        radial-gradient(circle at 30% 40%, rgba(245,114,10,0.18), transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(245,114,10,0.10), transparent 40%),
        var(--surface);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 3rem;
}
@media (max-width: 767.98px) {
    .hero-peach { padding: 1.5rem; border-radius: 22px; }
}

.section-warm {
    background: rgba(245, 114, 10, 0.06);
    border-top: 1px solid rgba(245, 114, 10, 0.12);
    border-bottom: 1px solid rgba(245, 114, 10, 0.12);
    padding: 4rem 0;
}

.trust-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
}
.trust-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}
.trust-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245, 114, 10, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.6rem;
    color: #F5720A;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
}
.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5720A, #E06500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
}

.category-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--surface);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: transform 0.22s, border-color 0.22s;
}
.category-tile:hover {
    transform: translateY(-4px);
    border-color: var(--border-strong);
}
.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.22s;
}
.category-tile:hover img { opacity: 0.9; }
.category-tile .tile-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(16,6,0,0.88));
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    color: var(--text);
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
}

.newsletter-band {
    background: linear-gradient(135deg, rgba(245,114,10,0.10), rgba(245,114,10,0.06));
    border: 1px solid rgba(245,114,10,0.20);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
}

.faq-accordion .accordion-button {
    background: var(--surface) !important;
    color: var(--text) !important;
    border: none;
    font-weight: 600;
}
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--brand) !important;
    box-shadow: none;
}
.faq-accordion .accordion-button::after {
    filter: invert(1);
}
.faq-accordion .accordion-body {
    background: rgba(255,255,255,0.02);
    color: var(--text-soft);
    border-top: 1px solid var(--border);
}
.faq-accordion .accordion-item {
    background: var(--surface);
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 0.5rem;
}

.toc-nav { position: sticky; top: 80px; }
.toc-nav a {
    display: block;
    padding: 0.35rem 0.75rem;
    color: var(--text-soft);
    font-size: var(--text-sm);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.15s;
}
.toc-nav a:hover,
.toc-nav a.active {
    color: var(--brand);
    border-left-color: var(--brand);
}

.legal-body h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.legal-body h2:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
.legal-body p { color: var(--text-soft); line-height: 1.75; margin-bottom: 1rem; }
.legal-body ul { color: var(--text-soft); line-height: 1.75; }
.legal-body strong { color: var(--text); }

.page-section { margin-bottom: 4rem; }
.page-section:last-child { margin-bottom: 0; }

.seller-hero {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
}
.seller-avatar-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--brand);
}

.filter-bar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.25rem;
}

.mystery-band {
    background: linear-gradient(135deg, rgba(245,114,10,0.15), rgba(245,114,10,0.08));
    border: 1px solid rgba(245,114,10,0.25);
    border-radius: 24px;
    padding: 3.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-band {
    background: linear-gradient(90deg, rgba(245,114,10,0.08), rgba(245,114,10,0.05));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}
.stat-item { text-align: center; }
.stat-value {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    font-family: "Space Grotesk", sans-serif;
    color: var(--brand);
}
.stat-label { color: var(--text-soft); font-size: var(--text-sm); }

.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(245,114,10,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5720A;
    flex-shrink: 0;
}

.refund-timeline {
    border-left: 2px solid var(--border);
    padding-left: 1.5rem;
    margin-left: 0.5rem;
}
.refund-timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
}
.refund-timeline-item::before {
    content: '';
    position: absolute;
    left: -1.75rem;
    top: 0.35rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand);
    border: 2px solid var(--surface);
}

/* ── Beta Banner ── */
.beta-banner {
    background: linear-gradient(90deg, #1a0700 0%, #2d0f00 100%);
    border-bottom: 1px solid rgba(245,114,10,0.35);
    padding: 0.45rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    position: relative;
    transition: opacity 0.3s ease;
    z-index: 1100;
}
.beta-banner-inner {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    justify-content: center;
}
.beta-badge-pill {
    background: #F5720A;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.55rem;
    border-radius: 20px;
    text-transform: uppercase;
    flex-shrink: 0;
}
.beta-banner-text {
    font-size: 0.82rem;
    color: rgba(255,240,225,0.88);
}
.beta-banner-link {
    color: #F5720A;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.beta-banner-link:hover { color: #ff8c2f; }
.beta-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,240,225,0.55);
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.25rem;
    transition: color 0.15s;
}
.beta-banner-close:hover { color: #fff; }

/* ── Beta logo badge ── */
.beta-logo-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    background: #F5720A;
    color: #fff;
    padding: 0.1rem 0.4rem;
    border-radius: 10px;
    align-self: flex-start;
    margin-top: 4px;
    flex-shrink: 0;
}
