:root {
    /* Couleurs principales */
    --red: #e60c16;
    --orange: #f0740c;
    --yellow: #fed000;
    
    /* Variantes */
    --red-dark: #cc0b13;
    --orange-dark: #d65f0a;
    --yellow-dark: #e5bb00;
    --red-light: #ff1f2a;
    --orange-light: #ff8c2a;
    --yellow-light: #ffe033;
    
    /* Dégradés */
    --gradient-primary: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    --gradient-hover: linear-gradient(135deg, var(--red-light) 0%, var(--orange-light) 100%);
    --gradient-dark: linear-gradient(135deg, var(--red-dark) 0%, var(--orange-dark) 100%);
    
    /* Interface claire */
    --bg-light: #fff8e5;
    --surface-light: #f8f8f8;
    --text-light: #2c2c2c;
    --text-secondary-light: #666666;
    --glass-light: rgba(255, 255, 255, 0.9);
    --glass-border-light: rgba(240, 116, 12, 0.2);
    
    /* Interface sombre */
    --bg-dark: #161515;
    --surface-dark: #1d1c1c;
    --text-dark: #ffffff;
    --text-secondary-dark: #cccccc;
    --glass-dark: rgba(22, 21, 21, 0.9);
    --glass-border-dark: rgba(254, 152, 0, 0.2);
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg-light);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header et Navigation */
header {
    position: relative;
    height: 80vh;
    width: 100%;
}

.banner {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(135deg, rgba(230, 12, 22, 0.85) 0%, rgba(240, 116, 12, 0.85) 100%),
        url('../images/header-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

nav {
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 7px;
}

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after,
.nav-links a:not(.btn-primary).active::after {
    width: 100%;
}

.btn-primary {
    background: white;
    color: var(--red) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.btn-primary i {
    margin-right: 8px;
}

/* Contenu de la bannière */
.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.logo-img-hero {
    /* height: 160px; */
    width: -webkit-fill-available;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.banner-content h1 {
    font-size: 2.7rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 1.2rem;
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Section de recherche */
main {
    max-width: 1400px;
    min-height: 900px;
    margin: -100px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.search-section {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border-light);
    padding: 30px;
    margin-bottom: 40px;
}

.search-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 25px;
}

.search-header h2 i {
    margin-right: 10px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-secondary-light);
}

.filter-group label i {
    margin-right: 8px;
    color: var(--orange);
}

.category-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
    flex-wrap: wrap;
    /* justify-content: center; */
    padding-top: 5px;
    padding-left: 5px;
}

.category-tab {
    background: transparent;
    border: 1px solid var(--glass-border-light);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.category-tab i {
    color: var(--orange);
}

.category-tab:hover {
    border-color: var(--orange);
}

.category-tab.active {
    background: var(--gradient-primary);
    border: none;
    color: white;
}

.category-tab.active i {
    color: white;
}

/* Effet de ripple au clic */
.category-tab::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.category-tab:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0) translate(-50%, -50%);
        opacity: 0.5;
    }
    100% {
        transform: scale(40) translate(-50%, -50%);
        opacity: 0;
    }
}

/* Animation de transition entre les catégories */
.category-tab {
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-tab:not(.active) {
    transform: scale(0.95);
}

.category-tab.active {
    transform: scale(1.05);
    animation: tabActivate 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes tabActivate {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Effet de brillance au survol */
.category-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.category-tab:hover::before {
    left: 100%;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-inputs input,
select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--glass-border-light);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.price-inputs input:focus,
select:focus {
    outline: none;
    border-color: var(--orange);
}

/* Supprimer les styles génériques des selects */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Style personnalisé pour les selects */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--glass-border-light);
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--glass-light);
    color: var(--text-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-select::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    pointer-events: none;
    transition: all 0.3s ease;
}

.custom-select:hover select {
    border-color: var(--orange);
}

.custom-select select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 116, 12, 0.1);
}

