/* ═══════════════════════════════════════════
   CARPOINT — Monochrome Design System
   Apple / Linear / Stripe minimal luxury
   ═══════════════════════════════════════════ */

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

:root {
    --bg: #F7F7F5;
    --surface: #FFFFFF;
    --surface-hover: #F3F4F6;
    --text: #111111;
    --text-secondary: #6B7280;
    --text-tertiary: #9CA3AF;
    --border: #EAEAEA;
    --border-hover: #D1D5DB;
    --radius: 24px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --shadow: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.07);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.1);
    --transition: 0.2s cubic-bezier(0.16,1,0.3,1);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

main { flex: 1; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #D1D5DB; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }

/* ─── Navbar ─── */
.navbar-carpoint,
.navbar-dashboard {
    background: rgba(255,255,255,0.78) !important;
    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.navbar-carpoint .navbar-brand,
.navbar-dashboard .navbar-brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}

.navbar-carpoint .nav-link,
.navbar-dashboard .nav-link {
    color: var(--text) !important;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 1rem !important;
    border-radius: 10px;
    transition: var(--transition);
}

.navbar-carpoint .nav-link:hover,
.navbar-dashboard .nav-link:hover {
    color: var(--text) !important;
    background: var(--surface-hover);
}

.navbar-carpoint .nav-link i,
.navbar-dashboard .nav-link i { margin-right: 6px; }

/* ─── Hero ─── */
.hero-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: #1A1A1A;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.04) 0%, transparent 60%);
}

.hero-section .container { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 1rem;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: #FFFFFF;
}

.hero-section .lead {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    font-weight: 400;
}

.search-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius);
    padding: 6px;
    max-width: 620px;
    margin: 0 auto;
}

.search-card .input-group { border-radius: 14px; overflow: hidden; }

.search-card .form-control {
    border: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 1rem;
    color: white;
    height: auto;
}

.search-card .form-control::placeholder { color: rgba(255,255,255,0.3); }
.search-card .form-control:focus { box-shadow: none; background: transparent; color: white; }

.search-card .btn-search {
    background: #FFFFFF;
    color: #111111;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    margin: 4px;
    transition: var(--transition);
}

.search-card .btn-search:hover {
    background: #EAEAEA;
    transform: translateY(-1px);
}

.hero-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.hero-links a {
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hero-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── Section Titles ─── */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.section-title .icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    background: var(--surface-hover);
    color: var(--text);
    border-radius: 10px;
    font-size: 1rem;
}

.section-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.section-link:hover { color: var(--text); gap: 10px; }

/* ─── Stat Cards ─── */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.stat-card-modern {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.stat-card-modern .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--text);
}

.stat-card-modern .stat-number {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    color: var(--text);
}

