/* Shaina Product Slider */
.shaina-slider {
	--shaina-accent: #E1285A;
	--shaina-gap: 22px;
	width: 100%;
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

.shaina-slider-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
}

.shaina-slider-title {
	margin: 0;
	font-size: clamp(24px, 3vw, 38px);
	font-weight: 800;
	line-height: 1.1;
	color: #151515;
}

.shaina-slider-arrows {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.shaina-slider-prev,
.shaina-slider-next {
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font-size: 30px;
	line-height: 1;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: transform .2s ease, background .2s ease;
}

.shaina-slider-prev:hover,
.shaina-slider-next:hover {
	background: var(--shaina-accent);
	transform: translateY(-2px);
}

.shaina-slider-viewport {
	overflow: hidden;
	width: 100%;
}

.shaina-slider-track {
	display: flex;
	gap: var(--shaina-gap);
	transition: transform .35s ease;
	will-change: transform;
}

.shaina-product-slide {
	flex: 0 0 calc((100% - (var(--slides-visible, 4) - 1) * var(--shaina-gap)) / var(--slides-visible, 4));
	min-width: 0;
}

.shaina-product-card {
	height: 100%;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, .08);
	border-radius: 18px;
	box-shadow: 0 14px 35px rgba(0, 0, 0, .08);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}

.shaina-product-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.shaina-product-image {
	position: relative;
	display: block;
	overflow: hidden;
	background: #f7f7f7;
	aspect-ratio: 1 / 1.15;
}

.shaina-product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .35s ease;
}

.shaina-product-card:hover .shaina-product-image img {
	transform: scale(1.04);
}

.shaina-sale-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--shaina-accent);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.shaina-product-content {
	padding: 16px 16px 18px;
	text-align: center;
}

.shaina-product-title {
	margin: 0 0 8px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.shaina-product-title a {
	color: #151515;
	text-decoration: none;
}

.shaina-product-title a:hover {
	color: var(--shaina-accent);
}

.shaina-product-price {
	margin-bottom: 14px;
	font-size: 15px;
	font-weight: 800;
	color: #151515;
}

.shaina-product-price del {
	opacity: .55;
	font-weight: 500;
}

.shaina-product-price ins {
	text-decoration: none;
	color: var(--shaina-accent);
}

.shaina-product-button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px !important;
	border-radius: 999px !important;
	background: var(--shaina-accent) !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	border: 0 !important;
	line-height: 1.2 !important;
	transition: transform .2s ease, opacity .2s ease !important;
}

.shaina-product-button:hover {
	transform: translateY(-2px);
	opacity: .92;
	color: #fff !important;
}

.shaina-slider-empty {
	max-width: 1140px;
	margin: 20px auto;
	padding: 16px 18px;
	border-radius: 12px;
	background: #fff4f6;
	color: #9d173d;
	font-weight: 700;
}

@media (max-width: 767px) {
	.shaina-slider { --shaina-gap: 16px; }
	.shaina-slider-header { align-items: flex-start; }
	.shaina-slider-prev,
	.shaina-slider-next {
		width: 38px;
		height: 38px;
		font-size: 26px;
	}
	.shaina-product-content { padding: 14px; }
}
