/* Kids Collections scroll-snap carousel. */
.kids-carousel {
	padding: 80px 0 88px;
	background: #f5f5f5;
	overflow: hidden;
}
.kids-carousel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 36px;
}
.kids-carousel__header h2 {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
	color: #3d4760;
	margin: 0;
	letter-spacing: 0;
}
.kids-carousel__stage {
	position: relative;
}
.kids-carousel__track {
	display: flex;
	gap: 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	scroll-behavior: smooth;
}
.kids-carousel__track::-webkit-scrollbar {
	display: none;
}
.kids-carousel__slide {
	flex: 0 0 25%;
	scroll-snap-align: start;
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
}
.kids-carousel__slide img {
	display: block;
	width: 100%;
	height: 490px;
	object-fit: cover;
	object-position: center;
	transition: transform 0.5s ease;
}
.kids-carousel__slide:hover img {
	transform: scale(1.04);
}
.kids-carousel__name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 48px 16px 16px;
	background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	text-align: center;
	letter-spacing: 0.03em;
	opacity: 0;
	transition: opacity 0.3s;
}
.kids-carousel__slide:hover .kids-carousel__name,
.kids-carousel__slide:focus .kids-carousel__name {
	opacity: 1;
}
.kids-carousel__btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: rgba(255,255,255,0.9);
	color: #3d4760;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.15);
	transition: background 0.2s, color 0.2s;
}
.kids-carousel__btn:hover {
	background: #3d4760;
	color: #fff;
}
.kids-carousel__btn--prev {
	left: 16px;
}
.kids-carousel__btn--next {
	right: 16px;
}
.kids-carousel__btn:disabled {
	opacity: 0.35;
	cursor: default;
}
.kids-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}
.kids-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: #c8cdd6;
	padding: 0;
	cursor: pointer;
	transition: background 0.2s, transform 0.2s;
}
.kids-carousel__dot.is-active {
	background: #3d4760;
	transform: scale(1.35);
}
.kids-carousel__empty {
	padding: 60px 24px;
	color: #888;
	font-size: 15px;
	text-align: center;
}

@media (max-width: 1050px) {
	.kids-carousel {
		padding: 64px 0 72px;
	}
	.kids-carousel__header {
		margin-bottom: 28px;
	}
	.kids-carousel__header h2 {
		font-size: 27px;
	}
	.kids-carousel__slide {
		flex: 0 0 33.333%;
	}
	.kids-carousel__slide img {
		height: 390px;
	}
}

@media (max-width: 767px) {
	.kids-carousel {
		padding: 48px 0 56px;
	}
	.kids-carousel__header {
		padding: 0 16px;
		margin-bottom: 22px;
	}
	.kids-carousel__header h2 {
		font-size: 22px;
	}
	.kids-carousel__slide {
		flex: 0 0 50%;
	}
	.kids-carousel__slide img {
		height: 280px;
	}
	.kids-carousel__btn {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}
	.kids-carousel__btn--prev {
		left: 8px;
	}
	.kids-carousel__btn--next {
		right: 8px;
	}
	.kids-carousel__name {
		opacity: 1;
		font-size: 11px;
	}
}

@media (max-width: 480px) {
	.kids-carousel__slide {
		flex: 0 0 80%;
	}
	.kids-carousel__slide img {
		height: 240px;
	}
}
