/* Контейнер 360 */
#car360 {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	cursor: pointer;
}

/* Картинки (для всех экранов автоматически) */
#car360 img {
	width: 100%;
	height: auto;
	display: none;
}

#car360 img.active {
	display: block;
}

.car360-arrow {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	opacity: 0.6;
	animation: pulse 1.6s infinite;
	pointer-events: none;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: 50;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.car360-arrow.left {
	left: 10px;
	background-image: url('/image/catalog/360/arrow-left.svg');
}

.car360-arrow.right {
	right: 10px;
	background-image: url('/image/catalog/360/arrow-right.svg');
}


@keyframes pulse {
	0% { transform: scale(1); opacity: .35; }
	50% { transform: scale(1.2); opacity: .75; }
	100% { transform: scale(1); opacity: .35; }
}

/* Подсказка: "двигай курсором" */
.car360-hint {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	color: #fff;
	background: rgba(0,0,0,0.4);
	padding: 6px 12px;
	border-radius: 10px;
	animation: fadeHint 3s infinite;
	pointer-events: none;
}

@keyframes fadeHint {
	0% { opacity: 0; }
	20% { opacity: 1; }
	80% { opacity: 1; }
	100% { opacity: 0; }
}

/* Адаптивность */
@media (max-width: 480px) {
	.car360-arrow {
		width: 28px;
		height: 28px;
		opacity: 0.45;
	}

	.car360-hint {
		font-size: 12px;
		padding: 4px 8px;
	}
}

/* --- Трёхколоночный блок вокруг #car360 --- */
.car360-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 0;
	font-family: 'Montserrat', sans-serif;
}

.car360-text {
	width: 25%;
	color: #1a1a1a;
	font-size: 18px;
	line-height: 1.4;
}

/* Выравнивание по сторонам */
.car360-text:first-child {
	text-align: left;
}

.car360-text:last-child {
	text-align: right;
}

#car360 {
	width: 50%;
	text-align: center;
}

/* Адаптив для планшетов */
@media (max-width: 992px) {
	.car360-wrapper {
		flex-direction: column;
		text-align: center;
	}
	.car360-text {
		width: 100%;
		margin-bottom: 15px;
	}
	#car360 {
		width: 100%;
	}
}

/* Адаптив для телефонов */
@media (max-width: 480px) {
	.car360-text {
		font-size: 16px;
		line-height: 1.3;
	}
}
