/**
 * Loria Latest Products Slider
 * Native CSS scroll-snap slider with responsive per-view, arrows, and dots.
 */

/* ── Wrapper ─────────────────────────────────────────────────── */
.loria-products-slider-wrapper {
	position: relative;
	width: 100%;
}

/* ── Track ───────────────────────────────────────────────────── */
.loria-products-slider-track {
	display: flex;
	overflow-x: scroll;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-ms-overflow-style: none;
	scrollbar-width: none;
	gap: 16px;       /* overridden inline by JS */
	padding-bottom: 4px; /* keeps box-shadow visible */
	outline: none;
}

.loria-products-slider-track::-webkit-scrollbar {
	display: none;
}

/* ── Slide ───────────────────────────────────────────────────── */
.loria-products-slider-slide {
	flex: 0 0 25%;    /* overridden inline by JS based on per-view */
	max-width: 25%;
	scroll-snap-align: start;
	box-sizing: border-box;
}

/* ── Card ────────────────────────────────────────────────────── */
.loria-products-slider-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background: transparent;
	text-decoration: none;
	color: inherit;
}

/* ── Image link wrapper ──────────────────────────────────────── */
.loria-products-slider-image-link {
	display: block;
	overflow: hidden;
	flex-shrink: 0;
}

/* ── Image container ─────────────────────────────────────────── */
.loria-products-slider-image {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background: #f5f5f5;
	position: relative;
}

.loria-products-slider-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.loria-products-slider-wrapper.has-hover-scale .loria-products-slider-card:hover .loria-products-slider-image img {
	transform: scale(1.05);
}

/* ── Info area ───────────────────────────────────────────────── */
.loria-products-slider-info {
	padding: 12px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 4px;
}

/* ── Rating ──────────────────────────────────────────────────── */
.loria-products-slider-rating .star-rating {
	font-size: 12px;
}

/* ── Title ───────────────────────────────────────────────────── */
.loria-products-slider-title {
	font-size: 18px;
    line-height: 1.2;
	font-weight: 600;
	margin: 0 0 6px;
	font-family: inherit;
}

.loria-products-slider-title a {
	color: inherit;
	text-decoration: none;
	display: block;
	text-align: center;
	padding: 12px;
	min-height: 70px;
}

.loria-products-slider-title a:hover {
	text-decoration: underline;
}

/* ── Price ───────────────────────────────────────────────────── */
.loria-products-slider-price {
	font-size: 15px;
	font-weight: 700;
	margin: 0 0 8px;
	color: #4e4d4d;
	line-height: 1.2;
}

.loria-products-slider-price del {
	opacity: 0.5;
	font-weight: 400;
	margin-inline-end: 4px;
}

.loria-products-slider-price ins {
	text-decoration: none;
}

/* ── Add to Cart ─────────────────────────────────────────────── */
.loria-products-slider-atc {
	display: block;
	width: 100%;
	text-align: center;
	background-color: #4e4d4d;
	color: #ffffff;
	padding: 9px 12px;
	font-size: 13px;
	font-weight: 600;
	font-family: inherit;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
	margin-top: auto;
	border-radius: 0;
	line-height: 1.4;
	box-sizing: border-box;
}

.loria-products-slider-atc:hover,
.loria-products-slider-atc:focus {
	background-color: #333333;
	color: #ffffff;
	text-decoration: none;
}

/* WooCommerce ajax add-to-cart loading state */
.loria-products-slider-atc.loading {
	opacity: 0.65;
	cursor: wait;
}

.loria-products-slider-atc.added {
	display: none;
}

/* ── Navigation Arrows ───────────────────────────────────────── */
.loria-products-slider-arrow {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	color: #4e4d4d;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.12 );
	padding: 0;
	line-height: 0;
}

.loria-products-slider-arrow:hover {
	background-color: #f5f5f5;
	box-shadow: 0 4px 14px rgba( 0, 0, 0, 0.18 );
}

.loria-products-slider-arrow:disabled,
.loria-products-slider-arrow[disabled] {
	opacity: 0.3;
	cursor: not-allowed;
	pointer-events: none;
}

.loria-products-slider-arrow svg {
	display: block;
	flex-shrink: 0;
}

.loria-products-slider-prev {
	inset-inline-start: -22px;
}

.loria-products-slider-next {
	inset-inline-end: -22px;
}

/* RTL – flip chevron icons so prev → right, next → left */
[dir="rtl"] .loria-products-slider-prev svg {
	transform: scaleX( -1 );
}

[dir="rtl"] .loria-products-slider-next svg {
	transform: scaleX( -1 );
}

.loria-products-slider-wrapper:not( .has-arrows ) .loria-products-slider-arrow {
	display: none;
}

/* ── Dots ────────────────────────────────────────────────────── */
.loria-products-slider-dots {
	display: none;
}

.loria-products-slider-wrapper:not( .has-dots ) .loria-products-slider-dots {
	display: none;
}

.loria-products-slider-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #cccccc;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.25s ease, transform 0.25s ease;
	flex-shrink: 0;
}

.loria-products-slider-dot.is-active {
	background-color: #4e4d4d;
	transform: scale( 1.35 );
}

.loria-products-slider-dot:hover:not( .is-active ) {
	background-color: #999999;
}

/* ── Empty state ─────────────────────────────────────────────── */
.loria-products-slider-empty {
	text-align: center;
	color: #888888;
	padding: 24px 0;
	font-size: 14px;
}

/* ── Accessibility ───────────────────────────────────────────── */
.loria-products-slider-arrow:focus-visible {
	outline: 2px solid #0066cc;
	outline-offset: 2px;
}

.loria-products-slider-dot:focus-visible {
	outline: 2px solid #0066cc;
	outline-offset: 3px;
}

/* ── Mobile: 1 slide + peek of next ─────────────────────────── */
@media (max-width: 767px) {
	.loria-products-slider-slide {
		flex: 0 0 80% !important;
		max-width: 80% !important;
	}

	.loria-products-slider-title a {
		min-height: 80px;
	}
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media ( prefers-reduced-motion: reduce ) {
	.loria-products-slider-track          { scroll-behavior: auto; }
	.loria-products-slider-image img,
	.loria-products-slider-arrow,
	.loria-products-slider-dot            { transition: none; }
}

/* ── Print ───────────────────────────────────────────────────── */
@media print {
	.loria-products-slider-wrapper        { overflow: visible; }
	.loria-products-slider-track          { flex-wrap: wrap; overflow: visible; scroll-snap-type: none; }
	.loria-products-slider-slide          { flex: 0 0 25%; max-width: 25%; break-inside: avoid; }
	.loria-products-slider-arrow,
	.loria-products-slider-dots           { display: none; }
}
