.store-locations {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.store-locations h1 {
    text-align: center;
    margin-bottom: 20px;
}

.banner {
    display: none;
}

.map-store-container {
    margin: 0 auto;
}

#map {
    height: 300px;
    width: 100%;
    margin-bottom: 50px;
}


.number-marker {
    display: flex;
    background-color: var(--sv-main-color);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}


.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.store-card {
    background-color: white;
    padding: 3px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    height: 240px;
}

.store-card h3 {
    margin: 0;
}

.store-card p {
    margin: 0px;

}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {

    .map-store-container {
        flex-direction: column;
        align-items: center;
    }

    .store-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
        justify-content: center;
    }
    
    .store-card {
        padding: 10px;
        height: 180px;
    }

    #map {
        height: 250px;
        margin-bottom: 20px;
    }

    .store-list {
        margin-left: 0;
        width: 100%;
    }

    .number-marker {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background-color: var(--sv-main-color);
        border-radius: 50%;
        color: white;
        font-weight: bold;
        font-size: 14px;
        text-align: center;
    }
}