.stat-card-modern .stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* ─── Car Cards ─── */
.car-card {
    border: none;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.car-card .card-img-top {
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .card-img-top { transform: scale(1.08); }

.car-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.car-card .card-img-wrapper .badge-featured {
    position: absolute;
    top: 10px; left: 10px;
    background: #111111;
    color: white;
    font-weight: 600;
    font-size: 0.68rem;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}

.badge-featured {
    background: #111111;
    color: white;
    font-weight: 600;
    font-size: 0.68rem;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.car-card .card-body { padding: 18px; }

.car-card .car-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text);
}

.car-card .car-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.car-card .car-specs {
    display: flex;
    flex-wrap: nowrap;
    gap: 2px 8px;
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.car-card .car-specs span {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.car-card .car-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

.car-card .car-showroom {
    font-size: 0.78rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.car-card .btn-detail {
    background: var(--surface-hover);
    color: var(--text);
    border: none;
    font-weight: 500;
    font-size: 0.78rem;
    padding: 4px 14px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.car-card .btn-detail:hover {
    background: #111111;
    color: white;
    transform: translateX(2px);
}

/* ─── Showroom Cards ─── */
.showroom-card {
    border: none;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    padding: 32px 24px;
}

.showroom-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.showroom-card .avatar-wrapper {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.8rem;
    color: var(--text-secondary);
    overflow: hidden;
}
.showroom-card .avatar-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.showroom-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.showroom-card .city { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 8px; }
.showroom-card .count { font-size: 0.85rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 14px; }
.showroom-card .btn-visit {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 6px 20px;
    border-radius: 10px;
    transition: var(--transition);
    text-decoration: none;
}
.showroom-card .btn-visit:hover { background: #111111; border-color: #111111; color: white; }

/* ─── CTA Section ─── */
.cta-section {
    background: #1A1A1A;
    position: relative;
    overflow: hidden;
    padding: 64px 0;
}

.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { font-weight: 800; letter-spacing: -0.5px; color: white; }
.cta-section p { color: rgba(255,255,255,0.5); }
.cta-section .btn-cta {
    background: #FFFFFF;
    color: #111111;
    font-weight: 600;
    padding: 14px 40px;
    border-radius: 12px;
    border: none;
    transition: var(--transition);
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cta-section .btn-cta:hover {
    background: #EAEAEA;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* ─── Footer ─── */
.footer-carpoint {
    background: #1A1A1A;
    padding: 48px 0 24px;
}

.footer-carpoint h5 {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.footer-carpoint p, .footer-carpoint li { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-carpoint a { color: rgba(255,255,255,0.35); text-decoration: none; transition: var(--transition); }
.footer-carpoint a:hover { color: white; }
.footer-carpoint hr { border-color: rgba(255,255,255,0.06); }

.footer-carpoint .footer-bottom {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    text-align: center;
}

/* ─── Breadcrumb ─── */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}
.breadcrumb-custom a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--text); }
.breadcrumb-custom .active { color: var(--text-tertiary); }
.breadcrumb-custom .sep { color: var(--text-tertiary); margin: 0 8px; }

/* ─── Filters ─── */
.filter-panel {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.filter-panel .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.filter-panel .form-control,
.filter-panel .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.88rem;
    padding: 10px 14px;
    transition: var(--transition);
}

.filter-panel .form-control:focus,
.filter-panel .form-select:focus {
    border-color: var(--text);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.filter-panel .btn-filter {
    background: #111111;
    color: white;
    border: none;
    font-weight: 500;
    padding: 10px 28px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}

.filter-panel .btn-filter:hover { opacity: 0.9; transform: translateY(-1px); }

.filter-panel .btn-reset {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.88rem;
}
.filter-panel .btn-reset:hover { border-color: var(--text-secondary); color: var(--text); }

/* ─── Toolbar ─── */
.toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.toolbar .result-count {
    font-size: 0.88rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.toolbar .result-count strong { color: var(--text); }

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-actions .form-select-sort {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
    padding: 8px 30px 8px 12px;
    background-color: var(--surface);
    cursor: pointer;
}

.view-toggle .btn {
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 10px;
    font-size: 0.85rem;
    transition: var(--transition);
}
.view-toggle .btn:hover { border-color: var(--text); color: var(--text); }
.view-toggle .btn.active { background: #111111; border-color: #111111; color: white; }

/* ─── List View ─── */
.list-card {
    background: var(--surface);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    margin-bottom: 12px;
}
.list-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.list-card .row { align-items: center; }
.list-card .img-col { padding: 0; }
.list-card .img-col img { height: 100%; min-height: 160px; object-fit: cover; }
.list-card .info-col { padding: 16px 20px; }
.list-card .list-title { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.list-card .list-price { font-size: 1.15rem; font-weight: 700; color: var(--text); }
.list-card .list-specs { display: flex; flex-wrap: wrap; gap: 6px 16px; font-size: 0.82rem; color: var(--text-secondary); }
.list-card .list-specs span { display: inline-flex; align-items: center; gap: 4px; }

/* ─── Detail Page ─── */
.gallery-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
}
.gallery-wrapper .carousel-item img {
    height: 450px;
    object-fit: cover;
}
.gallery-thumbs { display: flex; gap: 8px; margin-top: 8px; }
.gallery-thumbs img {
    width: calc(20% - 6px);
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 2px solid transparent;
}
.gallery-thumbs img:hover,
.gallery-thumbs img.active { opacity: 1; border-color: #111111; }

.info-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 32px;
}

.info-card h1 { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.3px; color: var(--text); }
.info-card .price-display { font-size: 1.6rem; font-weight: 800; color: var(--text); }

.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 20px 0;
}

.spec-item {
    background: var(--surface-hover);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
}

.spec-item .spec-icon { font-size: 1.3rem; color: var(--text-secondary); }
.spec-item .spec-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.spec-item .label { font-size: 0.6rem; text-transform: none; letter-spacing: 0.3px; color: var(--text-secondary); font-weight: 500; }
.spec-item .value { font-size: 0.95rem; font-weight: 700; color: var(--text); }

.sidebar-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    position: sticky;
    top: 80px;
}

.sidebar-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--text); }

.price-box {
    text-align: center;
    padding: 16px;
    background: #111111;
    border-radius: var(--radius-sm);
    color: white;
}
.price-box .label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); font-weight: 600; }
.price-box .price-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); font-weight: 600; margin-bottom: 2px; }
.price-box .price { font-size: 1.4rem; font-weight: 800; margin-top: 4px; }
.price-note { font-size: 0.6rem; color: var(--text-secondary); margin-top: 4px; font-style: italic; }

.kredit-box .label { font-size: 0.78rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.kredit-table {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.kredit-header {
    display: grid;
    grid-template-columns: 64px 1fr 1fr 1fr;
    background: #111111;
    color: white;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 8px 12px;
    text-align: center;
    align-items: center;
}
.kredit-row {
    display: grid;
    grid-template-columns: 64px 1fr 1fr 1fr;
    padding: 8px 12px;
    font-size: 0.82rem;
    text-align: center;
    border-top: 1px solid var(--border);
    align-items: center;
}
.kredit-row:nth-child(even) { background: var(--surface-hover); }
.kredit-row strong { color: var(--text); font-size: 0.9rem; }
.kredit-logo-cell { display: flex; justify-content: center; align-items: center; }
.kredit-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 6px; }

.sidebar-card .form-control,
.sidebar-card .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    font-size: 0.88rem;
    padding: 10px 14px;
    transition: var(--transition);
}
.sidebar-card .form-control:focus { border-color: #111111; box-shadow: 0 0 0 3px rgba(0,0,0,0.05); }

.sidebar-card .btn-lead {
    background: #111111;
    color: white;
    font-weight: 600;
    border: none;
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}
.sidebar-card .btn-lead:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.sidebar-card .btn-fav {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-xs);
    font-weight: 500;
    font-size: 0.88rem;
    transition: var(--transition);
}
.sidebar-card .btn-fav.active { background: #FEF2F2; color: #DC2626; border-color: #FCA5A5; }
.sidebar-card .btn-fav:not(.active) { background: var(--surface); border: 1.5px solid var(--border); color: var(--text-secondary); }
.sidebar-card .btn-fav:not(.active):hover { border-color: #111111; color: #111111; }

.sidebar-card .btn-share {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-xs);
    background: var(--surface-hover);
    border: none;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.sidebar-card .btn-share:hover { background: var(--border); }

.showroom-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--surface-hover);
    border-radius: var(--radius-sm);
    margin-top: 12px;
}
.showroom-mini .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex;
    align-items: center; justify-content: center;
    color: var(--text-secondary); font-size: 1.2rem;
    flex-shrink: 0;
}
.showroom-mini .info h6 { font-size: 0.9rem; font-weight: 700; margin: 0; color: var(--text); }
.showroom-mini .info small { color: var(--text-secondary); font-size: 0.78rem; }

/* ─── Showroom Page ─── */
.showroom-banner {
    border-radius: var(--radius);
    overflow: hidden;
    height: 260px;
    position: relative;
    margin-bottom: 24px;
}
.showroom-banner img { width: 100%; height: 100%; object-fit: cover; }
.showroom-banner .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.showroom-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.showroom-profile .logo-wrap {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--surface-hover);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: var(--text-secondary);
    flex-shrink: 0;
    overflow: hidden;
}
.showroom-profile .logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.showroom-profile .info h2 { font-size: 1.4rem; font-weight: 800; color: var(--text); }
.showroom-profile .info .detail { color: var(--text-secondary); font-size: 0.88rem; display: flex; align-items: center; gap: 6px; }
.showroom-profile .actions { margin-left: auto; }

