/* Gallery and Product Page Styles */

/* Photo Gallery */
.photo-gallery {
	position: relative;
	margin-bottom: 30px;
}

.main-photo {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	margin-bottom: 20px;
}

.main-photo img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.main-photo img:hover {
	transform: scale(1.05);
}

.photo-thumbnails {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.thumbnail {
	width: 80px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	border: 3px solid transparent;
	transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
	border-color: #ffd700;
	transform: scale(1.05);
}

.thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Product Info Card */
.product-info-card {
	background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	overflow: hidden;
}

.product-info-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ffd700, #ffed4e);
}

.product-title {
	font-size: 2.2rem;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	text-align: center;
}

.product-capacity {
	display: inline-block;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #333;
	padding: 8px 20px;
	border-radius: 25px;
	font-weight: 600;
	margin-bottom: 25px;
	font-size: 2.1rem;
}

.pricing-section {
	background: #f8f9fa;
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 25px;
	border-left: 4px solid #ffd700;
}

.pricing-section h4 {
	color: #333;
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.price-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #e9ecef;
}

.price-item:last-child {
	border-bottom: none;
}

.price-label {
	color: #666;
	font-size: 2rem;
}

.price-value {
	font-weight: bold;
	color: #333;
	font-size: 2.2rem;
}

.price-value .currency {
	color: #ffd700;
	font-size: 0.9rem;
}

.booking-button {
	width: 100%;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	color: #333;
	border: none;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 2.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
	text-decoration: none;
	display: block;
	text-align: center;
	margin-top: 20px;
}

.booking-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
	color: #333;
	text-decoration: none;
}

/* Video Section */
.video-section {
	margin: 40px 0;
	text-align: center;
}

.video-container {
	position: relative;
	background: #000;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-container video {
	width: 100%;
	height: auto;
	display: block;
}

/* Description Section */
.description-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
	padding: 50px 0;
	margin: 40px 0;
}

.description-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.description-title {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 30px;
	font-weight: bold;
}

.description-text {
	font-size: 2.1rem;
	line-height: 1.8;
	color: #666;
	margin-bottom: 20px;
}

.features-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
	margin-top: 40px;
}

.feature-item {
	display: flex;
	align-items: center;
	padding: 15px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #ffd700, #ffed4e);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	flex-shrink: 0;
}

.feature-icon i {
	color: #333;
	font-size: 1.2rem;
}

.feature-text {
	color: #333;
	font-weight: 500;
}

/* Lightbox Styles */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 9999;
	display: none;
	align-items: center;
	justify-content: center;
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}

.lightbox-image {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 10px;
}

.lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: background 0.3s ease;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 2rem;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
	left: -70px;
}

.lightbox-next {
	right: -70px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.product-title {
		font-size: 1.8rem;
	}

	.description-title {
		font-size: 2rem;
	}

	.features-list {
		grid-template-columns: 1fr;
	}

	.main-photo img {
		height: 250px;
	}

	.product-info-card {
		padding: 20px;
		margin-top: 20px;
	}

	.lightbox-nav {
		position: fixed;
		bottom: 20px;
	}

	.lightbox-prev {
		left: 20px;
	}

	.lightbox-next {
		right: 20px;
	}

	.lightbox-close {
		position: fixed;
		top: 20px;
		right: 20px;
	}
}

@media (max-width: 480px) {
	.photo-thumbnails {
		gap: 5px;
	}

	.thumbnail {
		width: 60px;
		height: 45px;
	}

	.product-info-card {
		padding: 15px;
	}

	.booking-button {
		padding: 12px 25px;
		font-size: 1rem;
	}
}