.custom-select:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Style des options */
.custom-select select option {
    background: var(--glass-light);
    color: var(--text-light);
    padding: 12px;
}

/* Thème sombre */
[data-theme="dark"] .custom-select select {
    background: var(--glass-dark);
    border-color: var(--glass-border-dark);
    color: var(--text-dark);
}

[data-theme="dark"] .custom-select::after {
    color: var(--yellow);
}

[data-theme="dark"] .custom-select:hover select {
    border-color: var(--yellow);
}

[data-theme="dark"] .custom-select select:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(254, 208, 0, 0.1);
}

[data-theme="dark"] .custom-select select option {
    background: var(--glass-dark);
    color: var(--text-dark);
}

/* Thème sombre */
[data-theme="dark"] {
    --gradient-primary: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    --gradient-hover: linear-gradient(135deg, var(--orange-light) 0%, var(--yellow-light) 100%);
}

[data-theme="dark"] body {
    position: relative;
    color: var(--text-dark);
    background: #161515; /* Fond de secours */
}

[data-theme="dark"] body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/header-bg.webp') center/cover no-repeat;
    opacity: 0.015; /* Ajuste l'opacité ici */
    z-index: -1;
}

[data-theme="dark"] .search-section {
    background: var(--glass-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] .search-header h2 {
    color: var(--yellow);
}

[data-theme="dark"] .filter-group label i {
    color: var(--yellow);
}

[data-theme="dark"] .category-tab {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border-dark);
    color: var(--text-dark);
}

[data-theme="dark"] .category-tab i {
    color: var(--yellow);
}

[data-theme="dark"] input,
[data-theme="dark"] select {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--glass-border-dark);
    color: var(--text-dark);
}

/* Switch thème */
.theme-switch {
    position: relative;
}

.switch {
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.switch i {
    color: white;
    font-size: 14px;
    z-index: 1;
    width: 22px;
    text-align: center;
}

.switch::after {
    content: '';
    position: absolute;
    left: 4px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#theme-toggle {
    display: none;
}

#theme-toggle:checked + .switch::after {
    transform: translateX(30px);
}

/* Grid des véhicules */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Séparateur entre les rangées */
.vehicle-separator {
    grid-column: 1 / -1; /* Prend toute la largeur */
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--glass-border-light),
        transparent
    );
    margin: 20px 0;
}

/* Style des cartes */
.vehicle-card {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid var(--glass-border-light);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: cardAppear 0.5s ease-out backwards;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.vehicle-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.vehicle-images-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.vehicle-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.vehicle-image-nav.prev {
    left: 10px;
}

.vehicle-image-nav.next {
    right: 10px;
}

.vehicle-image-container:hover .vehicle-image-nav {
    opacity: 1;
}

.vehicle-image-nav:hover {
    background: var(--orange);
}

[data-theme="dark"] .vehicle-image-nav:hover {
    background: var(--yellow);
}

.vehicle-image-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.image-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-dot.active {
    background: white;
    transform: scale(1.2);
}

.vehicle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: brightness(0.85);
}

.vehicle-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    transition: opacity 0.5s ease;
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.05);
    filter: brightness(1);
}

.vehicle-card:hover .vehicle-image-container::after {
    opacity: 0;
}

.vehicle-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.vehicle-type, .vehicle-brand {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vehicle-info {
    padding: 20px;
}

.vehicle-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border-light);
}

.vehicle-name {
    font-size: 1.4rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.vehicle-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-light);
}

.vehicle-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: baseline;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border-radius: 8px;
    color: var(--orange);
    font-size: 1rem;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--text-secondary-light);
}

