/**
 * Cart interested products styles.
 *
 * Location: /assets/css/frontend/cart/cart-interest.css
 *
 * @package SunTechPortal
 */

.suntech-portal .stp-cart-interest,
.stp-cart-interest {
	position: relative;
	z-index: 1;
	width: 100%;
	min-width: 0;
	margin-top: 30px;
}

.suntech-portal .stp-cart-interest__header,
.stp-cart-interest__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 16px;
}

.suntech-portal .stp-cart-interest__heading,
.stp-cart-interest__heading {
	min-width: 0;
}

.suntech-portal .stp-cart-interest__title,
.stp-cart-interest__title {
	margin: 0;
	color: var(--stp-cart-text, #0f172a);
	font-size: 22px;
	font-weight: 850;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.suntech-portal .stp-cart-interest__text,
.stp-cart-interest__text {
	max-width: 560px;
	margin: 6px 0 0;
	color: var(--stp-cart-muted, #64748b);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.6;
}

.suntech-portal .stp-cart-interest__viewport,
.stp-cart-interest__viewport {
	position: relative;
	z-index: 1;
	width: calc(100% + 20px);
	min-width: 0;
	margin: -10px -10px 0;
	padding: 10px 10px 16px;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: thin;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.suntech-portal .stp-cart-interest__viewport:focus,
.stp-cart-interest__viewport:focus {
	outline: 2px solid rgba(255, 90, 0, 0.18);
	outline-offset: 3px;
}

.suntech-portal .stp-cart-interest__viewport::-webkit-scrollbar,
.stp-cart-interest__viewport::-webkit-scrollbar {
	height: 7px;
}

.suntech-portal .stp-cart-interest__viewport::-webkit-scrollbar-track,
.stp-cart-interest__viewport::-webkit-scrollbar-track {
	background: #f1f5f9;
	border-radius: 999px;
}

.suntech-portal .stp-cart-interest__viewport::-webkit-scrollbar-thumb,
.stp-cart-interest__viewport::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 999px;
}

.suntech-portal .stp-cart-interest__track,
.stp-cart-interest__track {
	position: relative;
	z-index: 1;
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc(100% / 6);
	gap: 0;
	align-items: stretch;
	min-width: 0;
	overflow: visible;
	isolation: isolate;
}

.suntech-portal .stp-cart-interest__item,
.stp-cart-interest__item {
	position: relative;
	z-index: 1;
	display: flex;
	min-width: 0;
	height: 100%;
	overflow: visible;
	scroll-snap-align: start;
}

.suntech-portal .stp-cart-interest__item:hover,
.suntech-portal .stp-cart-interest__item:focus-within,
.stp-cart-interest__item:hover,
.stp-cart-interest__item:focus-within {
	z-index: 50;
}

.suntech-portal .stp-cart-interest__item > *,
.stp-cart-interest__item > * {
	width: 100%;
	min-width: 0;
	height: 100%;
}

.suntech-portal .stp-cart-interest .stp-product-card,
.stp-cart-interest .stp-product-card {
	width: 100%;
	height: 100%;
}

.suntech-portal .stp-cart-interest .stp-product-card:hover,
.suntech-portal .stp-cart-interest .stp-product-card:focus-within,
.stp-cart-interest .stp-product-card:hover,
.stp-cart-interest .stp-product-card:focus-within {
	z-index: 60;
}

@media (prefers-reduced-motion: reduce) {
	.suntech-portal .stp-cart-interest__viewport,
	.stp-cart-interest__viewport {
		scroll-behavior: auto;
	}
}

@media (max-width: 1180px) {
	.suntech-portal .stp-cart-interest__track,
	.stp-cart-interest__track {
		grid-auto-columns: calc(100% / 4);
	}
}

@media (max-width: 900px) {
	.suntech-portal .stp-cart-interest__track,
	.stp-cart-interest__track {
		grid-auto-columns: calc(100% / 3);
	}
}

@media (max-width: 640px) {
	.suntech-portal .stp-cart-interest,
	.stp-cart-interest {
		margin-top: 24px;
	}

	.suntech-portal .stp-cart-interest__header,
	.stp-cart-interest__header {
		display: block;
		margin-bottom: 14px;
	}

	.suntech-portal .stp-cart-interest__title,
	.stp-cart-interest__title {
		font-size: 19px;
	}

	.suntech-portal .stp-cart-interest__text,
	.stp-cart-interest__text {
		font-size: 12px;
		line-height: 1.55;
	}

	.suntech-portal .stp-cart-interest__viewport,
	.stp-cart-interest__viewport {
		width: calc(100% + 16px);
		margin: -8px -8px 0;
		padding: 8px 8px 14px;
	}

	.suntech-portal .stp-cart-interest__track,
	.stp-cart-interest__track {
		grid-auto-columns: 50%;
	}
}