.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease
}

.header.scrolled {
    background: #000000;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 1rem
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.logo-lockup {
    flex-direction: row;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    flex-shrink: 0
}

.logo-mark {
    width: 70px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none;
    padding: 0
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    min-width: 0
}

.logo-wordmark {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: .35rem;
    font-family: Georgia, Times New Roman, serif;
    font-size: clamp(1.55rem, 2.9vw, 1.95rem);
    font-weight: 900;
    font-style: normal;
    letter-spacing: -.02em;
    line-height: 1;
    white-space: nowrap
}

.logo-brand-dream {
    color: #fff;
    -webkit-text-stroke: .55px #ffffff;
    paint-order: stroke fill;
    text-shadow: 0 0 .4px rgba(255, 255, 255, .9)
}

.logo-brand-motors {
    color: #b91c1c;
    -webkit-text-stroke: .55px #b91c1c;
    paint-order: stroke fill;
    text-shadow: 0 0 .4px rgba(185, 28, 28, .95), 0 1px 2px rgba(0, 0, 0, .35)
}

.logo-tagline {
    font-size: .82rem;
    font-style: italic;
    color: #94a3b8;
    margin-top: 4px;
    letter-spacing: .02em;
    line-height: 1.2
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: .2em;
    color: var(--gold)
}

.logo-sub {
    font-size: .55rem;
    letter-spacing: .35em;
    color: var(--text-muted);
    margin-top: 2px
}

.nav {
    display: flex;
    gap: 2rem
}

.nav-link {
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #f5f5f5;
    transition: color .2s
}

.nav-link:hover,
.nav-link.active {
    color: #fff
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem
}

.theme-toggle {
    background: transparent;
    border: none;
    color: #fff;
    padding: .5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    padding: .5rem .75rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1.25rem;
    flex-shrink: 0
}

@media(max-width:900px) {
    .header-inner {
        flex-wrap: nowrap;
        height: auto;
        padding: .75rem 0
    }

    .mobile-menu-toggle {
        display: block;
        order: 1;
        margin-right: .25rem;
        padding: .5rem
    }

    .logo {
        order: 2;
        flex-grow: 1;
        text-align: center;
        margin-bottom: 0;
        margin-left: -1rem
    }

    .logo-mark {
        width: 55px;
        height: 40px;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important
    }

    .logo-wordmark {
        font-size: 1.42rem;
        font-style: normal
    }

    .logo-tagline {
        font-size: .7rem;
        margin-top: 2px
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        order: 4;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0a0a0afa;
        border-bottom: 1px solid var(--border)
    }

    .nav.nav-open {
        display: flex
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--border);
        text-align: center
    }

    .header-actions {
        order: 3;
        width: auto;
        justify-content: flex-end;
        margin-left: .25rem
    }

    .theme-toggle {
        font-size: 1.25rem;
        padding: .5rem .75rem
    }
}

@media(max-width:480px) {
    .logo-lockup {
        gap: .45rem
    }

    .logo-mark {
        width: 50px;
        height: 35px;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important
    }

    .logo-wordmark {
        font-size: 1.28rem;
        font-style: normal;
        white-space: normal;
        flex-wrap: wrap
    }

    .logo-tagline {
        display: block
    }

    .header-inner {
        gap: .35rem
    }

    .logo {
        margin-left: -.5rem
    }
}

@media(max-width:360px) {
    .logo-wordmark {
        font-size: 1.18rem;
        font-style: normal
    }

    .mobile-menu-toggle {
        padding: .4rem
    }

    .theme-toggle {
        padding: .4rem .5rem
    }
}

.footer {
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    margin-top: 4rem
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem 0
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: .15em;
    color: var(--gold);
    margin-bottom: .75rem
}

.footer-tagline {
    color: var(--text-muted);
    font-size: .875rem
}

.footer h4 {
    font-size: .7rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem
}

.footer a,
.footer p {
    display: block;
    color: var(--text-muted);
    font-size: .875rem;
    margin-bottom: .4rem;
    transition: color .2s
}

.footer a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 1.25rem 0
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: .75rem;
    text-align: center
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2.5rem 0
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        padding: 2rem 0
    }

    .footer {
        margin-top: 2.5rem
    }

    .footer-logo {
        font-size: 1.25rem
    }
}

@media(max-width:360px) {
    .footer-bottom p {
        font-size: .7rem;
        padding: 0 .25rem
    }
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(31, 41, 55, .4) 0%, rgba(31, 41, 55, .85) 70%, var(--bg-light) 100%), url(https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1920&q=80) center/cover no-repeat
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem
}

.hero-content h1 {
    font-family: var(--font-family);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff
}

