.tanks-page {
    background-color: #f9fafb;
    min-height: 100vh;
}

.tanks-header-section {
    /*
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    background: linear-gradient(180deg, #302d63 0%, #201e47 100%);
    padding: 2rem 0;
    */
    position: relative;
    z-index: 9;
}
.light-padding{
    padding: 1rem !important;
}
.tanks-header-section p{
    color: #FFF;
}
.tanks-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #f3f4f6;
}

/* Moteur de Recherche Horizontal */
.search-engine-bar {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-grid-bolt {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) { .search-grid-bolt { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .search-grid-bolt { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1280px) { .search-grid-bolt { grid-template-columns: repeat(6, 1fr); } }

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 0.375rem;
    font-size: 15px;
}

.filter-select {
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background-color: #ffffff;
    cursor: pointer;
    box-sizing: border-box;
}

.filter-group:last-child {
    justify-content: flex-end;
}

.btn-search-bolt {
    width: 100%;
    padding: 0.625rem 1.5rem;
    background-color: #4c5ca4;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: bold;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-end;
}

.btn-search-bolt:hover {
    background-color: #343434;
}

.reset-filters-link {
    font-size: 0.875rem;
    color: #ef4444;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 500;
    padding: 0;
}

/* Grille de Produits */
.tanks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
}

.container {
    max-width: 1536px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (min-width: 768px) { .tanks-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tanks-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .tanks-grid { grid-template-columns: repeat(4, 1fr); } }

/* ========== MOBILE FILTERS ========== */
.btn-open-filters-mobile {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #fff;
    color: #4c5ca4;
    border: 2px solid #4c5ca4;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

.filter-badge {
    background: #4c5ca4;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.filters-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

.filters-mobile-overlay.active {
    display: block;
}

.filters-mobile-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filters-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.filters-mobile-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222 !important;
    margin: 0;
}

.filters-mobile-close {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.filters-mobile-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filters-mobile-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.filters-mobile-form .filter-group {
    display: flex;
    flex-direction: column;
}

.filters-mobile-form .filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333 !important;
    margin-bottom: 0.5rem;
}

.filters-mobile-form .filter-select {
    padding: 0.75rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.filters-mobile-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem;
    border-top: 1px solid #e5e7eb;
    background: #fff;
    flex-shrink: 0;
    flex-direction: column;
}
.select2-results__option--selectable {
    cursor: pointer;
    color: #000;
}
.btn-reset-filters-mobile {
    flex: 1;
    padding: 0.75rem;
    background: #f3f4f6;
    color: #666;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.filters-mobile-footer .btn-search-bolt {
    flex: 2;
}

@media (max-width: 767px) {
    .btn-open-filters-mobile {
        display: flex;
    }
    .desktop-filters {
        display: none;
    }
    .tanks-title {
        font-size: 20px;
        margin-bottom: 0.75rem;
    }
}

.empty-state-bolt {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    text-align: center;
    margin: 3rem auto;
    max-width: 32rem;
}
