/* ============================================================
   DALLAS AUCTIONS — THEME & GLOBAL STYLES
   Aesthetic: Refined Luxury Automotive
   Fonts: Plus Jakarta Sans (body) + Outfit (headings)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---- LIGHT THEME (default) ---- */
:root, [data-theme="light"] {
    --bg-body: #F4F6F9;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAFBFC;
    --bg-sidebar: #0F1D35;
    --bg-sidebar-hover: #162847;
    --bg-sidebar-active: #1A3258;
    --bg-header: #FFFFFF;
    --bg-input: #FFFFFF;
    --bg-modal: #FFFFFF;
    --bg-dropdown: #FFFFFF;
    --bg-table-stripe: #F8FAFC;
    --bg-table-hover: #EEF2F7;
    --bg-badge: #F0F3F7;
    --bg-hero: linear-gradient(135deg, #0F1D35 0%, #1B3A5C 50%, #0F1D35 100%);

    --text-primary: #1A1D26;
    --text-secondary: #5A6478;
    --text-tertiary: #8E95A7;
    --text-sidebar: #A3B1CC;
    --text-sidebar-active: #FFFFFF;
    --text-sidebar-heading: #5A6E8A;
    --text-on-accent: #FFFFFF;
    --text-on-hero: #FFFFFF;

    --accent: #C8963E;
    --accent-hover: #B5842E;
    --accent-light: rgba(200, 150, 62, 0.1);
    --accent-blue: #2563EB;
    --accent-blue-light: rgba(37, 99, 235, 0.08);

    --status-success: #059669;
    --status-success-bg: #ECFDF5;
    --status-warning: #D97706;
    --status-warning-bg: #FFFBEB;
    --status-danger: #DC2626;
    --status-danger-bg: #FEF2F2;
    --status-info: #2563EB;
    --status-info-bg: #EFF6FF;
    --status-draft: #6B7280;
    --status-draft-bg: #F3F4F6;

    --border: #E2E8F0;
    --border-light: #F1F5F9;
    --border-input: #CBD5E1;
    --border-input-focus: #C8963E;

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.06), 0 4px 10px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.08);

    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    --sidebar-width: 260px;
    --sidebar-collapsed: 72px;
    --header-height: 64px;
    --transition: 0.2s ease;
}

/* ---- DARK THEME ---- */
[data-theme="dark"] {
    --bg-body: #0B0F19;
    --bg-card: #141825;
    --bg-card-hover: #1A1F30;
    --bg-sidebar: #0D1117;
    --bg-sidebar-hover: #161B26;
    --bg-sidebar-active: #1C2333;
    --bg-header: #141825;
    --bg-input: #1A1F30;
    --bg-modal: #1A1F30;
    --bg-dropdown: #1A1F30;
    --bg-table-stripe: #111520;
    --bg-table-hover: #1A1F30;
    --bg-badge: #1C2333;
    --bg-hero: linear-gradient(135deg, #0B0F19 0%, #141825 50%, #0B0F19 100%);

    --text-primary: #E2E8F0;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;
    --text-sidebar: #8B9DC3;
    --text-sidebar-active: #FFFFFF;
    --text-sidebar-heading: #475569;

    --accent: #D4A54A;
    --accent-hover: #C8963E;
    --accent-light: rgba(212, 165, 74, 0.12);

    --status-success-bg: rgba(5, 150, 105, 0.12);
    --status-warning-bg: rgba(217, 119, 6, 0.12);
    --status-danger-bg: rgba(220, 38, 38, 0.12);
    --status-info-bg: rgba(37, 99, 235, 0.12);
    --status-draft-bg: rgba(107, 114, 128, 0.15);

    --border: #1E293B;
    --border-light: #1A2234;
    --border-input: #2D3748;
    --border-input-focus: #D4A54A;

    --shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.25);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.35);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.4);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition), color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-tertiary); }

/* ---- UTILITY CLASSES ---- */
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-secondary) !important; }
.text-tertiary { color: var(--text-tertiary) !important; }
.bg-card { background: var(--bg-card) !important; }

.card-da {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
}
.card-da:hover { box-shadow: var(--shadow-md); }
.card-da .card-body { padding: 24px; }

/* ---- STATUS BADGES ---- */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.badge-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}
.badge-success { background: var(--status-success-bg); color: var(--status-success); }
.badge-success::before { background: var(--status-success); }
.badge-warning { background: var(--status-warning-bg); color: var(--status-warning); }
.badge-warning::before { background: var(--status-warning); }
.badge-danger { background: var(--status-danger-bg); color: var(--status-danger); }
.badge-danger::before { background: var(--status-danger); }
.badge-info { background: var(--status-info-bg); color: var(--status-info); }
.badge-info::before { background: var(--status-info); }
.badge-draft { background: var(--status-draft-bg); color: var(--status-draft); }
.badge-draft::before { background: var(--status-draft); }

