/*---------------------------------------------------------------------
    Product Detail Page Styles
---------------------------------------------------------------------*/

/* Main Image Carousel Container */
.main-product-image-container {
	position: relative;
	width: 100%;
	min-height: 400px;
	background: #f8f9fa;
	border-radius: 8px;
	overflow: hidden;
}

.main-product-image {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 400px;
}

.product-detail-images .carousel-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: contain;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.product-detail-images .carousel-image.active {
	opacity: 1;
	position: relative;
}

/* Carousel Navigation Arrows */
.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.6);
	color: white;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 100;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.carousel-arrow:hover {
	background: rgba(255, 193, 7, 0.9);
	transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
	left: 20px;
}

.carousel-arrow-right {
	right: 20px;
}

/* Image Counter */
.image-counter {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 8px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	z-index: 100;
}

/* Thumbnail Gallery */
.product-detail-images .thumbnail-image {
	cursor: pointer;
	border: 3px solid #e0e0e0;
	transition: all 0.3s;
	opacity: 0.6;
}

.product-detail-images .thumbnail-image:hover {
	border-color: #ffc107;
	opacity: 1;
	transform: scale(1.05);
}

.product-detail-images .thumbnail-image.active {
	border-color: #ffc107;
	opacity: 1;
	box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