.showroom-desc {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
    margin-bottom: 24px;
}
.showroom-desc h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; color: var(--text); }
.showroom-desc p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; line-height: 1.7; }

/* ─── Pagination ─── */
.pagination-modern { display: flex; justify-content: center; gap: 6px; margin-top: 32px; }
.pagination-modern .page-item { list-style: none; }
.pagination-modern .page-link {
    display: flex; align-items: center; justify-content: center;
    min-width: 38px; height: 38px;
    border-radius: var(--radius-xs);
    border: 1.5px solid var(--border);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    padding: 0 12px;
}
.pagination-modern .page-link:hover { border-color: #111111; color: #111111; }
.pagination-modern .active .page-link { background: #111111; border-color: #111111; color: white; }
.pagination-modern .disabled .page-link { opacity: 0.4; pointer-events: none; }

/* ─── Auth Pages ─── */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding-top: 40px;
}

.auth-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 40px;
}

.auth-card h3 {
    font-weight: 800;
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text);
}

.auth-card .form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.auth-card .form-control,
.auth-card .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.auth-card .form-control:focus,
.auth-card .form-select:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.auth-card .btn-auth {
    background: #111111;
    color: white;
    font-weight: 600;
    padding: 14px;
    border-radius: var(--radius-xs);
    border: none;
    width: 100%;
    transition: var(--transition);
}