/* ---- BUTTONS ---- */
.btn-da {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}
.btn-da i { font-size: 15px; }

.btn-primary-da {
    background: var(--accent);
    color: #FFF;
}
.btn-primary-da:hover { background: var(--accent-hover); color: #FFF; transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary-da {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
}
.btn-secondary-da:hover { background: var(--bg-card-hover); border-color: var(--accent); color: var(--accent); }

.btn-outline-da {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
}
.btn-outline-da:hover { background: var(--accent); color: #FFF; }

.btn-danger-da { background: var(--status-danger); color: #FFF; }
.btn-danger-da:hover { background: #B91C1C; color: #FFF; }

.btn-success-da { background: var(--status-success); color: #FFF; }
.btn-success-da:hover { background: #047857; color: #FFF; }

.btn-sm-da { padding: 6px 14px; font-size: 12px; }
.btn-sm-da i { font-size: 13px; }

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}
.btn-icon:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-light); }

/* ---- FORM CONTROLS ---- */
.form-control-da {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 1px solid var(--border-input);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control-da:focus {
    outline: none;
    border-color: var(--border-input-focus);
    box-shadow: 0 0 0 3px var(--accent-light);
}
.form-control-da::placeholder { color: var(--text-tertiary); }

.form-label-da {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}
.form-label-da .required { color: var(--status-danger); }

select.form-control-da {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%235A6478' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

/* ---- TABLES ---- */
.table-da {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.table-da thead th {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    background: var(--bg-card);
    border-bottom: 2px solid var(--border);
    white-space: nowrap;
    text-align: left;
}
.table-da tbody td {
    padding: 14px 16px;
    font-size: 13px;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}
.table-da tbody tr { transition: background var(--transition); }
.table-da tbody tr:hover { background: var(--bg-table-hover); }
.table-da tbody tr:nth-child(even) { background: var(--bg-table-stripe); }
.table-da tbody tr:nth-child(even):hover { background: var(--bg-table-hover); }

/* ---- STAT CARDS ---- */
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-xs);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-radius: 0 4px 4px 0;
}
.stat-card.sc-gold::after { background: var(--accent); }
.stat-card.sc-blue::after { background: var(--accent-blue); }
.stat-card.sc-green::after { background: var(--status-success); }
.stat-card.sc-red::after { background: var(--status-danger); }
.stat-card.sc-orange::after { background: var(--status-warning); }
.stat-card.sc-purple::after { background: #7C3AED; }

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 20px;
    flex-shrink: 0;
}
.stat-icon.si-gold { background: var(--accent-light); color: var(--accent); }
.stat-icon.si-blue { background: var(--accent-blue-light); color: var(--accent-blue); }
.stat-icon.si-green { background: var(--status-success-bg); color: var(--status-success); }
.stat-icon.si-red { background: var(--status-danger-bg); color: var(--status-danger); }
.stat-icon.si-orange { background: var(--status-warning-bg); color: var(--status-warning); }
.stat-icon.si-purple { background: rgba(124, 58, 237, 0.1); color: #7C3AED; }

.stat-info { flex: 1; }
.stat-label { font-size: 12px; color: var(--text-tertiary); font-weight: 500; margin-bottom: 4px; }
.stat-value { font-family: 'Outfit', sans-serif; font-size: 24px; font-weight: 700; color: var(--text-primary); line-height: 1; }
.stat-change { font-size: 11px; margin-top: 6px; font-weight: 600; }
.stat-change.up { color: var(--status-success); }
.stat-change.down { color: var(--status-danger); }

/* ---- EMPTY STATE ---- */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-tertiary);
}
.empty-state i { font-size: 48px; margin-bottom: 16px; opacity: 0.4; }
.empty-state h5 { color: var(--text-secondary); margin-bottom: 8px; }

/* ---- PAGINATION ---- */
.pagination-da {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
}
.pagination-da li a,
.pagination-da li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all var(--transition);
    text-decoration: none;
}
.pagination-da li a:hover { background: var(--accent-light); color: var(--accent); }
.pagination-da li.active span { background: var(--accent); color: #FFF; }

/* ---- SEARCH & FILTER BAR ---- */
.filter-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 0;
}
.search-input-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}
.search-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    font-size: 15px;
}
.search-input-wrap input {
    padding-left: 40px;
}
.filter-select {
    min-width: 160px;
}

