/* SEIK product recommendations - light horizontal scrollers */
.seikRecsReplace {
	margin: 2.5rem 0 1.5rem;
	clear: both;
}
.seikRecsReplace > .seikRecsRoot {
	margin: 0;
}
.seikRecsRoot {
	margin: 2rem 0 1.5rem;
	clear: both;
}
.seikRecsBlock {
	margin: 0 0 1.75rem;
}
.seikRecsTitle {
	font-size: 1.15rem;
	margin: 0 0 0.75rem;
	font-weight: 600;
}
.seikRecsTrack {
	display: flex;
	gap: 0.85rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 0.35rem;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}
.seikRecsCard {
	flex: 0 0 148px;
	max-width: 148px;
	scroll-snap-align: start;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.seikRecsThumb {
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f3f3f3;
	border-radius: 2px;
}
.seikRecsImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.seikRecsName {
	font-size: 0.85rem;
	line-height: 1.25;
	color: inherit;
	text-decoration: none;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 2.1em;
}
.seikRecsPrice {
	font-size: 0.9rem;
	font-weight: 600;
}
.seikRecsBtn {
	margin-top: auto !important;
	text-align: center;
	font-size: 0.78rem !important;
	padding: 0.35rem 0.5rem !important;
	line-height: 1.2 !important;
}
.seikRecsSkelCard {
	flex: 0 0 148px;
	height: 220px;
	border-radius: 2px;
	background: linear-gradient(90deg, #eee 25%, #f7f7f7 37%, #eee 63%);
	background-size: 400% 100%;
	animation: seikRecsShimmer 1.2s ease-in-out infinite;
}
@keyframes seikRecsShimmer {
	0% { background-position: 100% 0; }
	100% { background-position: 0 0; }
}

/* After-add drawer */
.seikRecsAfterAdd {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 100000;
	background: #fff;
	box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.14);
	padding: 0.85rem 1rem 1.1rem;
	max-height: 46vh;
	overflow: auto;
}
.seikRecsAfterAdd.is-open {
	display: block;
}
.seikRecsDrawerHead {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
}
.seikRecsDrawerClose {
	border: 0;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.15rem 0.4rem;
}
.seikRecsRoot--drawer {
	margin: 0;
}

@media (min-width: 850px) {
	.seikRecsCard {
		flex-basis: 168px;
		max-width: 168px;
	}
	.seikRecsSkelCard {
		flex-basis: 168px;
	}
}
