/* Swiper Slider Responsive Styles */

.main-slider {
	width: 100%;
	height: auto;
	overflow: hidden;
}

.main-slider .swiper-wrapper {
	display: flex;
}

.main-slider .swiper-slide {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-slider .swiper-slide img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
}

/* Navigation Buttons */
.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
	background: rgba(0, 0, 0, 0.8);
}

.main-slider .swiper-button-next::after,
.main-slider .swiper-button-prev::after {
	font-size: 20px;
}

/* Pagination Dots */
.main-slider .swiper-pagination {
	bottom: 20px;
	z-index: 10;
}

.main-slider .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.6);
	opacity: 1;
	transition: all 0.3s ease;
}

.main-slider .swiper-pagination-bullet-active {
	background: #fff;
	width: 30px;
	border-radius: 6px;
}

/* Tablet Responsive */
@media (max-width: 768px) {
	.main-slider .swiper-slide img {
		height: 350px;
	}

	.main-slider .swiper-button-next,
	.main-slider .swiper-button-prev {
		width: 40px;
		height: 40px;
	}

	.main-slider .swiper-button-next::after,
	.main-slider .swiper-button-prev::after {
		font-size: 18px;
	}
}

/* Mobile Responsive */
@media (max-width: 480px) {
	.main-slider .swiper-slide img {
		height: 250px;
	}

	.main-slider .swiper-button-next,
	.main-slider .swiper-button-prev {
		width: 35px;
		height: 35px;
		display: none;
	}

	.main-slider .swiper-button-next::after,
	.main-slider .swiper-button-prev::after {
		font-size: 16px;
	}

	.main-slider .swiper-pagination-bullet {
		width: 8px;
		height: 8px;
	}

	.main-slider .swiper-pagination-bullet-active {
		width: 20px;
	}
}

/* Extra Small Devices */
@media (max-width: 360px) {
	.main-slider .swiper-slide img {
		height: 200px;
	}

	.main-slider .swiper-pagination {
		bottom: 10px;
	}
}

/* ========================================
   FEATURED SLIDER SECTION STYLES
   ======================================== */

.featured-slider-section {
	padding: 60px 0;
	background: #fff;
}

