.advanced-store-locator .store-filters {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.advanced-store-locator .store-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.advanced-store-locator .store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.advanced-store-locator .store-card .card-body {
    padding: 20px;
}

.advanced-store-locator .store-card .card-title {
    color: #2c3e50;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.advanced-store-locator .store-info p {
    margin-bottom: 5px;
    color: #555;
}

.advanced-store-locator .store-info i.material-icons {
    font-size: 16px;
    vertical-align: middle;
    margin-right: 8px;
    color: #007bff;
}

.advanced-store-locator .badge {
    font-size: 12px;
    padding: 4px 8px;
}

.advanced-store-locator .store-contacts p {
    margin-bottom: 3px;
    font-size: 13px;
    color: #666;
}

.advanced-store-locator .store-contacts i.material-icons {
    font-size: 14px;
    margin-right: 5px;
    color: #28a745;
}

@media (max-width: 768px) {
    .advanced-store-locator .store-filters .col-md-3 {
        margin-bottom: 15px;
    }
}

/* Styles supplémentaires pour les cartes magasins */
.store-card .card-body {
    padding: 1.5rem;
}

.store-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.store-info .material-icons {
    color: #6c757d;
    font-size: 16px;
    width: 20px;
}

.toggle-hours {
    transition: all 0.3s ease;
}

.toggle-hours:hover {
    background-color: #007bff;
    color: white;
}

.toggle-hours .arrow {
    transition: transform 0.3s ease;
}

.toggle-hours[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
}

.badge-info {
    background-color: #17a2b8;
}

.store-contacts a {
    color: #007bff;
    text-decoration: none;
}

.store-contacts a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .store-card {
        margin-bottom: 1rem;
    }

    .store-filters .form-group {
        margin-bottom: 1rem;
    }
}
/* Styles pour la pagination */
#load-more-stores {
    min-width: 200px;
    padding: 12px 24px;
    font-weight: 600;
}

#loading-more .spinner-border {
    width: 2rem;
    height: 2rem;
}

.stores-count {
    font-size: 0.9em;
    color: #6c757d;
    margin-left: 10px;
}

/* Animation pour les nouveaux stores */
.store-item {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
