

/* Start:/local/templates/kuhni/components/bitrix/map.yandex.view/contacts_markers_new/style.css?17770938195714*/
.page-title {
    font-size: 48px;
    font-weight: 500;
    color: #303030;
    margin: 0 0 30px 0;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0px;
    font-family: 'Bebas Neue Cyrillic', sans-serif;
}

.contacts-section {
    padding: 0 0 20px 0;
    background-color: #fff;
}

/* Контейнер с сеткой для выравнивания высоты */
.contacts-container {
    display: grid;
    grid-template-columns: 505px 1fr; /* Левая часть 505px, правая - остальное */
    gap: 20px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch; /* Растягиваем ячейки на всю высоту */
}

.contact-info {
    width: 100%;
    height: 100%; /* Занимает всю высоту ячейки */
}

.contact-map-container {
    width: 100%;
    height: 100%; /* Занимает всю высоту ячейки */
}

.contact-map {
    width: 100%;
    height: 100%; /* Карта на всю высоту контейнера */
    min-height: 400px; /* Минимальная высота для мобильных */
    background-color: #D9D9D9;
    border-radius: 0px;
    overflow: hidden;
}

/* Табы городов - стиль из Фигмы */
.city-tabs {
    display: flex;
    flex-direction: row;
    gap: 0px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 18px;
}

.city-tab {
    flex: 1;
    text-align: center;
    padding: 0 0 13px 0;
    border-bottom: 1px solid #e1e1e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-tab.active {
    border-bottom: 1px solid #ce2e2e;
}

.city-tab span {
    font-family: 'Bebas Neue Cyrillic', sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #e1e1e1;
    transition: color 0.3s ease;
}

.city-tab.active span {
    color: #ce2e2e;
}

/* Карточки офисов */
.office-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background-color: #F2F3F5;
    border-radius: 0px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.office-card.warehouse-card {
    opacity: 0.49;
}

.office-icon {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.office-icon svg:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 48px;
    height: 48px;
}

.office-icon-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.office-icon.small-icon .office-icon-inner {
    width: 20px;
    height: 20px;
}

.office-details {
    flex: 1;
}

.office-title {
    font-size: 16px;
    font-weight: 600;
    color: #303030;
    margin-bottom: 8px;
    font-family: 'Inter Tight', sans-serif;
}

.office-address {
    font-size: 16px;
    font-weight: 600;
    color: #818084;
    line-height: 1.4;
    font-family: 'Inter Tight', sans-serif;
}

/* Контактные элементы (телефон, email) */
.contact-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background-color: #F2F3F5;
    border-radius: 0px;
    margin-bottom: 10px;
}

.contact-item .contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter Tight', sans-serif;
}

.contact-item .contact-details a {
    color: #818084;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
    font-family: 'Inter Tight', sans-serif;
}

.contact-item .contact-details a:hover {
    color: #ce2e2e;
}

/* Строка с графиком и соцсетями */
.info-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.time-item {
    flex: 0 0 207px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background-color: #F2F3F5;
    border-radius: 0px;
    box-sizing: border-box;
}

.time-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-details span {
    color: #818084;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    font-family: 'Inter Tight', sans-serif;
}

.social-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0px;
    background-color: #F2F3F5;
    border-radius: 0px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; 
    height: 40px;
    background-color: #ce2e2e;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
      /* opacity: 0.8;*/
	 background-color: #090909;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 1024px) {
    .contacts-container {
        grid-template-columns: 1fr; /* На мобильных одна колонка */
        gap: 20px;
    }
    
    .contact-map {
        min-height: 400px;
        height: 400px; /* Фиксированная высота на мобильных */
    }
}

@media (max-width: 768px) {
    .info-row {
        flex-direction: column;
    }
    
    .time-item {
        flex: 1 1 auto;
        width: 100%;
    }
    
    .city-tab span {
        font-size: 20px;
    }
}
/* End */
/* /local/templates/kuhni/components/bitrix/map.yandex.view/contacts_markers_new/style.css?17770938195714 */
