.grace-salon-map {
    margin: 32px 0 48px;
}

.grace-salon-map__title {
    margin: 0 0 22px;
    color: #1a3052;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
}

.grace-salon-map__layout {
    display: grid;
    grid-template-columns: minmax(260px, 34%) 1fr;
    gap: 24px;
    align-items: stretch;
}

.grace-salon-map__list {
    max-height: 520px;
    overflow: auto;
    padding: 0;
    border: 1px solid #e9edf3;
    border-radius: 8px;
    background: #fff;
}

.grace-salon-map__item {
    display: block;
    width: 100%;
    padding: 16px 18px;
    border: 0;
    border-bottom: 1px solid #e9edf3;
    background: #fff;
    color: #1a3052;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

.grace-salon-map__item:last-child {
    border-bottom: 0;
}

.grace-salon-map__item:hover,
.grace-salon-map__item.is-active {
    background: #fff7e5;
    box-shadow: inset 3px 0 0 #ffaa00;
}

.grace-salon-map__item:disabled {
    cursor: default;
    opacity: 0.62;
}

.grace-salon-map__item-title,
.grace-salon-map__item-address,
.grace-salon-map__item-metro {
    display: block;
}

.grace-salon-map__item-title {
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 600;
}

.grace-salon-map__item-address,
.grace-salon-map__item-metro {
    color: #555;
    font-size: 14px;
    line-height: 1.35;
}

.grace-salon-map__item-metro {
    margin-top: 6px;
}

.grace-salon-map__map-wrap {
    position: relative;
    min-height: 520px;
}

.grace-salon-map__canvas {
    width: 100%;
    height: 520px;
    min-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    background: #eef2f7;
}

.grace-salon-map__notice,
.grace-salon-map__empty {
    padding: 18px;
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.grace-salon-map__notice {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(26, 48, 82, 0.12);
}

.grace-salon-admin-map {
    width: 100%;
    height: 260px;
    margin-top: 12px;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    background: #eef2f7;
}

@media (max-width: 900px) {
    .grace-salon-map__layout {
        grid-template-columns: 1fr;
    }

    .grace-salon-map__list {
        max-height: 320px;
    }
}