.hero-content p {
    color: #ffffffe6;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2rem
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.hero-actions .btn {
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, .9);
    background: #0f172a59;
    color: #fff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease, box-shadow .25s ease
}

.hero-actions .btn:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px #00000059
}

.hero-actions .btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary)
}

.hero-actions .btn-primary:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px #00000059
}

.hero-actions .btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px
}

.section {
    padding: 5rem 0
}

.section-header {
    text-align: center;
    margin-bottom: 3rem
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark)
}

.section-header p {
    color: var(--text-light);
    margin-bottom: 20px
}

.car-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    margin-top: 30px
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.about-image {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.cta-banner {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4rem 0;
    text-align: center
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 2rem
}

.cta-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color .3s, transform .25s ease, box-shadow .25s ease;
    background: var(--bg-white);
    box-shadow: var(--shadow)
}

.cta-card--photo {
    min-height: 340px;
    padding: 2.75rem 2rem;
    border: none;
    border-radius: 14px;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 18px 40px #00000059;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.cta-card--photo h3 {
    color: #fff;
    font-size: clamp(1.55rem, 2.4vw, 2rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .85rem
}

.cta-card--photo p {
    color: #ffffffe0;
    font-size: .98rem;
    line-height: 1.55;
    max-width: 34ch;
    margin: 0 auto 1.35rem
}

.cta-card--photo .cta-card-action {
    margin-top: .15rem;
    padding: .7rem 1.35rem;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    background: #c9a962;
    border: 1px solid #c9a962
}

.cta-card--photo:nth-child(2) .cta-card-action,
.cta-card-link.cta-card--photo:nth-child(2n) .cta-card-action {
    color: #fff;
    background: transparent;
    border-color: #c9a962f2
}

.cta-card-link.cta-card--photo:hover {
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 0 22px 48px #00000073
}

.cta-card-link.cta-card--photo:hover h3 {
    color: #fff
}

.cta-card-link.cta-card--photo:hover .cta-card-action {
    text-decoration: none;
    filter: brightness(1.08)
}

.cta-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    height: 100%
}

.cta-card-link:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px
}

.cta-card:hover,
.cta-card-link:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.cta-card-link:hover h3 {
    color: var(--primary)
}

.cta-card-action {
    display: inline-block;
    margin-top: .25rem;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary)
}

.cta-card-link:hover .cta-card-action {
    text-decoration: underline
}

.cta-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600
}

.cta-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px
}

.page-hero {
    padding: 8rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg-white)
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-dark)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 4rem 0
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 10px
}

@media(max-width:768px) {

    .about-grid,
    .cta-grid,
    .contact-grid,
    .car-grid {
        grid-template-columns: 1fr
    }
}

.route-loading {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted, #64748b);
    font-size: 1rem
}

.public-cms-boot {
    min-height: 100vh
}

.public-main {
    overflow-x: clip;
    max-width: 100%
}

.inventory-search-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: stretch
}

.inventory-search-input {
    flex: 1 1 12rem;
    min-width: 0;
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-white, var(--bg-light));
    color: var(--text-dark);
    font-size: 1rem
}

.inventory-search-clear {
    flex: 0 0 auto;
    background: var(--danger) !important;
    color: #fff !important;
    white-space: nowrap
}

@media(max-width:768px) {
    .section {
        padding: 3rem 0
    }

    .page-hero {
        padding: 5.5rem 0 2rem
    }

    .section-header h2 {
        font-size: clamp(1.35rem, 5vw, 2rem)
    }

    .hero {
        min-height: 70vh
    }

    .hero-content {
        padding: 1.25rem
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 20rem;
        margin: 0 auto
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center
    }

    .cta-card {
        padding: 1.25rem !important
    }

    .cta-card--photo {
        min-height: 280px;
        padding: 2rem 1.25rem !important
    }
}

@media(max-width:480px) {
    .section {
        padding: 2.25rem 0
    }

    .page-hero {
        padding: 5rem 0 1.5rem
    }

    .car-grid {
        gap: 1.25rem
    }

    .contact-grid {
        gap: 1.5rem;
        padding: 2rem 0
    }

    .cta-banner {
        padding: 2.5rem 0
    }
}

@media(max-width:360px) {
    .hero-content h1 {
        font-size: clamp(1.75rem, 9vw, 2.25rem)
    }

    .hero-content p {
        font-size: .95rem
    }
}

.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999
}

.whatsapp-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: transform .3s ease
}

.whatsapp-button:hover {
    transform: scale(1.1)
}

.whatsapp-button svg {
    box-shadow: 0 4px 12px #0000004d;
    border-radius: 50%;
    transition: box-shadow .3s ease
}

