#map {
    height: 450px;
    width: 100%;
}

#map.shop {
    min-height: 200px;
    width: 400px;
    height: 300px;
}

#map.small {
    display: none;
}


.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-locations {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    background-color: #f9f9f9;
}

.store-locations h1 {
    display: none;
}

.map-store-container {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
}

.store-list {
    flex: 1;
}

.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);
}


.shop-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-details {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.shopbox2 img {
    width: auto;
    height: 300px;
    border-radius: 8px;
    margin-right: 20px;
}

.google-iframe-box {
    flex: 1;
    height: 200px;
}

.google-iframe-box iframe {
    width: 400px;
    height: 300px;
    border-radius: 8px;
}

@media only screen and (max-width: 1024px) {
    #map {
        height: 250px;
        margin-bottom: 20px;
    }

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

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

    .shopbox2 {
        padding: 15px;
        text-align: center;
        font-size: 20px;
        width: 100%;
    }

    .shop-details {
        flex-direction: column;
        align-items: center;
    }

    .shopbox2 img {
        width: auto;
        height: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .google-iframe-box {
        width: 100%;
    }
}

img {
    max-height: 300px;
}


.container {
    gap: 10px;
    width: 100%;
}

.shopbox {
    border: 1px solid #ccc;
    display: inline-block;
    vertical-align: top;
    width: 20%;
    width: 210px;
    margin: 10px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: box-shadow 0.3s ease;
    text-align: center;
    vertical-align: middle;
}


.store-list a {
    text-decoration: none;
    color: black;
}

.mapbox {
    padding: 15px;
    text-align: center;
    font-size: 20px;
    width: 400px;
}

.shopbox2 {
    padding: 15px;
    text-align: center;
    font-size: 20px;
}

.shopbox2 a {
    color: var(--sv-main-color);
}

.shopbox h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.opening-hours {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    margin: 20px auto;
    font-size: 20px;
}

.day {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 20px;
}

.label {
    font-weight: bold;
    color: #333;
}

.time {
    color: #555;
}

.day:last-child {
    margin-bottom: 0;
}