/* ===== Contact Page Styles - Start ===== */

/* Contacts Section - Start */
.contact-page .contacts-section {
	padding-top: 0;
	padding-bottom: 80px;
}

/* Левая колонка контактов - Start */
.contact-page .col-contacts {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-page .col-contacts .h2 {
	margin-bottom: 5px;
}

/* Контактные данные */
.contact-page .contact-info-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-page .contact-info-value {
	font-weight: 300;
}

/* Блок консультации */
.contact-page .contact-expert-block {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	background: var(--light-gray);
	border-radius: var(--radius-medium);
	margin-top: auto;
}

.contact-page .expert-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.contact-page .expert-avatar {
	width: 50px;
	height: 50px;
	border-radius: var(--radius-max);
	object-fit: cover;
	flex-shrink: 0;
}

.contact-page .expert-text {
	font-weight: 500;
	line-height: 1.3;
}
/* Левая колонка контактов - End */

/* Правая колонка магазинов - Start */
.contact-page .col-stores {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Табы городов */
.contact-page .store-tabs {
	gap: 10px;
}

.contact-page .store-tab.active {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

/* Карты */
.contact-page .store-maps {
	border-radius: var(--radius-medium);
	overflow: hidden;
}

.contact-page .store-map {
	display: none;
}

.contact-page .store-map.active {
	display: block;
}

.contact-page .store-map iframe {
	width: 100%;
	height: 500px;
	border: none;
	display: block;
}
/* Правая колонка магазинов - End */
/* Contacts Section - End */

/* Adaptive - Start */
@media (max-width: 1279px) {
	.contact-page .contacts-section {
		padding-top: 0;
		padding-bottom: 80px;
	}

	.contact-page .col-contacts {
		width: 100%;
		gap: 20px;
		margin-bottom: 60px;
	}

	.contact-page .col-stores {
		width: 100%;
	}

	.contact-page .store-map iframe {
		height: 350px;
	}
}
/* Adaptive - End */

/* ===== Contact Page Styles - End ===== */