/* Color Selector Box */
.color-selector-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px 20px;
	background: #f8f9fa;
	border-radius: 15px;
	min-height: 450px;
	border: 2px solid rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.color-selector-box:hover {
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.color-wheel-label {
	margin-bottom: 30px;
	text-align: center;
}

.label-text {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 5px;
}

/* Color Options */
.color-options {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	max-width: 80px;
}

.color-btn {
	width: 60px;
	height: 60px;
	border: 3px solid transparent;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.color-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.color-btn.active {
	border-color: #333;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Slider Content Wrapper */
.slider-content-wrapper {
	width: 100%;
}

.section-head {
	margin-bottom: 30px;
}

.section-head .title {
	font-size: 2.5rem;
	font-weight: 500;
	color: #333;
	margin-bottom: 15px;
	letter-spacing: -0.5px;
}

.section-head .description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}

/* Featured Carousel */
.featured-carousel {
	position: relative;
}

.featured-carousel .owl-stage-outer {
	padding: 10px 0;
}

.carousel-item {
	padding: 0 10px;
}

.carousel-image-wrapper {
	position: relative;
	width: 100%;
	height: 350px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.carousel-image-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.carousel-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.carousel-image-wrapper:hover img {
	transform: scale(1.05);
}

.overlay-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	padding: 30px 20px 20px;
	color: white;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.carousel-image-wrapper:hover .overlay-content {
	transform: translateY(0);
}

.slide-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	color: white;
}

/* Carousel Navigation */
.featured-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 -30px;
	pointer-events: none;
	z-index: 10;
}

.featured-carousel .owl-nav button {
	pointer-events: all;
	background: rgba(255, 255, 255, 0.9) !important;
	color: #333 !important;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: all 0.3s ease;
	margin: 0 -25px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.featured-carousel .owl-nav button:hover {
	background: rgba(255, 255, 255, 1) !important;
	transform: scale(1.1);
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.featured-carousel .owl-nav button.disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Carousel Dots */
.featured-carousel .owl-dots {
	text-align: center;
	margin-top: 25px;
}

.featured-carousel .owl-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #ddd;
	border-radius: 50%;
	margin: 0 6px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.featured-carousel .owl-dot.active {
	background: #007bff;
	transform: scale(1.3);
}

.featured-carousel .owl-dot:hover {
	background: #0056b3;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
	.featured-slider-section {
		padding: 40px 0;
	}

	.color-selector-box {
		min-height: 350px;
		margin-bottom: 30px;
	}

	.section-head .title {
		font-size: 2rem;
	}

	.carousel-image-wrapper {
		height: 300px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.featured-slider-section {
		padding: 30px 0;
	}

	.color-selector-box {
		min-height: 300px;
		padding: 20px 15px;
	}

	.color-wheel-label {
		margin-bottom: 20px;
	}

	.color-options {
		gap: 12px;
		max-width: 70px;
	}

	.color-btn {
		width: 55px;
		height: 55px;
		border-width: 2px;
	}

	.section-head .title {
		font-size: 1.75rem;
		margin-bottom: 10px;
	}

	.section-head .description {
		font-size: 15px;
	}

	.carousel-image-wrapper {
		height: 250px;
	}

	.featured-carousel .owl-nav button {
		width: 45px;
		height: 45px;
		font-size: 20px;
		margin: 0 -20px;
	}

	.slide-title {
		font-size: 16px;
	}

	.overlay-content {
		padding: 20px 15px 15px;
	}
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
	.featured-slider-section {
		padding: 20px 0;
	}

	.color-selector-box {
		min-height: auto;
		padding: 15px;
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}

	.color-wheel-label {
		margin-bottom: 0;
	}

	.color-options {
		flex-direction: row;
		gap: 10px;
		max-width: 100%;
		justify-content: center;
	}

	.color-btn {
		width: 50px;
		height: 50px;
	}

	.section-head .title {
		font-size: 1.5rem;
		margin-bottom: 8px;
	}

	.section-head .description {
		font-size: 14px;
	}

	.carousel-image-wrapper {
		height: 200px;
	}

	.featured-carousel .owl-nav {
		display: none;
	}

	.featured-carousel .owl-nav button {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.slide-title {
		font-size: 14px;
	}

	.overlay-content {
		padding: 15px 10px 10px;
	}

	.featured-carousel .owl-dots {
		margin-top: 15px;
	}

	.featured-carousel .owl-dot {
		width: 10px;
		height: 10px;
		margin: 0 4px;
	}
}

/* ========================================
   COLOR THEME STYLES
   ======================================== */

/* Warm Brown Theme */
body.color-warm {
	--primary-color: #c9956e;
	--secondary-color: #d4a574;
}

body.color-warm .carousel-image-wrapper {
	border: 3px solid #c9956e;
}

body.color-warm .featured-carousel .owl-nav button {
	background: rgba(201, 149, 110, 0.9) !important;
	color: #fff !important;
}

body.color-warm .featured-carousel .owl-nav button:hover {
	background: #c9956e !important;
}

body.color-warm .featured-carousel .owl-dot.active {
	background: #c9956e;
}

/* Forest Green Theme */
body.color-green {
	--primary-color: #2d5016;
	--secondary-color: #3a6b1f;
}

body.color-green .carousel-image-wrapper {
	border: 3px solid #2d5016;
}

body.color-green .featured-carousel .owl-nav button {
	background: rgba(45, 80, 22, 0.9) !important;
	color: #fff !important;
}

body.color-green .featured-carousel .owl-nav button:hover {
	background: #2d5016 !important;
}

body.color-green .featured-carousel .owl-dot.active {
	background: #2d5016;
}

/* Navy Blue Theme */
body.color-blue {
	--primary-color: #3d4e52;
	--secondary-color: #4a5f67;
}

body.color-blue .carousel-image-wrapper {
	border: 3px solid #3d4e52;
}

body.color-blue .featured-carousel .owl-nav button {
	background: rgba(61, 78, 82, 0.9) !important;
	color: #fff !important;
}

body.color-blue .featured-carousel .owl-nav button:hover {
	background: #3d4e52 !important;
}

body.color-blue .featured-carousel .owl-dot.active {
	background: #3d4e52;
}

/* Tan Brown Theme */
body.color-tan {
	--primary-color: #8b6f47;
	--secondary-color: #9d7d52;
}

body.color-tan .carousel-image-wrapper {
	border: 3px solid #8b6f47;
}

body.color-tan .featured-carousel .owl-nav button {
	background: rgba(139, 111, 71, 0.9) !important;
	color: #fff !important;
}

body.color-tan .featured-carousel .owl-nav button:hover {
	background: #8b6f47 !important;
}

body.color-tan .featured-carousel .owl-dot.active {
	background: #8b6f47;
}

/* ========================================
   WEDDING CAROUSEL SLIDER STYLES
   ======================================== */

.wedding-carousel-section {
	padding: 60px 0;
	background: #fff;
}

.carousel-wrapper {
	width: 100%;
	position: relative;
}

.wedding-image-carousel {
	position: relative;
}

.carousel-slide {
	padding: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slide-image-box {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	background: #f5f5f5;
}

.slide-image-box:hover {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
	transform: translateY(-8px);
}

.slide-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
	min-height: 400px;
}

.slide-image-box:hover img {
	transform: scale(1.03);
}

/* Carousel Navigation */
.wedding-image-carousel .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0;
	pointer-events: none;
	z-index: 10;
}

.wedding-image-carousel .owl-nav button {
	pointer-events: all;
	background: rgba(255, 255, 255, 0.95) !important;
	color: #333 !important;
	border: 2px solid #e0e0e0;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	transition: all 0.3s ease;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wedding-image-carousel .owl-nav button.owl-prev {
	left: -60px;
}

.wedding-image-carousel .owl-nav button.owl-next {
	right: -60px;
}

.wedding-image-carousel .owl-nav button:hover {
	background: rgba(255, 255, 255, 1) !important;
	border-color: #333;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.wedding-image-carousel .owl-nav button.disabled {
	opacity: 0.3;
	cursor: not-allowed;
}

/* Carousel Dots */
.wedding-image-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
	position: relative;
	z-index: 5;
}

.wedding-image-carousel .owl-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #ddd;
	border-radius: 50%;
	margin: 0 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.wedding-image-carousel .owl-dot.active {
	background: #333;
	transform: scale(1.4);
	border-color: #333;
}

.wedding-image-carousel .owl-dot:hover {
	background: #666;
	transform: scale(1.2);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
	.wedding-carousel-section {
		padding: 40px 0;
	}

	.slide-image-box img {
		min-height: 350px;
	}

	.wedding-image-carousel .owl-nav button {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}

	.wedding-image-carousel .owl-nav button.owl-prev {
		left: -50px;
	}

	.wedding-image-carousel .owl-nav button.owl-next {
		right: -50px;
	}
}

/* Responsive - iPad/Medium */
@media (max-width: 768px) {
	.wedding-carousel-section {
		padding: 30px 0;
	}

	.carousel-slide {
		padding: 0 10px;
	}

	.slide-image-box {
		border-radius: 6px;
	}

	.slide-image-box img {
		min-height: 300px;
	}

	.wedding-image-carousel .owl-nav button {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.wedding-image-carousel .owl-nav button.owl-prev {
		left: -40px;
	}

	.wedding-image-carousel .owl-nav button.owl-next {
		right: -40px;
	}

	.wedding-image-carousel .owl-dots {
		margin-top: 20px;
	}

	.wedding-image-carousel .owl-dot {
		width: 9px;
		height: 9px;
		margin: 0 6px;
	}
}

/* Responsive - Mobile */
@media (max-width: 576px) {
	.wedding-carousel-section {
		padding: 20px 0;
	}

	.carousel-slide {
		padding: 0 8px;
	}

	.slide-image-box {
		border-radius: 5px;
	}

	.slide-image-box img {
		min-height: 250px;
	}

	.wedding-image-carousel .owl-nav {
		display: none;
	}

	.wedding-image-carousel .owl-nav button {
		width: 36px;
		height: 36px;
		font-size: 16px;
	}

	.wedding-image-carousel .owl-dots {
		margin-top: 15px;
	}

	.wedding-image-carousel .owl-dot {
		width: 8px;
		height: 8px;
		margin: 0 4px;
	}

	.wedding-image-carousel .owl-dot.active {
		transform: scale(1.3);
	}
}

/* ========================================
   WAVE SLIDER STYLES
   ======================================== */

@keyframes waveFloat {
	0%, 100% {
		transform: translateY(0px) translateZ(0px);
	}
	25% {
		transform: translateY(-30px) translateZ(10px);
	}
	50% {
		transform: translateY(-50px) translateZ(25px);
	}
	75% {
		transform: translateY(-30px) translateZ(10px);
	}
}

@keyframes wavePulse {
	0%, 100% {
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}
	50% {
		box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
	}
}

.wave-slider-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 50%, #fff 100%);
	overflow: visible;
	perspective: 1000px;
}

.wave-carousel-wrapper {
	width: 100%;
	position: relative;
	padding: 60px 0;
	perspective: 1200px;
}

.wave-slider {
	position: relative;
	perspective: 1000px;
}

.wave-slide {
	padding: 0 20px;
	perspective: 1200px;
}

.wave-image-box {
	position: relative;
	width: 100%;
	height: 400px;
	border-radius: 0;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
	transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
	transform-style: preserve-3d;
	cursor: pointer;
	background: #f5f5f5;
	animation: waveFloat 4s ease-in-out infinite;
	/* Smooth wavy curves */
	clip-path: polygon(
		0% 5%, 1% 3%, 2% 2%, 3% 1%, 4% 1%, 5% 1%, 6% 1%, 7% 2%, 8% 3%, 9% 4%, 
		10% 4%, 15% 4%, 20% 3%, 25% 2%, 30% 2%, 35% 2%, 40% 2%, 45% 3%, 50% 4%, 
		55% 3%, 60% 2%, 65% 2%, 70% 2%, 75% 2%, 80% 3%, 85% 4%, 90% 4%, 95% 3%, 
		96% 2%, 97% 1%, 98% 1%, 99% 1%, 100% 2%, 100% 5%,
		100% 95%, 99% 99%, 98% 99%, 97% 99%, 96% 98%, 95% 96%, 90% 96%, 85% 96%, 
		80% 97%, 75% 98%, 70% 98%, 65% 98%, 60% 98%, 55% 97%, 50% 96%, 45% 97%, 
		40% 98%, 35% 98%, 30% 98%, 25% 98%, 20% 97%, 15% 96%, 10% 96%, 9% 96%, 
		8% 97%, 7% 98%, 6% 99%, 5% 99%, 4% 99%, 3% 99%, 2% 98%, 1% 97%, 0% 95%
	);
}

/* Wave Item Animations with staggered timing */
.wave-item-1 {
	animation-delay: 0s, 0s;
	transform: perspective(1200px) rotateX(8deg) rotateY(-20deg) skewY(-3deg) translateZ(20px);
}

.wave-item-2 {
	animation-delay: 0.2s, 0.2s;
	transform: perspective(1200px) rotateX(5deg) rotateY(-12deg) skewY(-2deg) translateZ(15px);
}

.wave-item-3 {
	animation-delay: 0.4s, 0.4s;
	transform: perspective(1200px) rotateX(0deg) rotateY(0deg) skewY(0deg) translateZ(0px);
}

.wave-item-4 {
	animation-delay: 0.2s, 0.2s;
	transform: perspective(1200px) rotateX(5deg) rotateY(12deg) skewY(2deg) translateZ(15px);
}

.wave-item-5 {
	animation-delay: 0s, 0s;
	transform: perspective(1200px) rotateX(8deg) rotateY(20deg) skewY(3deg) translateZ(20px);
}

.wave-item-6 {
	animation-delay: -0.2s, -0.2s;
	transform: perspective(1200px) rotateX(6deg) rotateY(-15deg) skewY(-2.5deg) translateZ(18px);
}

.wave-image-box:hover {
	transform: rotateX(0deg) rotateY(0deg) translateY(-25px) scale(1.05);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.wave-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
	border-radius: 0;
}

.wave-image-box:hover img {
	transform: scale(1.12);
}

/* Wave Slider Navigation */
.wave-slider .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0;
	pointer-events: none;
	z-index: 10;
}

.wave-slider .owl-nav button {
	pointer-events: all;
	background: rgba(255, 255, 255, 0.95) !important;
	color: #333 !important;
	border: 2px solid rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	width: 55px;
	height: 55px;
	display: flex !important;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: all 0.3s ease;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.wave-slider .owl-nav button.owl-prev {
	left: -70px;
}

.wave-slider .owl-nav button.owl-next {
	right: -70px;
}

.wave-slider .owl-nav button:hover {
	background: #fff !important;
	border-color: #333;
	transform: translateY(-50%) scale(1.15);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.wave-slider .owl-nav button:active {
	transform: translateY(-50%) scale(0.95);
}

.wave-slider .owl-nav button.disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* Wave Slider Dots */
.wave-slider .owl-dots {
	text-align: center;
	margin-top: 45px;
	position: relative;
	z-index: 5;
}

.wave-slider .owl-dot {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	margin: 0 10px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	border: 2px solid transparent;
}

.wave-slider .owl-dot:hover {
	background: rgba(0, 0, 0, 0.4);
	transform: scale(1.3);
}

.wave-slider .owl-dot.active {
	background: #333;
	transform: scale(1.6);
	box-shadow: 0 0 0 6px rgba(51, 51, 51, 0.15);
}

/* Responsive - Large Desktop */
@media (max-width: 1400px) {
	.wave-slider-section {
		padding: 80px 0;
	}

	.wave-carousel-wrapper {
		padding: 50px 0;
	}

	.wave-image-box {
		height: 350px;
	}

	.wave-slider .owl-nav button {
		width: 50px;
		height: 50px;
		font-size: 22px;
	}

	.wave-slider .owl-nav button.owl-prev {
		left: -60px;
	}

	.wave-slider .owl-nav button.owl-next {
		right: -60px;
	}
}

/* Responsive - Tablet */
@media (max-width: 992px) {
	.wave-slider-section {
		padding: 60px 0;
	}

	.wave-slide {
		padding: 0 15px;
	}

	.wave-image-box {
		height: 300px;
	}

	.wave-item-1, .wave-item-2, .wave-item-3, 
	.wave-item-4, .wave-item-5, .wave-item-6 {
		transform: perspective(1000px) rotateX(3deg) rotateY(-8deg);
	}

	.wave-slider .owl-nav button {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}

	.wave-slider .owl-nav button.owl-prev {
		left: -45px;
	}

	.wave-slider .owl-nav button.owl-next {
		right: -45px;
	}

	.wave-slider .owl-dot {
		width: 10px;
		height: 10px;
		margin: 0 8px;
	}

	.wave-slider .owl-dots {
		margin-top: 35px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.wave-slider-section {
		padding: 50px 0;
	}

	.wave-carousel-wrapper {
		padding: 30px 0;
	}

	.wave-slide {
		padding: 0 10px;
	}

	.wave-image-box {
		height: 280px;
	}

	.wave-item-1, .wave-item-2, .wave-item-3, 
	.wave-item-4, .wave-item-5, .wave-item-6 {
		transform: perspective(1000px) rotateX(2deg) rotateY(-5deg);
	}

	.wave-slider .owl-nav {
		display: none;
	}

	.wave-slider .owl-nav button {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.wave-slider .owl-dot {
		width: 9px;
		height: 9px;
		margin: 0 6px;
	}

	.wave-slider .owl-dots {
		margin-top: 25px;
	}

	.wave-slider .owl-dot.active {
		transform: scale(1.4);
	}
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
	.wave-slider-section {
		padding: 40px 0;
	}

	.wave-carousel-wrapper {
		padding: 20px 0;
	}

	.wave-slide {
		padding: 0 8px;
	}

	.wave-image-box {
		height: 240px;
	}

	.wave-item-1, .wave-item-2, .wave-item-3, 
	.wave-item-4, .wave-item-5, .wave-item-6 {
		transform: perspective(800px) rotateX(1deg) rotateY(-3deg);
	}

	.wave-slider .owl-dots {
		margin-top: 20px;
	}

	.wave-slider .owl-dot {
		width: 8px;
		height: 8px;
		margin: 0 5px;
	}

	.wave-slider .owl-dot.active {
		transform: scale(1.3);
	}
}

/* Extra Small Mobile */
@media (max-width: 480px) {
	.wave-slider-section {
		padding: 30px 0;
	}

	.wave-image-box {
		height: 200px;
	}

	.wave-slider .owl-dot {
		width: 7px;
		height: 7px;
		margin: 0 4px;
	}

	.wave-slider .owl-dots {
		margin-top: 15px;
	}
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
	.wedding-carousel-section {
		padding: 15px 0;
	}

	.slide-image-box img {
		min-height: 200px;
	}

	.wedding-image-carousel .owl-dots {
		margin-top: 12px;
	}

	.wedding-image-carousel .owl-dot {
		width: 7px;
		height: 7px;
		margin: 0 3px;
	}
}