.detail-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Ajustements pour le thème sombre */
[data-theme="dark"] .vehicle-card {
    background: var(--glass-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] .vehicle-title {
    border-bottom-color: var(--glass-border-dark);
}

[data-theme="dark"] .vehicle-name {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .vehicle-price {
    color: var(--text-dark);
}

[data-theme="dark"] .detail-icon {
    background: rgba(255, 255, 255, 0.05);
    color: var(--yellow);
}

[data-theme="dark"] .detail-label {
    color: var(--text-secondary-dark);
}

[data-theme="dark"] .detail-value {
    color: var(--text-dark);
}

[data-theme="dark"] .vehicle-card:hover {
    box-shadow: 0 15px 40px rgba(254, 208, 0, 0.1);
}

/* Pour le thème sombre */
[data-theme="dark"] .banner {
    background-image: 
        linear-gradient(135deg, rgba(240, 116, 12, 0.85) 0%, rgba(254, 208, 0, 0.85) 100%),
        url('../images/header-bg.webp');
}

[data-theme="dark"] .vehicle-image {
    filter: brightness(0.75);
}

[data-theme="dark"] .vehicle-card:hover .vehicle-image {
    filter: brightness(0.9);
}

[data-theme="dark"] .total-label {
    color: var(--text-dark);
}

/* Modal styles */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-modal.active .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    max-width: 90%;
    max-height: 90vh;
    transition: all 0.3s ease;
    opacity: 0;
}

.image-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--red-light);
    transform: scale(1.1);
}

/* Footer styles */
.footer {
    margin-top: 60px;
    padding: 30px 20px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border-light);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.footer-content p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Ajustement pour le thème sombre */
[data-theme="dark"] .footer {
    background: var(--glass-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] .footer-content {
    color: var(--text-dark);
}

/* Modal vehicle info */
.modal-vehicle-info {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid var(--glass-border-light);
    padding: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.modal-vehicle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border-light);
}