/* ---- MODAL ---- */
.modal-da .modal-content {
    background: var(--bg-modal);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}
.modal-da .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}
.modal-da .modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.modal-da .modal-body { padding: 24px; }
.modal-da .modal-footer { border-top: 1px solid var(--border); padding: 16px 24px; }
.modal-da .btn-close { filter: var(--text-primary); }

/* ---- TOAST ---- */
.toast-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast-da {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideInRight 0.3s ease;
}
.toast-da.toast-success { border-left: 4px solid var(--status-success); }
.toast-da.toast-error { border-left: 4px solid var(--status-danger); }
.toast-da.toast-warning { border-left: 4px solid var(--status-warning); }

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ---- PAGE HEADER ---- */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.page-header h1 {
    font-size: 24px;
    font-weight: 700;
}
.page-header .breadcrumb {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 4px;
}
.page-header .breadcrumb a { color: var(--text-secondary); }
.page-header .breadcrumb a:hover { color: var(--accent); }
.page-header .breadcrumb span { color: var(--text-tertiary); margin: 0 6px; }

/* ---- TABS ---- */
.tabs-da {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 24px;
}
.tab-da {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tab-da:hover { color: var(--text-primary); }
.tab-da.active { color: var(--accent); border-bottom-color: var(--accent); }

/* ---- ACTIVITY TIMELINE ---- */
.timeline-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    position: relative;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 17px;
    top: 40px;
    bottom: -4px;
    width: 1px;
    background: var(--border);
}
.timeline-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.timeline-content { flex: 1; }
.timeline-content p { font-size: 13px; color: var(--text-primary); margin: 0; }
.timeline-content small { font-size: 11px; color: var(--text-tertiary); }

/* ---- STEPPER / WIZARD ---- */
.stepper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 16px;
}
.step {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}
.step:not(:last-child)::after {
    content: '';
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 12px;
}
.step.active:not(:last-child)::after { background: var(--accent); }
.step .step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-badge);
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all var(--transition);
}
.step.active .step-num { background: var(--accent); color: #FFF; }
.step.done .step-num { background: var(--status-success); color: #FFF; }
.step .step-label { font-size: 13px; font-weight: 600; color: var(--text-tertiary); white-space: nowrap; }
.step.active .step-label { color: var(--text-primary); }

/* ---- ACCORDION ---- */
.accordion-da .acc-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
    transition: all var(--transition);
}
.accordion-da .acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    background: var(--bg-card);
    transition: background var(--transition);
    gap: 16px;
}
.accordion-da .acc-header:hover { background: var(--bg-card-hover); }
.accordion-da .acc-header .acc-toggle { transition: transform 0.2s; color: var(--text-tertiary); }
.accordion-da .acc-item.open .acc-toggle { transform: rotate(180deg); }
.accordion-da .acc-body {
    display: none;
    padding: 0 20px 20px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-light);
}
.accordion-da .acc-item.open .acc-body { display: block; }

/* ---- IMAGE GALLERY / CAROUSEL ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
}
.gallery-thumb {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
}
.gallery-thumb:hover { border-color: var(--accent); transform: scale(1.02); }
.gallery-thumb.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-light); }
.gallery-main {
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

/* ---- VEHICLE CARD (Public) ---- */
.vehicle-card-pub {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}
.vehicle-card-pub:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.vehicle-card-pub .vcp-image {
    height: 180px;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.vehicle-card-pub .vcp-image i { font-size: 48px; color: var(--text-tertiary); opacity: 0.3; }
.vehicle-card-pub .vcp-body { padding: 16px; }
.vehicle-card-pub .vcp-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.vehicle-card-pub .vcp-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}
.vehicle-card-pub .vcp-spec {
    font-size: 11px;
    color: var(--text-secondary);
    background: var(--bg-badge);
    padding: 3px 8px;
    border-radius: var(--radius-full);
}
.vehicle-card-pub .vcp-price {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}
.vehicle-card-pub .vcp-footer {
    padding: 12px 16px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-tertiary);
}

/* ---- BLOG CARD ---- */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card .blog-image {
    height: 200px;
    background: var(--bg-body);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-card .blog-image i { font-size: 40px; color: var(--text-tertiary); opacity: 0.25; }
.blog-card .blog-body { padding: 20px; }
.blog-card .blog-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-tertiary); margin-bottom: 10px; }
.blog-card .blog-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.blog-card .blog-body h3 a { color: var(--text-primary); text-decoration: none; }
.blog-card .blog-body h3 a:hover { color: var(--accent); }
.blog-card .blog-excerpt { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 16px; }
.blog-card .blog-read-more { font-size: 13px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; }