.whatsapp-button:hover svg {
    box-shadow: 0 6px 16px #0006
}

.whatsapp-text {
    position: absolute;
    bottom: -25px;
    background: #25d366;
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 2px 8px #0003;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
    pointer-events: none
}

.whatsapp-button:hover .whatsapp-text {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:768px) {
    .whatsapp-floating {
        bottom: 20px;
        right: 20px
    }

    .whatsapp-button svg {
        width: 50px;
        height: 50px
    }

    .whatsapp-text {
        font-size: 11px;
        padding: 3px 10px
    }
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --secondary: #1f2937;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;
    --font-family: "Roboto", sans-serif;
    --sidebar-width: 260px
}

[data-theme=light] {
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --shadow: 0 1px 3px rgba(245, 245, 245, .1), 0 1px 2px rgba(255, 250, 250, .06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, .1), 0 4px 6px rgba(0, 0, 0, .05)
}

[data-theme=dark] {
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --text-dark: #f8fafc;
    --text-light: #cbd5e1;
    --border: #334155;
    --shadow: 0 1px 3px rgba(0, 0, 0, .5), 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, .6)
}

html {
    scroll-behavior: smooth;
    overflow-x: clip
}

body {
    font-family: var(--font-family);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color .3s ease, color .3s ease
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto
}

@media(max-width:480px) {
    .container {
        width: min(1200px, calc(100% - 1.25rem))
    }
}

@media(max-width:360px) {
    .container {
        width: min(1200px, calc(100% - 1rem))
    }
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-primary:hover {
    background: var(--primary-dark)
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border)
}

.btn-secondary:hover {
    filter: brightness(.95)
}

.btn-success {
    background: var(--success);
    color: #fff
}

.btn-danger {
    background: var(--danger);
    color: #fff
}

.btn-sm {
    padding: 6px 12px;
    font-size: 12px
}

select {
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-family);
    background: var(--bg-white);
    color: var(--text-dark);
    cursor: pointer;
    max-width: 100%;
    width: 100%
}

select option {
    padding: 10px;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%
}

.section-title {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600
}

.section-subtitle {
    color: var(--text-light);
    font-size: .95rem;
    max-width: 600px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark)
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-dark);
    transition: .3s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary)
}

.form-group textarea {
    min-height: 100px;
    resize: vertical
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

@media(max-width:640px) {
    .form-row {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .modal {
        width: calc(100% - 1rem);
        max-width: none;
        padding: 1.25rem
    }

    .btn {
        min-height: 44px
    }

    th,
    td {
        padding: 10px 8px;
        font-size: .875rem
    }
}

.alert {
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    font-size: .875rem
}

.alert-error {
    background: #ef44441f;
    border: 1px solid var(--danger);
    color: var(--danger)
}

.alert-success {
    background: #10b9811f;
    border: 1px solid var(--success);
    color: var(--success)
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500
}

.badge-success,
.badge-completed,
.badge-active {
    background: #10b9811f;
    color: var(--success)
}

.badge-warning {
    background: #f59e0b1f;
    color: var(--warning)
}

.badge-danger {
    background: #ef44441f;
    color: var(--danger)
}

.badge-info {
    background: #3b82f61f;
    color: var(--info)
}

.badge-admin {
    background: #dc26261f;
    color: var(--primary)
}

.badge-staff {
    background: #6b72801f;
    color: var(--text-light)
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white)
}

th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border)
}

th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 600
}

td {
    color: var(--text-dark)
}

tr:hover {
    background: var(--bg-light)
}

.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000008c;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000
}

.modal {
    position: relative;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 12px;
    background: var(--bg-card, var(--bg-white));
    color: var(--text-main, var(--text-dark));
    border: 1px solid var(--border-color, var(--border));
    box-shadow: var(--shadow-lg)
}

.modal-close-btn {
    position: sticky;
    top: 8px;
    float: right;
    z-index: 5;
    width: 36px;
    height: 36px;
    margin: -6px -6px .5rem .75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
    background: var(--bg-white, #fff);
    color: var(--text-sub, #64748b);
    cursor: pointer;
    box-shadow: 0 2px 10px #0f172a14;
    transition: background .15s ease, color .15s ease, border-color .15s ease
}

.modal-close-btn:hover {
    color: #b84235;
    border-color: #b8423573;
    background: #b8423514
}

.modal h2 {
    margin-bottom: 20px;
    font-size: 20px
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 25px
}

[data-theme=dark] select {
    background: var(--bg-white) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--border) !important
}

[data-theme=dark] select option {
    background: #1e293b !important;
    color: #f8fafc !important
}