.modal-vehicle-name {
    font-size: 1.8rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.modal-vehicle-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.modal-vehicle-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.modal-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-stat i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border-radius: 10px;
    color: var(--orange);
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary-light);
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Ajustements pour le thème sombre */
[data-theme="dark"] .modal-vehicle-info {
    background: var(--glass-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] .modal-vehicle-header {
    border-bottom-color: var(--glass-border-dark);
}

[data-theme="dark"] .modal-stat i {
    background: rgba(255, 255, 255, 0.05);
    color: var(--yellow);
}

[data-theme="dark"] .stat-label {
    color: var(--text-secondary-dark);
}

[data-theme="dark"] .stat-value {
    color: var(--text-dark);
}

[data-theme="dark"] .modal-vehicle-price {
    color: var(--text-dark);
}

/* Modal gallery */
.modal-gallery {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-main-image {
    width: 100%;
    height: 60vh;
    border-radius: 12px;
    overflow: hidden;
}

.modal-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.modal-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.modal-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.modal-thumbnail.active {
    border-color: var(--orange);
}

.modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[data-theme="dark"] .modal-thumbnail.active {
    border-color: var(--yellow);
}

/* Styles pour le chargement progressif */
.loading-message {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 25px;
    margin: 30px auto;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-light);
    border-radius: 50px;
    color: var(--text-secondary-light);
    font-size: 0.9rem;
    font-weight: 500;
    max-width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: var(--orange);
    border-right-color: var(--orange);
    border-radius: 50%;
    display: inline-block;
    animation: spinAnim 0.8s linear infinite;
}

@keyframes spinAnim {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

/* Ajustements pour le thème sombre */
[data-theme="dark"] .loading-message {
    background: var(--glass-dark);
    border-color: var(--glass-border-dark);
    color: var(--text-secondary-dark);
}

[data-theme="dark"] .spinner {
    border-top-color: var(--yellow);
    border-right-color: var(--yellow);
}

/* Pattern de fond */
@keyframes slowRotate {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.sun-pattern {
    position: absolute;
    background-image: url('/images/sun.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.03;
}

/* Seulement 6 soleils, plus gros et avec rotation lente */
.sun-1 { top: 50%; left: 3%; width: 120px; height: 120px; animation: slowRotate 30s linear infinite; }
.sun-2 { top: 80%; left: 5%; width: 300px; height: 300px; animation: slowRotate 35s linear infinite; }
.sun-3 { top: 60%; left: 60%; width: 100px; height: 100px; animation: slowRotate 40s linear infinite; }
.sun-4 { top: 80%; left: 75%; width: 130px; height: 130px; animation: slowRotate 45s linear infinite; }
.sun-5 { top: 40%; left: 85%; width: 140px; height: 140px; animation: slowRotate 38s linear infinite; }
.sun-6 { top: 60%; left: 90%; width: 250px; height: 250px; animation: slowRotate 42s linear infinite; }

/* Ajustement pour le thème sombre */
[data-theme="dark"] .sun-pattern {
    opacity: 0.02;
}

/* Ajouter ces styles pour l'animation des cartes */
@keyframes cardAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Ajouter un délai progressif pour chaque carte */
.vehicle-card:nth-child(1) { animation-delay: 0s; }
.vehicle-card:nth-child(2) { animation-delay: 0.1s; }
.vehicle-card:nth-child(3) { animation-delay: 0.2s; }
.vehicle-card:nth-child(4) { animation-delay: 0.3s; }
.vehicle-card:nth-child(5) { animation-delay: 0.4s; }
.vehicle-card:nth-child(6) { animation-delay: 0.5s; }
.vehicle-card:nth-child(7) { animation-delay: 0.6s; }
.vehicle-card:nth-child(8) { animation-delay: 0.7s; }
.vehicle-card:nth-child(n+9) { animation-delay: 0.8s; }

/* Ajouter une animation de disparition */
@keyframes cardDisappear {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

.vehicle-card.disappearing {
    animation: cardDisappear 0.3s ease forwards;
}

/* Menu burger pour mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Media queries pour la responsive */
@media (max-width: 768px) {
    nav.glass-card {
        position: fixed;
        margin: 0;
        width: 100%;
        border-radius: 0;
        padding: 15px 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: var(--glass-light);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        padding: 50px 30px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    /* Animation du menu burger */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Overlay pour le menu mobile */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: 998;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Ajustements pour le thème sombre en mobile */
    [data-theme="dark"] .nav-right {
        background: var(--glass-dark);
    }

    [data-theme="dark"] .menu-toggle span {
        background: var(--text-dark);
    }
}

/* Ajustements supplémentaires pour les très petits écrans */
@media (max-width: 480px) {
    nav.glass-card {
        padding: 15px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-right {
        width: 100%;
    }
}

/* Style de base de la navbar */
nav.glass-card {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    margin: 20px auto;
    max-width: 1200px;
    width: calc(100% - 40px);
    padding: 15px 30px;
    background: rgba(44, 44, 44, 0.534);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* Bannière de test */
.test-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.test-banner i {
    margin-right: 8px;
}

.test-banner a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.test-banner a:hover {
    opacity: 0.8;
}

/* Styles pour la page de rendez-vous */
.appointment-page {
    padding-top: 350px;
    min-height: 100vh;
}

.header-appointment {
    height: 100vh;
}

.appointment-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

.appointment-container h1 {
    color: var(--red);
    margin-bottom: 30px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--glass-border-light);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: var(--text-secondary-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid var(--glass-border-light);
    border-radius: 8px;
    background: var(--surface-light);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px var(--orange-light);
}

/* Style pour le select */
.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

/* Style pour le bouton submit */
.appointment-form button[type="submit"] {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

/* same effect text area */
.form-group textarea {
    padding: 12px;
        border: 1px solid var(--glass-border-light);
        border-radius: 8px;
        background: var(--surface-light);
        color: var(--text-light);
        font-size: 1rem;
        transition: all 0.3s ease;
        width: 100%;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 2px var(--orange-light);
}

/* required */
.required {
    color: var(--red);
}

.appointment-btn {
    color: white;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.appointment-form button[type="submit"]:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 12, 22, 0.2);
}

.appointment-form button[type="submit"]:active {
    transform: translateY(0);
}

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

/* Thème sombre */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select {
    background: var(--surface-dark);
    color: var(--text-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] .appointment-container {
    background: var(--glass-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] .appointment-container h1 {
    border-bottom-color: var(--glass-border-dark);
}

[data-theme="dark"] .form-group select {
    background-image: var(--surface-dark), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
}

[data-theme="dark"] .form-group textarea {
    background: var(--surface-dark);
    color: var(--text-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] label {
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-container {
        margin: 20px;
        border-radius: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .appointment-container h1 {
        font-size: 1.5rem;
    }

    .appointment-form button[type="submit"] {
        padding: 12px 20px;
    }
}

/* Styles pour la page préavis */
.preavis-page {
    padding-top: 120px;
    min-height: auto;
    background-size: cover;
    position: relative;
}

.preavis-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/noise.png');
    opacity: 0.1;
    pointer-events: none;
}

.preavis-container {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-radius: 20px;
    margin-top: 50px;
}

.preavis-container h1 {
    color: var(--orange);
    margin-bottom: 30px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(240, 116, 12, 0.2);
}

/* Barre de recherche */
.search-bar {
    margin-bottom: 20px;
    width: 100%;
}

.search-bar input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--glass-border-light);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.9);
}

/* Liste des véhicules sélectionnés */
.selected-vehicles {
    margin-top: 30px;
}

.selected-vehicles h2 {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 20px;
    padding: 10px;
    border-bottom: 2px solid var(--orange);
}

[data-theme="dark"] .selected-vehicles h2 {
    border-bottom-color: var(--glass-border-dark);
    color: var(--text-dark);
}

[data-theme="dark"] .preavis-container h1 {
    color: #ffa556;
}

[data-theme="dark"] .quantity-btn {
    background: var(--surface-dark);
    border-color: var(--glass-border-dark);
    color: var(--text-dark);
}

[data-theme="dark"] .quantity-btn:hover {
    background: var(--surface-dark);
    border-color: var(--glass-border-dark);
    color: var(--orange);
}

[data-theme="dark"] .quantity-btn:active {
    background: var(--surface-dark);
    border-color: var(--glass-border-dark);
}

[data-theme="dark"] .remove-vehicle {
    color: var(--red);
}

[data-theme="dark"] .remove-vehicle:hover {
    color: var(--red-dark);
}

.selected-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.selected-vehicle-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(240, 116, 12, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.selected-vehicle-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.vehicle-info-preavis {
    display: flex;
    align-items: center;
    gap: 15px;
}

.vehicle-info img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.vehicle-details-preavis {
    flex-grow: 1;
}

.vehicle-name {
    font-weight: 500;
}

.vehicle-price {
    color: var(--orange);
    font-weight: 600;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: none;
    border: 1px solid var(--glass-border-light);
    width: 30px;
    height: 30px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
}

.quantity {
    min-width: 30px;
    text-align: center;
}

.remove-vehicle {
    color: var(--red);
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.remove-vehicle:hover {
    color: var(--red-dark);
    transform: scale(1.1);
}

.total-section {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    border: 2px solid rgba(240, 116, 12, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.voucher-section {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    border: 2px solid rgba(240, 116, 12, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.voucher-input {
    display: flex;
    align-items: center;
    gap: 15px;
}

.voucher-input label {
    font-weight: 500;
    color: var(--text-secondary-light);
    min-width: 180px;
}

.voucher-input input {
    flex-grow: 1;
    padding: 10px 15px;
    border: 2px solid rgba(240, 116, 12, 0.2);
    border-radius: 8px;
    font-size: 1.1rem;
    background: white;
    cursor: pointer;
    width: 200px;
    transition: all 0.3s ease;
}

.voucher-input input:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(240, 116, 12, 0.2);
}

.totals-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.total-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.total-row.highlight {
    padding-top: 10px;
    margin-top: 10px;
    border-top: 2px solid rgba(240, 116, 12, 0.2);
    background: linear-gradient(135deg, rgba(240, 116, 12, 0.05), transparent);
    padding: 15px;
    border-radius: 8px;
}

.total-row.highlight .total-amount {
    font-size: 1.8rem;
    color: var(--red);
}

.total-label {
    font-size: 1.2rem;
    color: var(--text-secondary-light);
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--orange);
}

/* Thème sombre */
[data-theme="dark"] .preavis-container {
    background: rgba(22, 21, 21, 0.95);
}

[data-theme="dark"] .selected-vehicle-item,
[data-theme="dark"] .voucher-input input {
    background: var(--surface-dark);
    border-color: rgba(240, 116, 12, 0.3);
}

[data-theme="dark"] .total-section,
[data-theme="dark"] .voucher-section {
    background: linear-gradient(135deg, rgba(22, 21, 21, 0.95), rgba(22, 21, 21, 0.8));
    border-color: rgba(240, 116, 12, 0.3);
}

/* Styles pour la page organigramme */
.organigramme-page {
    padding-top: 120px;
    min-height: 80vh;
    background-size: cover;
    position: relative;
    margin-top: 1px;
}

.organigramme-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-light);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(240, 116, 12, 0.1);
    border-radius: 25px;
}

.organigramme-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 30px;
}

.organigramme-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--red), var(--orange));
    border-radius: 3px;
}

.organigramme-header h1 {
    color: var(--red);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.organigramme-header p {
    color: var(--text-secondary-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.organigramme-info {
    text-align: center;
    color: var(--text-secondary-light);
    font-size: 0.9rem;
    margin-top: 30px;
    padding: 15px;
    background: rgba(240, 116, 12, 0.1);
    border-radius: 10px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.organigramme-info i {
    color: var(--orange);
    margin-right: 8px;
}

.organigramme-tree {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 20px;
}

.level {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    position: relative;
}

.level::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--orange);
}

.level:first-child::before {
    display: none;
}

.level-group {
    display: flex;
    gap: 30px;
    position: relative;
}

.level-group::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--orange);
}

.level-group::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
}

.employee-card {
    background: linear-gradient(135deg, white, #f8f8f8);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(240, 116, 12, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    position: relative;
}

.employee-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: var(--orange);
}

.employee-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.employee-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: white;
}

.employee-info {
    flex: 1;
}

.employee-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.employee-grade {
    color: var(--orange);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.employee-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary-light);
}

.employee-phone i {
    color: var(--orange);
}

/* Dark theme */
[data-theme="dark"] .employee-card {
    background: linear-gradient(135deg, var(--surface-dark), #1a1a1a);
    border-color: rgba(240, 116, 12, 0.3);
}

[data-theme="dark"] .organigramme-container {
    background: rgba(22, 21, 21, 0.97);
    border-color: rgba(240, 116, 12, 0.2);
}

[data-theme="dark"] .employee-name {
    color: var(--text-dark);
}

[data-theme="dark"] .employee-phone {
    color: var(--text-secondary-dark);
}

[data-theme="dark"] .organigramme-info {
    background: rgba(240, 116, 12, 0.15);
    color: var(--text-secondary-dark);
}

[data-theme="dark"] .organigramme-header p {
    color: var(--text-secondary-dark);
}

.search-bar {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.search-bar input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--glass-border-light);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.9);
}

.search-button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    padding: 0 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--gradient-hover);
    transform: translateY(-2px);
}

/* Style responsive */
@media (max-width: 768px) {
    .search-bar {
        flex-direction: column;
    }
    
    .search-button {
        padding: 12px 25px;
    }
}

/* Ajout des styles pour le mode sombre */
[data-theme="dark"] .search-bar input {
    background: rgba(22, 21, 21, 0.7);
    border-color: var(--glass-border-dark);
    color: var(--text-dark);
}

[data-theme="dark"] .search-bar input:focus {
    border-color: var(--yellow);
    background: rgba(22, 21, 21, 0.9);
}

[data-theme="dark"] .search-bar input::placeholder {
    color: var(--text-secondary-dark);
} 