.saminkala-store-map-section {
    width: 100%;
}

.saminkala-store-map-section__title,
.saminkala-store-branches__title {
    margin: 0 0 18px;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.5;
    font-weight: 800;
    color: #18181b;
}

.saminkala-store-map {
    position: relative;
    width: 100%;
    min-height: var(--saminkala-store-map-height, 560px);
    height: var(--saminkala-store-map-height, 560px);
    overflow: hidden;
    border: 1px solid #e4e4e7;
    border-radius: 18px;
    background: #f4f4f5;
    box-shadow: 0 14px 35px rgba(24, 24, 27, .08);
}

.saminkala-store-map__canvas,
.saminkala-store-location-picker {
    width: 100%;
    height: 100%;
}

.saminkala-store-map::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(244, 244, 245, .65), rgba(255, 255, 255, .25), rgba(244, 244, 245, .65));
    background-size: 220% 100%;
    animation: saminkala-map-loading 1.2s linear infinite;
}

.saminkala-store-map.is-ready::after {
    display: none;
}

@keyframes saminkala-map-loading {
    to {
        background-position: -220% 0;
    }
}

.saminkala-store-map-message {
    padding: 18px 20px;
    border: 1px dashed #d4d4d8;
    border-radius: 14px;
    background: #fafafa;
    color: #52525b;
    line-height: 1.9;
}

.saminkala-store-map-popup {
    min-width: 220px;
    max-width: 300px;
    text-align: right;
    font-family: inherit;
    line-height: 1.8;
}

.saminkala-store-map-popup__title {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #18181b;
}

.saminkala-store-map-popup__location,
.saminkala-store-map-popup__address,
.saminkala-store-map-popup__phone {
    color: #52525b;
    font-size: 13px;
}

.saminkala-store-map-popup__phone {
    direction: ltr;
    text-align: right;
}

.saminkala-store-map-popup__link {
    display: inline-flex;
    margin-top: 8px;
    color: #AA0003;
    font-weight: 700;
    text-decoration: none;
}

.saminkala-store-branches {
    margin-top: 28px;
}

.saminkala-store-branches__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.saminkala-store-branch-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 190px;
    padding: 20px;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(24, 24, 27, .055);
}

.saminkala-store-branch-card__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

.saminkala-store-branch-card__title a {
    color: #18181b;
    text-decoration: none;
}

.saminkala-store-branch-card__location {
    font-weight: 700;
    color: #3f3f46;
}

.saminkala-store-branch-card__address {
    color: #71717a;
    line-height: 1.9;
}

.saminkala-store-branch-card__phone {
    direction: ltr;
    text-align: right;
    color: #3f3f46;
    text-decoration: none;
}

.saminkala-store-branch-card__link {
    margin-top: auto;
    color: #AA0003;
    font-weight: 700;
    text-decoration: none;
}

.saminkala-store-location-picker {
    height: 440px;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid #dcdcde;
    border-radius: 12px;
    background: #f6f7f7;
}

.saminkala-store-map-admin-fields {
    max-width: 100%;
}

.saminkala-store-map-admin-fields .regular-text {
    width: min(420px, 100%);
}

@media (max-width: 767px) {
    .saminkala-store-map {
        min-height: min(var(--saminkala-store-map-height, 560px), 480px);
        height: min(var(--saminkala-store-map-height, 560px), 480px);
        border-radius: 14px;
    }

    .saminkala-store-location-picker {
        height: 360px;
    }
}
