.lm-showrooms {
    --lm-showrooms-bg: #f6f1ee;
    --lm-showrooms-title: #2f2a24;
    --lm-showrooms-text: #5f5952;
    --lm-showrooms-accent: #c79a6b;
    --lm-showrooms-card-bg: #ffffff;
    --lm-showrooms-map-bg: #d7d0ca;
    --lm-showrooms-gap: 24px;
    --lm-showrooms-card-height: 148px;
    padding: clamp(36px, 5vw, 72px) 0;
    background: var(--lm-showrooms-bg);
    color: var(--lm-showrooms-text);
}

.lm-showrooms__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lm-showrooms__header {
    text-align: center;
    margin-bottom: clamp(24px, 4vw, 48px);
}

.lm-showrooms__eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--lm-showrooms-accent);
    margin-bottom: 8px;
}

.lm-showrooms__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--lm-showrooms-title);
    margin: 0 0 8px;
}

.lm-showrooms__subtitle {
    margin: 0 auto;
    max-width: 560px;
    font-size: 1rem;
}

.lm-showrooms__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.lm-showrooms__list {
    display: flex;
    flex-direction: column;
    gap: var(--lm-showrooms-gap);
    max-height: calc(var(--lm-showrooms-card-height) * 2 + var(--lm-showrooms-gap));
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: none;
    mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

.lm-showrooms__list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.lm-showrooms__card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    background: transparent;
    border-radius: 16px;
    border: 1px solid transparent;
    box-shadow: none;
    text-align: left;
    min-height: var(--lm-showrooms-card-height);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: pointer;
}

.lm-showrooms__card:hover,
.lm-showrooms__card:focus-visible,
.lm-showrooms__card.is-active {
    border-color: rgba(199, 154, 107, 0.35);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
    outline: none;
}

.lm-showrooms__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(199, 154, 107, 0.12);
    color: var(--lm-showrooms-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lm-showrooms__icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.lm-showrooms__details {
    display: grid;
    gap: 6px;
    align-items: start;
    text-align: left;
    width: 100%;
}

.lm-showrooms__name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--lm-showrooms-title);
}

.lm-showrooms__address,
.lm-showrooms__hours,
.lm-showrooms__phone {
    font-size: 0.92rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-transform: none;
}

.lm-showrooms__phone {
    color: var(--lm-showrooms-accent);
    font-weight: 600;
}

.lm-showrooms__empty {
    padding: 18px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
}

.lm-showrooms__map {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lm-showrooms__map-frame {
    background: var(--lm-showrooms-map-bg);
    border-radius: 18px;
    min-height: 320px;
    height: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.lm-showrooms__map-iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

.lm-showrooms__map-placeholder {
    height: 100%;
    min-height: 360px;
    display: grid;
    place-items: center;
    text-align: center;
    color: rgba(47, 42, 36, 0.55);
    gap: 8px;
}

.lm-showrooms__map-pin {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: rgba(199, 154, 107, 0.2);
    color: var(--lm-showrooms-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lm-showrooms__map-pin svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.lm-showrooms__map-label {
    font-weight: 600;
}

.lm-showrooms__map-link {
    align-self: flex-start;
    color: var(--lm-showrooms-accent);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.lm-showrooms__map-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.lm-showrooms__map-link:hover::after,
.lm-showrooms__map-link:focus-visible::after {
    transform: scaleX(1);
}

.lm-showrooms__map-link.is-hidden {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 960px) {
    .lm-showrooms__grid {
        grid-template-columns: 1fr;
    }

    .lm-showrooms__list {
        max-height: calc(var(--lm-showrooms-card-height) * 1.25 + var(--lm-showrooms-gap));
        mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    }
}

@media (max-width: 640px) {
    .lm-showrooms__card {
        padding: 18px;
    }
}
