.miko-map-wrapper {
    display: flex;
    gap: 15px;
    max-width: 100%;
    flex-wrap: wrap;
}

#map-content-left {
    background: #fff;
    padding: 25px 20px 0;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.08);
    width: 33.333%;
}

#map-content-left h3.title {
    margin-bottom: 0;
}

#map-content-left h4.subtitle {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 16px;
}

.miko-map-wrapper select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.miko-map-wrapper select+select {
    margin-top: 10px;
}

.miko-map-wrapper select:hover {
    border-color: #0094ff;
}

.miko-store-desc {
    padding-left: 30px;
    margin-bottom: 25px;
    position: relative;
    margin-top: 1rem;
}

.miko-store-desc::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 368.666 368.666'%3E%3Cpath d='M184.333 0C102.01 0 35.036 66.974 35.036 149.297c0 33.969 11.132 65.96 32.193 92.515 27.27 34.383 106.572 116.021 109.934 119.479l7.169 7.375 7.17-7.374c3.364-3.46 82.69-85.116 109.964-119.51 21.042-26.534 32.164-58.514 32.164-92.485C333.63 66.974 266.656 0 184.333 0zM285.795 229.355c-21.956 27.687-80.92 89.278-101.462 110.581-20.54-21.302-79.483-82.875-101.434-110.552-18.228-22.984-27.863-50.677-27.863-80.087C55.036 78.002 113.038 20 184.333 20c71.294 0 129.297 58.002 129.296 129.297 0 29.412-9.625 57.096-27.834 80.058z'/%3E%3Cpath d='M184.333 59.265c-48.73 0-88.374 39.644-88.374 88.374s39.645 88.374 88.374 88.374 88.374-39.645 88.374-88.374S233.063 59.265 184.333 59.265zm0 156.748c-37.702 0-68.374-30.673-68.374-68.374s30.673-68.374 68.374-68.374 68.374 30.673 68.374 68.374-30.673 68.374-68.374 68.374z'/%3E%3C/svg%3E");
}

.miko-store-desc h3.store--name{
    font-size: 16px;
    margin-bottom: 10px;
}
.miko-store-desc p{
    font-size: 14px;
    margin-bottom: 5px;
}

#miko-store-info {
    width: calc(66.666% - 15px);
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    line-height: 1.5;
}

#miko-store-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    color: #333;
}

.miko-map-iframe iframe {
    width: 100%;
    height: 380px;
    border: none;
    border-radius: 4px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    #map-content-left,
    #miko-store-info{
        width: 100%;
    }
    .miko-map-wrapper select {
        width: 100%;
    }

    .miko-map-iframe iframe {
        height: 300px;
    }
}