/* MSC Store Promotions — carousel on shop, cart progress */

.msc-store-promo-shop-wrap {
	margin-bottom: 24px;
	width: 100%;
	max-width: 100%;
	clear: both;
	box-sizing: border-box;
	/* Fallback if injected into a flex toolbar row */
	flex: 1 1 100%;
}

.shop-loop-head .msc-store-promo-shop-wrap,
.wd-shop-tools .msc-store-promo-shop-wrap {
	flex: 1 1 100%;
	width: 100%;
	max-width: 100%;
}

.msc-store-promo-carousel {
	position: relative;
	max-width: 100%;
}

/* Скрыть артефакты старой разметки (button-навигация до store7) */
.msc-store-promo-carousel button.msc-store-promo-carousel__nav,
.msc-store-promo-carousel button.msc-store-promo-carousel__dot {
	display: none !important;
}

.msc-store-promo-carousel__controls {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.msc-store-promo-carousel__controls .msc-store-promo-carousel__nav,
.msc-store-promo-carousel__controls .msc-store-promo-carousel__dots {
	pointer-events: auto;
}

.msc-store-promo-carousel__track {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	/* Высота под активный слайд — баннеры могут быть разной высоты */
	height: auto;
}

.msc-store-promo-carousel__slide {
	display: none;
}

.msc-store-promo-carousel__slide.is-active {
	display: block;
}

.msc-store-promo-carousel__banner {
	line-height: 0;
}

.msc-store-promo-carousel__picture {
	display: block;
	width: 100%;
	line-height: 0;
}

.msc-store-promo-carousel__img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.msc-store-promo-carousel__nav {
	position: absolute;
	top: 50%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.92);
	color: #219e31;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transform: translateY(-50%);
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	-webkit-user-select: none;
	user-select: none;
}

.msc-store-promo-carousel__nav--prev {
	left: 12px;
}

.msc-store-promo-carousel__nav--next {
	right: 12px;
}

.msc-store-promo-carousel__nav-icon {
	display: block;
	width: 22px;
	height: 22px;
}

.msc-store-promo-carousel__nav:hover,
.msc-store-promo-carousel__nav:focus {
	background: #219e31;
	color: #fff;
	box-shadow: 0 4px 16px rgba(33, 158, 49, 0.35);
	outline: none;
}

.msc-store-promo-carousel__nav:active {
	transform: translateY(-50%) scale(0.96);
}

.msc-store-promo-carousel__dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 8px 12px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	transform: translateX(-50%);
}

.msc-store-promo-carousel__dot {
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #c5c5c5;
	cursor: pointer;
	transition: width 0.25s ease, background 0.25s ease, opacity 0.25s ease;
	flex-shrink: 0;
}

.msc-store-promo-carousel__dot.is-active {
	width: 28px;
	background: #219e31;
}

.msc-store-promo-carousel__dot:hover,
.msc-store-promo-carousel__dot:focus {
	background: #7bc487;
	outline: none;
}

.msc-store-promo-carousel__dot.is-active:hover,
.msc-store-promo-carousel__dot.is-active:focus {
	background: #1a7d27;
}

.msc-store-promo-carousel__dot:focus-visible {
	box-shadow: 0 0 0 2px #fff, 0 0 0 3px #219e31;
}

.msc-store-promo-hint {
	margin-top: 12px;
	padding: 10px 14px;
	background: #f7fdf8;
	border: 1px solid #d4edda;
	border-radius: 6px;
	font-size: 14px;
	color: #333;
}

.msc-store-promo-cart {
	margin: 0 0 20px;
	padding: 14px 16px;
	background: #f7fdf8;
	border: 1px solid #d4edda;
	border-radius: 6px;
}

.msc-store-promo-cart__heading {
	margin: 0 0 12px;
	font-size: 16px;
}

.msc-store-promo-cart__list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.msc-store-promo-progress {
	padding: 10px 12px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 6px;
}

.msc-store-promo-progress__title {
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
	color: #219e31;
}

.msc-store-promo-progress__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.45;
}

.msc-store-promo-progress__text--success {
	color: #219e31;
	font-weight: 600;
}

.msc-store-promo-progress__bar {
	height: 8px;
	margin-top: 8px;
	background: #e8e8e8;
	border-radius: 4px;
	overflow: hidden;
}

.msc-store-promo-progress__fill {
	display: block;
	height: 100%;
	background: #219e31;
	border-radius: 4px;
	transition: width 0.3s ease;
}

.msc-store-promo-declined {
	margin-top: 8px;
	padding: 8px 10px;
	background: #f7f7f7;
	border-radius: 4px;
	font-size: 13px;
}

.msc-store-gift__badge {
	display: inline-block;
	margin-right: 6px;
	padding: 2px 8px;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: #219e31;
	border-radius: 4px;
	vertical-align: middle;
}

.msc-store-gift__free {
	color: #219e31;
	font-weight: 600;
}

.msc-store-gift__restore,
.msc-store-gift__remove {
	appearance: none;
	background: transparent;
	border: 0;
	padding: 0;
	font-size: 13px;
	font-weight: 600;
	color: #219e31;
	cursor: pointer;
	text-decoration: underline;
}

.msc-store-gift__restore:hover,
.msc-store-gift__restore:focus,
.msc-store-gift__remove:hover,
.msc-store-gift__remove:focus {
	color: #1a7d27;
}

@media (max-width: 767px) {
	.msc-store-promo-shop-wrap {
		margin-bottom: 16px;
	}

	.msc-store-promo-carousel__img {
		border-radius: 6px;
	}

	.msc-store-promo-carousel__nav {
		width: 38px;
		height: 38px;
	}

	.msc-store-promo-carousel__nav--prev {
		left: 8px;
	}

	.msc-store-promo-carousel__nav--next {
		right: 8px;
	}

	.msc-store-promo-carousel__dots {
		bottom: 10px;
		padding: 6px 10px;
		gap: 6px;
	}

	.msc-store-promo-carousel__nav-icon {
		width: 20px;
		height: 20px;
	}
}