/* ---- VIEW TOGGLE ---- */
.view-toggle {
    display: inline-flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}
.view-toggle button {
    padding: 8px 16px;
    border: none;
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.view-toggle button:not(:last-child) { border-right: 1px solid var(--border); }
.view-toggle button.active { background: var(--accent); color: #FFF; }
.view-toggle button:hover:not(.active) { background: var(--bg-card-hover); }

/* ---- BLACKLIST BANNER ---- */
.blacklist-banner {
    background: var(--status-danger-bg);
    border: 1px solid rgba(220,38,38,0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}
.blacklist-banner i { font-size: 20px; color: var(--status-danger); margin-top: 2px; }
.blacklist-banner .bl-text h6 { font-size: 14px; font-weight: 700; color: var(--status-danger); margin-bottom: 4px; }
.blacklist-banner .bl-text p { font-size: 13px; color: var(--text-secondary); margin: 0; }

/* ---- STEP WIZARD ---- */
.wizard-steps {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
}
.wizard-step {
    flex: 1;
    text-align: center;
    padding: 16px 12px;
    position: relative;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
    background: var(--bg-body);
    border-bottom: 3px solid var(--border);
}
.wizard-step.active { color: var(--accent); border-bottom-color: var(--accent); background: var(--bg-card); }
.wizard-step.completed { color: var(--status-success); border-bottom-color: var(--status-success); }
.wizard-step .step-num {
    display: inline-flex; width: 24px; height: 24px; border-radius: 50%; background: var(--border);
    color: var(--text-tertiary); align-items: center; justify-content: center; font-size: 12px; margin-right: 8px;
}
.wizard-step.active .step-num { background: var(--accent); color: #fff; }
.wizard-step.completed .step-num { background: var(--status-success); color: #fff; }

/* ---- ACCORDION ---- */
.accordion-da { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item-da { border-bottom: 1px solid var(--border); }
.accordion-item-da:last-child { border-bottom: none; }
.accordion-header-da {
    display: flex; align-items: center; justify-content: space-between; padding: 16px 20px;
    background: var(--bg-card); cursor: pointer; transition: background var(--transition); gap: 12px;
}
.accordion-header-da:hover { background: var(--bg-card-hover); }
.accordion-body-da { padding: 0 20px 20px; display: none; }
.accordion-item-da.open .accordion-body-da { display: block; }
.accordion-item-da.open .accordion-chevron { transform: rotate(180deg); }
.accordion-chevron { transition: transform 0.2s; color: var(--text-tertiary); }

/* ---- VEHICLE GRID CARDS ---- */
.vehicle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.vehicle-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    overflow: hidden; transition: all 0.3s ease; cursor: pointer;
}
.vehicle-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.vehicle-card-img {
    width: 100%; height: 180px; background: var(--bg-body); display: flex;
    align-items: center; justify-content: center; border-bottom: 1px solid var(--border);
}
.vehicle-card-img i { font-size: 48px; color: var(--text-tertiary); opacity: 0.3; }
.vehicle-card-body { padding: 16px; }
.vehicle-card-body h5 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.vehicle-card-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.vehicle-card-specs span {
    font-size: 11px; padding: 3px 8px; background: var(--bg-badge); border-radius: var(--radius-full); color: var(--text-secondary);
}
.vehicle-card-price { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--accent); }

/* ---- BLOG CARDS ---- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-xl);
    overflow: hidden; transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    width: 100%; height: 200px; background: var(--bg-body); display: flex;
    align-items: center; justify-content: center; border-bottom: 1px solid var(--border);
}
.blog-card-img i { font-size: 48px; color: var(--text-tertiary); opacity: 0.2; }
.blog-card-body { padding: 20px; }
.blog-card-body .blog-meta { font-size: 12px; color: var(--text-tertiary); margin-bottom: 10px; display: flex; gap: 16px; }
.blog-card-body h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card-body h4 a { color: var(--text-primary); text-decoration: none; }
.blog-card-body h4 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }

/* ---- VIEW TOGGLE ---- */
.view-toggle { display: inline-flex; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.view-toggle-btn {
    padding: 8px 16px; font-size: 13px; font-weight: 600; border: none; background: var(--bg-card);
    color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; gap: 6px; transition: all var(--transition);
}
.view-toggle-btn.active { background: var(--accent); color: #fff; }
.view-toggle-btn:not(.active):hover { background: var(--bg-card-hover); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .filter-bar { flex-direction: column; align-items: stretch; }
    .page-header { flex-direction: column; align-items: flex-start; }
    .stat-value { font-size: 20px; }
    .vehicle-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}
