.swiper-slide.main-slider__item {
	position: relative;
	display: flex; /* Важно для центрирования .slide-content */
	align-items: center;
	justify-content: center;
}


/* 2. Контейнер для двух колонок */
.slide-content {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 3rem;
	width: 100%;
	max-width: 1800px;
	padding: 2rem 4rem;
	box-sizing: border-box;
}

/* 3. Левая колонка (текст) */
.slide-info {
	flex-shrink: 0;
}
.slide-title {
	font-size: 4rem;
	font-weight: 900;
	margin: 0;
	line-height: 1.1;
	text-transform: uppercase;
	color: #fff;
}
.slide-title .brand-name { color: #e53935; }
.slide-subtitle {
	display: block;
	font-size: 4.2rem;
	font-weight: 700;
	margin-top: 0.5rem;
	text-transform: none;
	color: #fff;
}

/* 4. НОВЫЙ СТИЛЬ: Обертка для правой колонки */
.slide-right-column {
	flex-basis: 55%; /* Занимает больше места */
	display: flex;
	flex-direction: column; /* Элементы внутри (картинка и кнопки) встают друг под другом */
	gap: 2rem; /* Расстояние между картинкой и блоком кнопок */
}

/* 5. Правая колонка: блок с продуктом (без flex-basis) */
.product-showcase {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.image-wrapper {
	position: relative;
	display: inline-block;
	line-height: 0;
	max-width: 100%;
}
.product-images {
	max-width: 100%;
	object-fit: contain;
	filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
}

/* 6. Блок с кнопками */
.slide-buttons {
	display: flex;
	gap: 1.5rem;
	width: 100%; /* Растягиваем на всю ширину правой колонки */
}
.button {
	padding: 1.5rem;
	text-decoration: none;
	color: #fff;
	flex: 1; /* Кнопки делят пространство поровну */
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.button:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.button h2 { margin: 0 0 0.5rem 0; font-size: 1.2rem; color: #fff;}
.button p { margin: 0; font-size: 0.9rem; line-height: 1.4; opacity: 0.9; color: #fff;}
.button-general { background-color: #d52027; }
.button-industrial { background-color: #2c3e50; }

/* 7. Точки (hotspots) - без изменений */
/* --- Ваши старые стили --- */
.hotspot {
	position: absolute;
	z-index: 10;
	transform: translate(-50%, -50%);
}

.hotspot-info {
	position: absolute;
	bottom: calc(100% + 15px);
	left: 50%;
	transform: translateX(-50%);
	background-color: white;
	color: #333;
	padding: 1rem;
	border-radius: 5px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	width: 250px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
}

.hotspot:hover .hotspot-info {
	opacity: 1;
	visibility: visible;
	/* Убрал translateY, чтобы не мешать анимации плюсика */
	/* transform: translateX(-50%) translateY(-5px); */
}

.hotspot-info h3 {
	margin: 0 0 0.5rem 0;
	font-size: 1rem;
}

.hotspot-info p {
	margin-top: 20px;
	font-size: 0.9rem;
}

/* --- Новые и измененные стили для точки --- */

/* 1. Добавляем position: relative, чтобы позиционировать плюсик внутри точки */
.hotspot-dot {
	position: relative;
	width: 20px;
	height: 20px;
	background-color: #e53935;
	/*border: 3px solid #e53935;*/
	border-radius: 50%;
	cursor: pointer;
	animation: pulse 2s infinite;
	/* Добавляем плавный переход для увеличения */
	transition: transform 0.3s ease;
}

/* 2. Создаем "палочки" для плюсика с помощью псевдо-элементов */
.hotspot-dot::before,
.hotspot-dot::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff; /* Цвет плюсика */
	transition: transform 0.3s ease; /* Анимация превращения в крестик */
}

/* Вертикальная палочка */
.hotspot-dot::before {
	width: 2px;
	height: 10px;
}

/* Горизонтальная палочка */
.hotspot-dot::after {
	width: 10px;
	height: 2px;
}


/* 3. Анимации при наведении на весь хотспот */
.hotspot:hover .hotspot-dot {
	transform: scale(1.2);
	animation: none; /* Отключаем пульсацию при наведении */
}

/* Поворачиваем палочки на 45 градусов, превращая "+" в "х" */
.hotspot:hover .hotspot-dot::before,
.hotspot:hover .hotspot-dot::after {
	transform: translate(-50%, -50%) rotate(45deg);
}


/* Ваша анимация пульсации (без изменений) */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 1);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
	}
}

.swiper-pagination {
	left: 20px !important;
	width: auto !important;
}
.swiper-pagination-bullet {
	width: 20px !important;
	height: 20px !important;
	background: #fff !important;
	opacity: 1 !important;
	margin: 0 5px !important;
	border-radius: 0 !important;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: #d52027 !important;
	width: 20px !important;;
	opacity: 1;
}

/* 8. Адаптивность */
@media (max-width: 1024px) {
	.slide-content { flex-direction: column; text-align: center; }
	.slide-info { order: 2; } /* Текст уходит вниз */
	.slide-right-column { order: 1; width: 100%; } /* Правая колонка (картинка+кнопки) встает наверх */
	.product-image { max-height: 300px; }
	.slide-title { font-size: 2.5rem; }
	.product-images {
		width: 60%;
	}
}
@media (max-width: 768px) {
	.slide-title { font-size: 2rem; }
	.slide-buttons { flex-direction: column; align-items: center; } /* Кнопки друг под другом */
	.button { width: 100%; max-width: 300px; }
	.product-images {
		display: none;
	}

	.slide-subtitle {
		display: none;
	}
}