.auth-card .btn-auth:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.auth-card .auth-footer {
    text-align: center;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.auth-card .auth-footer a { color: var(--text); font-weight: 600; text-decoration: none; border-bottom: 1px solid transparent; }
.auth-card .auth-footer a:hover { border-bottom-color: var(--text); }

/* ─── Google Button & Divider ─── */
.google-divider {
    display: flex;
    align-items: center;
    margin: 20px 0 16px;
    gap: 12px;
}
.google-divider::before,
.google-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.google-divider span {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--surface);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.btn-google:hover {
    background: var(--surface-hover);
    border-color: var(--border-hover);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* ═══════════════════════════════════════════
   DASHBOARD / ADMIN — Monochrome Layout
   ═══════════════════════════════════════════ */

/* ── Dashboard Layout ── */
.dashboard-layout {
    display: flex;
    min-height: calc(100vh - 60px);
    background: var(--bg);
}

/* ── Dashboard Sidebar ── */
.dashboard-sidebar {
    width: 260px;
    background: var(--surface);
    padding: 20px 14px;
    flex-shrink: 0;
    position: sticky;
    top: 60px;
    height: calc(100vh - 60px);
    overflow-y: auto;
    border-right: 1px solid var(--border);
}

.dashboard-sidebar::-webkit-scrollbar { width: 4px; }
.dashboard-sidebar::-webkit-scrollbar-track { background: transparent; }
.dashboard-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.dashboard-sidebar .sidebar-brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    padding: 8px 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}

.dashboard-sidebar .sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    background: var(--surface-hover);
}

.sidebar-avatar {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: #111111;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.sidebar-user-info { flex: 1; min-width: 0; }
.sidebar-user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-user-saldo {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}
.verified-badge-avatar {
    position: absolute; bottom: -4px; right: -6px;
    font-size: 0.8rem; color: #2563EB;
    background: white; border-radius: 50%;
    line-height: 0; padding: 1px;
}
.verified-badge-name {
    font-size: 0.72rem; color: #2563EB; margin-left: 2px;
    vertical-align: middle;
}
.sidebar-user-role {
    font-size: 0.68rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 1px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dashboard-sidebar .nav-label {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-tertiary);
    padding: 16px 12px 6px;
}

.dashboard-sidebar .nav-item { list-style: none; margin-bottom: 1px; }
.dashboard-sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}
.dashboard-sidebar .nav-link:hover {
    color: var(--text);
    background: var(--surface-hover);
}
.dashboard-sidebar .nav-link.active {
    color: #FFFFFF;
    background: #111111;
    font-weight: 600;
}
.dashboard-sidebar .nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    color: var(--text-tertiary);
    transition: var(--transition);
}
.dashboard-sidebar .nav-link.active i,
.dashboard-sidebar .nav-link:hover i { color: inherit; }

