.locations {
    background: var(--white);
}

.locations__wrapper {
    gap: 32px;
    display: flex;
    flex-direction: column;
}

.locations-title {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 48px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    text-align: center;
    color: var(--gray-100);
}

.locations-tabs {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
}

.locations-tab {
    display: flex;
    flex-direction: row;
    padding: 24px;
    gap: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.locations-tab svg path {
    transition: fill 0.3s ease;
}

.locations-tab.active {
    background: var(--gray-20);
}

.locations-tab.active svg path {
    fill: var(--gray-100);
}

.locations-tab__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 20px;
}

.locations-tab__text .location {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.locations-tab__text .location .city {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    color: var(--gray-100);
}

.locations-tab__text .location .address {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--gray-60);
}

.locations-tab__text .work-day {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.locations-tab__text .work-day .schedule {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--gray-100);

}

.locations-tab__text .work-day .phone {
    font-family: PP Neue Montreal;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 140%;
    letter-spacing: 0%;
    color: var(--gray-100);
    text-decoration: none;
}

.locations-map-container {
    margin-top: clamp(32px, 2.92vw, 56px);
    width: 100%;
    display: flex;
    justify-content: center;
}

.locations-map-wrapper {
    position: relative;
    width: clamp(320px, 42.6vw, 818px);
    height: clamp(200px, 20.31vw, 390px);
}

.locations-map {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    display: block;
}

.locations-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.locations-route-btn {
    position: absolute;
    bottom: clamp(20px, 2.08vw, 40px);
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 11;
    pointer-events: auto;
    transition: background 0.3s ease, transform 0.3s ease;
}

.locations-route-btn:hover {
    background: var(--gray-80);
    transform: translateX(-50%) scale(1.05);
}

@media (max-width: 1024px) {
    .locations-map-wrapper {
        width: 100%;
        height: 350px;
    }
}