.brand-cards-container.loading {
    position: relative;
    min-height: 200px;
}

.brand-cards-container.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.brand-cards-container.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search_form_wrapper.brand_search_form_wrapper {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    margin-top: 0;
}

.search_form_wrapper.brand_search_form_wrapper:not(.d-none) {
    opacity: 1;
    visibility: visible;
    max-height: 500px;
    margin-top: 1rem;
}

.ascending_order.active,
.descending_order.active {
    background-color: var(--bs-tertiary);
    color: white;
}

.search_toggle.active {
    background-color: var(--bs-tertiary);
    color: white;
}