/* Sidebar Submenu */
.nav-item-dropdown .nav-link { cursor: pointer; justify-content: space-between; }
.nav-item-dropdown .nav-link .bi-chevron-down { font-size: 0.65rem; color: var(--text-tertiary); transition: transform 0.2s ease; }
.submenu { list-style: none; padding: 0; margin: 1px 0 2px 8px; display: none; }
.submenu.show { display: block; }
.submenu .sub-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px 7px 36px;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}
.submenu .sub-link::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--border);
    transform: translateY(-50%);
}
.submenu .sub-link:hover {
    color: var(--text);
    background: var(--surface-hover);
}
.submenu .sub-link:hover::before { background: var(--text); }
.submenu .sub-link.active {
    color: #FFFFFF;
    background: #111111;
    font-weight: 600;
}
.submenu .sub-link.active::before { background: white; }

.sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 8px;
}

/* ── Dashboard Content ── */
.dashboard-content {
    flex: 1;
    padding: 36px 44px;
    max-width: calc(100% - 260px);
}

.dashboard-content .page-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}

.dashboard-content .page-subtitle {
    color: var(--text-tertiary);
    font-size: 0.82rem;
    font-weight: 400;
    margin-bottom: 28px;
}

/* ── Metric Cards ── */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}
.metric-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: default;
    border: 1px solid var(--border);
}
.metric-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--border-hover);
}
.metric-card .metric-icon {
    width: 48px; height: 48px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    background: var(--surface-hover);
    color: var(--text-secondary);
    transition: var(--transition);
}
.metric-card:hover .metric-icon { transform: scale(1.05); }
.metric-card .metric-body .number {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.8px;
    color: var(--text);
}
.metric-card .metric-body .label {
    font-size: 0.72rem;
    color: var(--text-tertiary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 2px;
}

/* ── Dashboard Menu Grid ── */
.dash-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.dash-menu-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    display: block;
    border: 1px solid var(--border);
}
.dash-menu-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    border-color: var(--border-hover);
}
.dash-menu-card .icon-wrap {
    width: 44px; height: 44px;
    border-radius: 14px;
    background: var(--surface-hover);
    color: var(--text-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 14px;
}
.dash-menu-card:hover .icon-wrap {
    background: #111111;
    color: white;
}
.dash-menu-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.dash-menu-card p {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.4;
}

/* ── Table Styles ── */
.table-container {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 24px 28px;
    overflow-x: auto;
    border: 1px solid var(--border);
}
.table-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}
.table-toolbar h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}
.table-modern {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.85rem;
}
.table-modern thead th {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-tertiary);
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}
.table-modern tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #f5f5f5;
    color: var(--text);
    vertical-align: middle;
}
.table-modern tbody tr:last-child td { border-bottom: none; }
.table-modern tbody tr:hover { background: var(--surface-hover); }

.table-modern .badge-status,
.badge-status {
    display: inline-flex;
    align-items: center;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    gap: 4px;
}

