.rox-map-section {
    position: relative;
    height: 600px;
    width: 100%;
}

.rox-map-embed {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(0.8) brightness(1.1); /* Карта в стиле "blueprint" */
}

.rox-map-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none; /* Карта будет кликабельна сквозь контейнер */
}

.rox-contact-card {
    pointer-events: auto; /* Карточка кликабельна */
    background: var(--main-color, #de2a1c) !important;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    /* border-radius: 20px; */
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.rox-contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 32px !important;
    color: #ffffff !important;
}

.rox-contact-item {
    margin-bottom: 24px;
     

}

.rox-contact-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin-bottom: 4px;
}

.rox-contact-value {
    font-size: 16px;
    font-weight: 500;
 color: #ffffff !important;
    text-decoration: none;
    line-height: 1.4;
     text-align: left !important;
       word-wrap: break-word;
    hyphens: none;
}

a.rox-contact-value:hover { color: #0b64e9; }

/* Социальные сети */
.rox-social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.rox-social-icon {
    width: 32px;
    height: 32px;
    background-size: cover;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.rox-social-icon:hover { opacity: 1; }



/* Общий контейнер соцсетей */
.rox-social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    align-items: center;
}

/* Базовый стиль для иконок */
.rox-social-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

/* Эффект при наведении */
.rox-social-icon:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-2px);
}

/* Ваши пути */
.sl__item--max { background-image: url(/images/max-messenger-sign-logo.svg); }
.sl__item--telegram { background-image: url(/images/telegram.png); }
.sl__item--whatsapp { background-image: url(/images/whatsapp.png); }
.sl__item--post { background-image: url(/images/elektro.png); }

/* Скрываем лишнее на мобильных */
@media (max-width: 768px) {
    .rox-map-section { height: auto; }
    .rox-map-embed { position: relative; height: 300px; }
    .rox-contact-card { border-radius: 0; box-shadow: none; max-width: 100%; }
}

