body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
.pickleball-color { color: #DFFF00; }
.bg-pickleball { background-color: #c9e265; }
.btn-gradient { background: linear-gradient(90deg, #11998e 0%, #38ef7d 100%); }
.banner-slider {
	height: 500px; 
	max-height: 500px;
}
@media (min-width: 768px) {
	.banner-slider {
		height: 700px !important;
		max-height: 700px !important;
	}
}
@media (min-width: 1024px) {
	.banner-slider {
		height: 900px !important;
		max-height: 900px !important;
	}
}
.slider-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.slider-container .slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	z-index: 1;
}

.slider-container .slide.active {
	opacity: 1;
	z-index: 2;
}

.slider-container .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}

.slider-dot {
	transition: all 0.3s ease;
}

.slider-dot.active {
	background-color: #c9e265 !important;
}

.slider-prev, .slider-next {
	z-index: 30;
	width: 50px !important;
	height: 50px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	padding: 0 !important;
	min-width: 50px !important;
	min-height: 50px !important;
	flex-shrink: 0 !important;
}

.slider-dots {
	z-index: 30;
}

/* Swiper Custom Styles */
.mainSwiper {
	height: 400px;
}

.thumbSwiper {
	height: 100px;
	margin-top: 10px;
}

.thumbSwiper .swiper-slide {
	opacity: 0.6;
	cursor: pointer;
}

.thumbSwiper .swiper-slide-thumb-active {
	opacity: 1;
}

.thumbSwiper .swiper-slide-thumb-active .thumb-container {
	border-color: #22c55e !important;
	box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

.thumb-container:hover {
	border-color: #86efac !important;
	transform: scale(1.05);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
	color: white !important;
	background: rgba(0, 0, 0, 0.5) !important;
	width: 40px !important;
	height: 40px !important;
	border-radius: 50% !important;
	margin-top: -20px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.8) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 16px !important;
	color: white !important;
}

/* Lightbox Styles */
.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
	position: relative;
	margin: auto;
	padding: 0;
	width: 90%;
	max-width: 90vw;
	max-height: 90vh;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-image {
	max-width: 100%;
	max-height: 90vh;
	width: auto;
	height: auto;
	border-radius: 10px;
	object-fit: contain;
}

.lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 35px;
	font-weight: bold;
	cursor: pointer;
	background: none;
	border: none;
}

.lightbox-close:hover {
	color: #ccc;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	font-size: 24px;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	padding: 15px 20px;
	cursor: pointer;
	border-radius: 5px;
}

.lightbox-nav:hover {
	background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-counter {
	position: absolute;
	bottom: -40px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 14px;
}