.badge-status.active { background: #ECFDF5; color: #065F46; }
.badge-status.draft { background: #FEF3C7; color: #92400E; }
.badge-status.terjual { background: #F3F4F6; color: #475569; }
.badge-status.pending { background: #FEF3C7; color: #92400E; }
.badge-status.suspended { background: #FEF2F2; color: #991B1B; }
.badge-status.baru { background: #EFF6FF; color: #1E40AF; }
.badge-status.dihubungi { background: #ECFEFF; color: #155E75; }
.badge-status.negosiasi { background: #FEF3C7; color: #92400E; }
.badge-status.closing { background: #ECFDF5; color: #065F46; }
.badge-status.verified { background: #111111; color: white; }
.badge-status.superadmin { background: #111111; color: white; }
.badge-status.admin { background: #6B7280; color: white; }
.badge-status.basic { background: #F3F4F6; color: #475569; }

.table-img-thumb {
    width: 52px; height: 40px;
    object-fit: cover;
    border-radius: 8px;
}

.table-modern .btn-icon {
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-tertiary);
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.85rem;
}
.table-modern .btn-icon:hover { background: var(--surface-hover); color: var(--text); }
.table-modern .btn-icon.edit:hover { background: #EFF6FF; color: #2563EB; }
.table-modern .btn-icon.delete:hover { background: #FEF2F2; color: #DC2626; }
.table-modern .btn-icon.view:hover { background: #FEF3C7; color: #D97706; }
.table-modern .btn-icon.approve:hover { background: #ECFDF5; color: #16A34A; }

/* ── Buttons ── */
.btn-modern {
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--radius-xs);
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    text-decoration: none;
}
.btn-modern:hover { transform: translateY(-1px); }
.btn-modern.primary { background: #111111; color: white; }
.btn-modern.primary:hover { background: #000; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-modern.outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-modern.outline:hover { border-color: #111111; color: #111111; }

.btn-save {
    background: #111111;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-save:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    color: #fff;
}

.btn-action {
    width: 34px; height: 34px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    background: var(--surface-hover);
    color: var(--text-secondary);
    text-decoration: none;
}
.btn-action:hover { transform: scale(1.05); }
.btn-edit:hover { background: #EFF6FF; color: #2563EB; }
.btn-delete:hover { background: #FEF2F2; color: #DC2626; }
.btn-view:hover { background: #FEF3C7; color: #D97706; }

/* ── Form Controls ── */
.form-control,
.form-select {
    border-radius: 12px;
    border: 1.5px solid var(--border);
    padding: 10px 14px;
    font-size: 0.88rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--surface);
}
.form-control:focus,
.form-select:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
    outline: none;
}
.form-label {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--text);
    margin-bottom: 6px;
}

/* ── Modal ── */
.modal-content-modern {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-content-modern .modal-header {
    background: #111111;
    color: white;
    border: none;
    padding: 22px 28px;
    border-radius: 0;
}

.modal-content-modern .modal-header .btn-close { filter: brightness(0) invert(1); opacity: 0.6; }
.modal-content-modern .modal-header .btn-close:hover { opacity: 1; }
.modal-content-modern .modal-body { padding: 28px; }
.modal-content-modern .modal-footer {
    border-top: 1px solid var(--border);
    padding: 18px 28px;
}

.modal-content-modern .form-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.modal-content-modern .form-control,
.modal-content-modern .form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 10px 14px;
    font-size: 0.88rem;
    transition: var(--transition);
}

.modal-content-modern .form-control:focus,
.modal-content-modern .form-select:focus {
    border-color: #111111;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.modal-content-modern .btn-save {
    background: #111111;
    color: white;
    font-weight: 500;
    border: none;
    padding: 10px 28px;
    border-radius: var(--radius-xs);
    transition: var(--transition);
}
.modal-content-modern .btn-save:hover {
    background: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* ── Alert ── */
.alert-modern {
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-modern.alert-success { background: #ECFDF5; color: #065F46; }
.alert-modern.alert-danger { background: #FEF2F2; color: #991B1B; }
.alert-modern.alert-warning { background: #FEF3C7; color: #92400E; }
.alert-modern.alert-info { background: #EFF6FF; color: #1E40AF; }

/* ── Dropdown ── */
.dashboard-content .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    font-size: 0.85rem;
    padding: 6px;
}
.dashboard-content .dropdown-item {
    border-radius: 8px;
    padding: 8px 14px;
    transition: var(--transition);
}
.dashboard-content .dropdown-item:active,
.dashboard-content .dropdown-item:hover {
    background: var(--surface-hover);
    color: var(--text);
}

/* ── Sidebar Mobile Toggle ── */
.sidebar-toggle {
    position: fixed;
    top: 10px; right: 50px;
    z-index: 1050;
    width: 44px; height: 44px;
    border-radius: 14px;
    border: none;
    background: #111111;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: var(--transition);
}
.sidebar-toggle:hover { transform: scale(1.05); }
.sidebar-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1020;
    display: none;
    backdrop-filter: blur(4px);
}
.sidebar-overlay.show { display: block; }

/* ── SweetAlert Override ── */
.swal2-popup { border-radius: var(--radius) !important; font-family: 'Inter', sans-serif !important; }

/* ─── Notifikasi Bell ─── */
.dropdown-notif { position: relative; }
.dropdown-notif .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-secondary);
}
.dropdown-notif .nav-link:hover {
    background: var(--surface-hover);
    color: var(--text);
    transform: scale(1.05);
}
.dropdown-notif .nav-link i { font-size: 1.2rem; }
.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #DC2626;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    border-radius: 50px;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(220,38,38,0.4);
}
.notif-dropdown {
    width: 360px;
    max-height: 440px;
    overflow-y: auto;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 0;
    margin-top: 8px !important;
}
.notif-dropdown .dropdown-header {
    background: #111111;
    color: #fff;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 16px 16px 0 0;
}
.notif-item {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}
.notif-item:last-child { border-bottom: none; }
.notif-item:hover {
    background: var(--surface-hover);
    padding-left: 22px;
}
.notif-delete {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    border: none;
    background: transparent;
    color: var(--text-tertiary);
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
}
.notif-delete:hover {
    background: #FEF2F2;
    color: #DC2626;
}
.notif-item.unread {
    background: #FAFAFA;
    border-left: 3px solid #111111;
}
.notif-item.unread:hover { background: #F3F4F6; }
.notif-item .notif-title {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}
.notif-item .notif-msg { font-size: 0.75rem; color: var(--text-secondary); margin-top: 3px; line-height: 1.4; }
.notif-item .notif-time {
    font-size: 0.6rem;
    color: var(--text-tertiary);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 4px;
}
.mark-read-all {
    color: var(--text) !important;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: var(--transition);
}
.mark-read-all:hover {
    background: var(--surface-hover) !important;
    text-decoration: none !important;
}

/* ─── Utilities ─── */
.glass {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.05);
}
.fade-in { animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.cash-price {
    font-size: 1rem;
    color: var(--text-secondary);
}
.cash-price strong {
    color: var(--text);
    font-size: 1.2rem;
}

/* ─── Responsive ─── */
@media (max-width: 1200px) {
    .dashboard-content { padding: 28px 32px; }
}

@media (max-width: 992px) {
    .dashboard-sidebar { width: 220px; padding: 20px 12px; }
    .dashboard-content { max-width: calc(100% - 220px); padding: 24px 28px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .metric-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-wrapper .carousel-item img { height: 320px; }
}

@media (max-width: 768px) {
    .hero-section { min-height: 440px; }
    .hero-section h1 { font-size: 2rem; }
    .hero-section .lead { font-size: 1rem; }
    .dashboard-layout { flex-direction: column; }
    .dashboard-sidebar {
        position: fixed;
        left: 0; top: 60px;
        z-index: 1030;
        width: 270px;
        height: calc(100vh - 60px);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
        box-shadow: 4px 0 24px rgba(0,0,0,0.08);
        border-right: none;
    }
    .dashboard-sidebar.open { transform: translateX(0); }
    .dashboard-content { max-width: 100%; padding: 24px 20px; }
    .sidebar-toggle { display: flex; }
    .sidebar-overlay.show { display: block; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card-modern { padding: 20px; }
    .stat-card-modern .stat-number { font-size: 1.5rem; }
    .metric-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .dash-menu-grid { grid-template-columns: 1fr; }
    .spec-grid { grid-template-columns: repeat(2, 1fr); }
    .showroom-profile { flex-direction: column; align-items: flex-start; }
    .showroom-profile .actions { margin-left: 0; width: 100%; }
    .search-card .btn-search { padding: 12px 20px; font-size: 0.9rem; }
    .filter-panel .row > div { margin-bottom: 8px; }
}

@media (max-width: 480px) {
    .hero-section h1 { font-size: 1.6rem; }
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .metric-grid { grid-template-columns: 1fr; }
    .gallery-wrapper .carousel-item img { height: 240px; }
    .dashboard-content { padding: 20px 16px; }
    .table-container { padding: 16px; }
}
