/**
 * Product Slider block - front-end styles.
 */
.ptpb-product-slider {
	position: relative;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	outline: none;
}

.ptpb-product-slider .ptpb-viewport {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.ptpb-product-slider .ptpb-track {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	transition: transform 0.35s ease;
	will-change: transform;
}

.ptpb-product-slider .ptpb-slide {
	flex: 0 0 100%;
	min-width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 4px;
}

.ptpb-product-slider .ptpb-image-wrap {
	border: 1px solid #e0e0e0;
	padding: 12px;
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba( 0, 0, 0, 0.06 );
	line-height: 0;
}

/* Whole-card link: image + title are one clickable link. */
.ptpb-product-slider .ptpb-product-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.ptpb-product-slider .ptpb-product-link:hover .ptpb-caption {
	text-decoration: underline;
}

/* Fixed image height (see single-product/style.css for the rationale). */
.ptpb-product-slider .ptpb-image-wrap img {
	display: block;
	width: 100%;
	height: var( --ptpb-img-h, 280px );
	object-fit: contain;
	border-radius: 4px;
}

.ptpb-product-slider .ptpb-caption {
	margin-top: 10px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
}

/* Navigation arrows */
.ptpb-product-slider .ptpb-nav {
	position: absolute;
	top: 50%;
	transform: translateY( -50% );
	z-index: 2;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background: rgba( 255, 255, 255, 0.9 );
	box-shadow: 0 1px 4px rgba( 0, 0, 0, 0.2 );
	color: #222222;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.ptpb-product-slider .ptpb-nav:hover {
	background: #ffffff;
}

.ptpb-product-slider .ptpb-prev {
	left: 10px;
}

.ptpb-product-slider .ptpb-next {
	right: 10px;
}

/* Dots */
.ptpb-product-slider .ptpb-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}

.ptpb-product-slider .ptpb-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #cfcfcf;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.ptpb-product-slider .ptpb-dot.is-active {
	background: #222222;
	transform: scale( 1.2 );
}

/* Mobile tweaks */
@media ( max-width: 600px ) {
	.ptpb-product-slider .ptpb-nav {
		width: 34px;
		height: 34px;
		font-size: 20px;
	}

	.ptpb-product-slider .ptpb-caption {
		font-size: 0.95rem;
	}
}
