/* SRMunera Widgets - Frontend Styles */

/* Common Styles */
.srmunera-widget {
	position: relative;
	width: 100%;
}

/* Enlaces heredan estilos tipográficos del padre por defecto */
.srmunera-widget a,
.srmunera-hero a,
.srmunera-button-wrapper a,
.srmunera-testimonials a,
.srmunera-post-slider a {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
}

/* Hero Section Widget */
.srmunera-hero {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.srmunera-hero .hero-overlay {
	background: rgba(0, 0, 0, 0.5);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
}

.srmunera-hero .hero-content {
	text-align: center;
	max-width: 800px;
}

.srmunera-hero .hero-title {
	font-size: var(--theme-font-size-h2, 3.125rem);
	font-weight: var(--theme-font-weight-bold, 700);
	line-height: var(--theme-line-height-h2, 3.75rem);
	margin: 0 0 20px 0;
}

.srmunera-hero .hero-subtitle {
	font-size: var(--theme-font-size-h5, 1.5625rem);
	font-weight: var(--theme-font-weight-regular, 400);
	line-height: var(--theme-line-height-h5, 1.875rem);
	margin: 0 0 30px 0;
}

.srmunera-hero .hero-button {
	display: inline-block;
	padding: 15px 40px;
	background: #2271b1;
	color: #ffffff;
	text-decoration: none;
	border-radius: 0.63rem;
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-semibold, 600);
	line-height: 1.5;
	transition: all 0.3s ease;
}

.srmunera-hero .hero-button:hover {
	background: #135e96;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
	.srmunera-hero .hero-title {
		font-size: 32px;
	}
	
	.srmunera-hero .hero-subtitle {
		font-size: 16px;
	}
}

/* Custom Button Widget */
.srmunera-button-wrapper {
	display: block;
}

.srmunera-custom-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
}

.srmunera-custom-button:hover {
	transform: translateY(-2px);
}

.srmunera-custom-button .button-icon {
	display: inline-flex;
	align-items: center;
}

.srmunera-custom-button .button-text {
	display: inline-block;
}

/* Testimonials Widget */
.srmunera-testimonials {
	width: 100%;
}

.testimonials-grid {
	display: grid;
	gap: 30px;
}

.srmunera-testimonials.columns-1 .testimonials-grid {
	grid-template-columns: repeat(1, 1fr);
}

.srmunera-testimonials.columns-2 .testimonials-grid {
	grid-template-columns: repeat(2, 1fr);
}

.srmunera-testimonials.columns-3 .testimonials-grid {
	grid-template-columns: repeat(3, 1fr);
}

.srmunera-testimonials.columns-4 .testimonials-grid {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
	.srmunera-testimonials.columns-4 .testimonials-grid,
	.srmunera-testimonials.columns-3 .testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.testimonials-grid {
		grid-template-columns: repeat(1, 1fr) !important;
	}
}

.testimonial-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.testimonial-image {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 20px;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-rating {
	margin-bottom: 15px;
	font-size: 18px;
}

.testimonial-rating .star {
	display: inline-block;
	margin: 0 2px;
	opacity: 0.3;
}

.testimonial-rating .star.filled {
	opacity: 1;
}

.testimonial-content {
	margin-bottom: 20px;
	flex-grow: 1;
}

.testimonial-content p {
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-regular, 400);
	line-height: var(--theme-line-height-base, 1.5625rem);
	margin: 0;
	font-style: italic;
}

.testimonial-author {
	margin-top: auto;
}

.testimonial-name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.testimonial-position {
	font-size: 14px;
}

/* Layout: Slider */
.srmunera-testimonials.layout-slider .testimonials-grid {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.srmunera-testimonials.layout-slider .testimonial-card {
	scroll-snap-align: start;
	flex-shrink: 0;
}

/* Testimonials Carousel */
.testimonials-carousel-container {
	background-color: #fdfdfd;
	padding: 60px 20px 80px;
	text-align: center;
	position: relative;
}

.testimonials-quote-icon {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.testimonials-quote-icon svg {
	width: 32px;
	height: 30px;
}

.testimonials-swiper-preview,
[class*="testimonials-swiper-"] {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
}

.testimonial-slide-content {
	padding: 20px;
	text-align: center;
}

.testimonial-slide-title {
	font-size: 25px;
	font-family: 'Manrope', sans-serif;
	font-weight: 500;
	color: #111112;
	margin-bottom: 25px;
	line-height: 1.2;
}

.testimonial-slide-text p {
	font-size: 16px;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #111112;
	line-height: 25px;
	margin: 0 0 25px 0;
}

.testimonial-slide-author {
	margin-top: 20px;
}

.testimonial-slide-name {
	font-size: 18px;
	font-family: 'Manrope', sans-serif;
	font-weight: 600;
	color: #111112;
	margin-bottom: 5px;
}

.testimonial-slide-position {
	font-size: 14px;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
	color: #666;
}

/* Swiper Pagination */
.testimonials-carousel-container .swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 50px;
}

.testimonials-carousel-container .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #D0D5DD;
	opacity: 1;
	margin: 0 8px;
	transition: background-color 0.3s ease;
}

.testimonials-carousel-container .swiper-pagination-bullet-active {
	background-color: #23388E;
}

/* Responsive */
@media (max-width: 768px) {
	.testimonial-slide-title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	.testimonials-swiper-preview,
	[class*="testimonials-swiper-"] {
		padding: 0 15px;
	}
	
	.testimonials-carousel-container {
		padding: 40px 15px 60px;
	}
	
	.testimonials-quote-icon {
		margin-bottom: 30px;
	}
}


/* Post Slider Widget */
.srmunera-post-slider {
	position: relative;
	width: 100%;
}

/* Slider Header */
.slider-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 3.25rem;
}

/* When there's no title, align navigation to the right */
.slider-header:empty {
	justify-content: flex-end;
}

.slider-header-title {
	margin: 0;
	font-size: var(--theme-font-size-h4, 1.875rem);
	font-weight: var(--theme-font-weight-bold, 700);
	color: var(--theme-color-text, #111112);
	line-height: var(--theme-line-height-h4, 1.875rem);
	flex: 1;
}

.slider-navigation {
	display: flex;
	gap: 12px;
	align-items: center;
	flex-shrink: 0;
	margin-left: auto;
}

.srmunera-post-slider .swiper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

.srmunera-post-slider.overflow-visible .swiper {
	overflow: visible;
}

.srmunera-post-slider .swiper-wrapper {
	display: flex;
	transition-timing-function: linear; /* Mejora la suavidad del loop */
}

.srmunera-post-slider .swiper-slide {
	height: auto;
	display: flex;
}

/* Asegurar que los slides duplicados del loop se vean igual */
.srmunera-post-slider .swiper-slide-duplicate {
	opacity: 1 !important;
}

/* Slide Card */
.slide-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	transition: all 0.3s ease;
	overflow: hidden;
	background: var(--theme-color-white, #FFFFFF);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slide-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Background mode styles */
.slide-card.has-background {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 400px;
	overflow: hidden;
}

/* Background image as pseudo-element for zoom effect */
.slide-card.has-background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: inherit;
	transition: transform 0.5s ease, filter 0.3s ease;
	z-index: 0;
}

.slide-card.has-background.has-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	transition: opacity 0.3s ease;
	/* Gradient por defecto - puede ser sobrescrito por Elementor */
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
}

/*.slide-card.has-background:hover.has-overlay::before {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}*/

.slide-card.has-background .slide-content {
	position: relative;
	z-index: 3;
	color: #ffffff;
	/*padding: 20px 24px 28px;*/
	padding:2.25rem 2.13rem;
}

.slide-card.has-background .slide-title {
	margin: 0;
	font-size: var(--theme-font-size-h4, 1.875rem);
	font-weight: var(--theme-font-weight-semibold, 600);
	line-height: var(--theme-line-height-h4, 1.875rem);
}

.slide-card.has-background .slide-title a {
	color: #ffffff;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.slide-card.has-background .slide-title a:hover {
	opacity: 0.85;
}

.slide-card.has-background .slide-meta,
.slide-card.has-background .slide-excerpt,
.slide-card.has-background .slide-category {
	color: rgba(255, 255, 255, 0.9);
}

/* Ensure button inherits color in background mode */
.slide-card.has-background .slide-button {
	color: inherit;
	border-color: currentColor;
}

.slide-image {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 12px 12px 0 0;
}

/* Flecha circular que aparece al hacer hover sobre el slide (estilo mobile/desktop) */
.slide-image .hover-arrow {
	position: absolute;
	right: 16px;
	bottom: 0;
	transform: translateY(-50%) translateX(8px);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
	opacity: 0;
	transition: opacity 0.28s ease, transform 0.28s ease;
	z-index: 5;
}

.slide-image .hover-arrow svg {
	width: 9px;
	height: 17px;
	display: block;
}

/* Mostrar la flecha al hacer hover sobre la tarjeta */
.srmunera-post-slider .slide-card:hover .slide-image .hover-arrow {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

/* También mostrar cuando se hace hover sobre la propia imagen (por si existe overlay) */
.srmunera-post-slider .slide-image:hover .hover-arrow {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

/* Mostrar flecha también para slides con imagen como background */
.slide-card.has-background > .hover-arrow {
	position: absolute;
	right: 16px;
	bottom: 0.7rem;
	transform: translateY(-50%) translateX(8px);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0,0,0,0.12);
	opacity: 0;
	transition: opacity 0.28s ease, transform 0.28s ease;
	z-index: 6;
}
.slide-card.has-background > .hover-arrow svg {
	width: 9px;
	height: 17px;
	display: block;
}

.srmunera-post-slider .slide-card.has-background:hover > .hover-arrow {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.slide-image img {
	width: 100%;
	display: block;
	transition: transform 0.5s ease;
	aspect-ratio: 16/10;
	object-fit: cover;
}

.slide-image a {
	display: block;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.slide-content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 20px;
}

/* In background mode, push content to bottom */
.slide-card.has-background .slide-content {
	justify-content: flex-end;
}

/* In normal mode, create a content wrapper for grouping */
.slide-content > * {
	margin-bottom: 0;
}

.slide-content > *:not(:last-child) {
	margin-bottom: 12px;
}

.slide-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.slide-category {
	display: inline-block;
	padding: 6px 14px;
	background: var(--theme-color-primary, #23388E);
	color: #ffffff;
	font-size: 11px;
	border-radius: 20px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.5px;
}

.slide-title {
	margin: 0 0 12px 0;
	font-size: var(--theme-font-size-h5, 1.5625rem);
	font-weight: var(--theme-font-weight-semibold, 600);
	line-height: var(--theme-line-height-h5, 1.875rem);
	color: var(--theme-color-text, #111112);
}

.slide-title a {
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.slide-title a:hover {
	color: var(--theme-color-primary, #23388E);
}

.slide-meta {
	display: flex;
	gap: 15px;
	font-size: 13px;
	color: #999;
	margin-bottom: 12px;
	font-weight: 400;
}

.slide-excerpt {
	margin-bottom: 20px;
	/*flex-grow: 0;*/
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-regular, 400);
	line-height: var(--theme-line-height-base, 1.5625rem);
	color: var(--theme-color-text, #111112);
}

.slide-button {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
	align-self: flex-start;
	margin-top: auto;
	padding: 10px 24px;
	border-radius: 0.63rem;
	font-size: inherit;
	font-weight: 500;
	line-height: inherit;
	background: var(--theme-color-primary, #23388E);
	color: #ffffff;
}

.slide-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(35, 56, 142, 0.3);
	background: var(--theme-color-black, #111112);
}

/* Hover Effects - Image */
.srmunera-post-slider.hover-image-zoom .slide-card:hover .slide-image img {
	transform: scale(1.1);
}

/* Hover effect for background mode */
.srmunera-post-slider.hover-image-zoom .slide-card.has-background:hover::after {
	transform: scale(1.1);
}

.srmunera-post-slider.hover-image-zoom-out .slide-card:hover .slide-image img {
	transform: scale(0.95);
}

.srmunera-post-slider.hover-image-zoom-out .slide-card.has-background:hover::after {
	transform: scale(0.95);
}

.srmunera-post-slider.hover-image-grayscale .slide-image img {
	filter: grayscale(100%);
}

.srmunera-post-slider.hover-image-grayscale .slide-card.has-background::after {
	filter: grayscale(100%);
}

.srmunera-post-slider.hover-image-grayscale .slide-card:hover .slide-image img {
	filter: grayscale(0%);
}

.srmunera-post-slider.hover-image-grayscale .slide-card.has-background:hover::after {
	filter: grayscale(0%);
}

.srmunera-post-slider.hover-image-blur .slide-card:hover .slide-image img {
	filter: blur(2px);
}

.srmunera-post-slider.hover-image-blur .slide-card.has-background:hover::after {
	filter: blur(2px);
}

.srmunera-post-slider.hover-image-brightness .slide-card:hover .slide-image img {
	filter: brightness(1.2);
}

.srmunera-post-slider.hover-image-brightness .slide-card.has-background:hover::after {
	filter: brightness(1.2);
}

/* Hover Effects - Card */
.srmunera-post-slider.hover-card-lift .slide-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.srmunera-post-slider.hover-card-scale .slide-card {
	transition: transform 0.3s ease;
}

.srmunera-post-slider.hover-card-scale .slide-card:hover {
	transform: scale(1.03);
}

.srmunera-post-slider.hover-card-shadow .slide-card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Navigation Arrows */
.srmunera-post-slider .swiper-button-prev,
.srmunera-post-slider .swiper-button-next,
.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next {
	transition: all 0.3s ease;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	position: relative;
	margin: 0;
}

/* Arrows in header navigation */
.slider-navigation .swiper-button-prev,
.slider-navigation .swiper-button-next {
	position: static;
}

.srmunera-post-slider .swiper-button-prev:after,
.srmunera-post-slider .swiper-button-next:after,
.slider-navigation .swiper-button-prev:after,
.slider-navigation .swiper-button-next:after {
	font-size: 18px;
	font-weight: 700;
}

.srmunera-post-slider .swiper-button-prev:hover,
.srmunera-post-slider .swiper-button-next:hover,
.slider-navigation .swiper-button-prev:hover,
.slider-navigation .swiper-button-next:hover {
	/*transform: scale(1.1);*/
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.srmunera-post-slider .swiper-button-disabled,
.slider-navigation .swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.srmunera-post-slider .swiper-button-disabled:hover,
.slider-navigation .swiper-button-disabled:hover {
	transform: none;
}

/* Arrows Position - Inside */
.srmunera-post-slider.arrows-inside .swiper-button-prev {
	left: 10px;
}

.srmunera-post-slider.arrows-inside .swiper-button-next {
	right: 10px;
}

/* Arrows Position - Outside */
.srmunera-post-slider.arrows-outside {
	padding: 0 60px;
}

.srmunera-post-slider.arrows-outside .swiper-button-prev {
	left: 0;
}

.srmunera-post-slider.arrows-outside .swiper-button-next {
	right: 0;
}

@media (max-width: 768px) {
	.srmunera-post-slider.arrows-outside {
		padding: 0 40px;
	}
}

/* Pagination */
.srmunera-post-slider .swiper-pagination {
	position: relative;
	margin-top: 30px;
}

.srmunera-post-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--theme-color-primary, #23388E);
	opacity: 0.3;
	transition: all 0.3s ease;
}

.srmunera-post-slider .swiper-pagination-bullet:hover {
	opacity: 0.6;
}

.srmunera-post-slider .swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.3);
	background: var(--theme-color-primary, #23388E);
}

/* Prevent blinking text caret when bullets are focused/clicked */
.srmunera-post-slider .swiper-pagination .swiper-pagination-bullet {
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	caret-color: transparent;
}
.srmunera-post-slider .swiper-pagination .swiper-pagination-bullet:focus {
	outline: none;
}

/* Apply same behavior to all widget swipers */
.srmunera-widget .swiper-pagination .swiper-pagination-bullet {
	cursor: pointer;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	caret-color: transparent;
}
.srmunera-widget .swiper-pagination .swiper-pagination-bullet:focus {
	outline: none;
}

.srmunera-post-slider .swiper-pagination-fraction,
.srmunera-post-slider .swiper-pagination-progressbar {
	margin-top: 20px;
}

.srmunera-post-slider .swiper-pagination-progressbar-fill {
	background: var(--theme-color-primary, #23388E);
}

/* Effects - Cube, Coverflow, Flip, Cards */
.srmunera-post-slider .swiper-slide-shadow-left,
.srmunera-post-slider .swiper-slide-shadow-right,
.srmunera-post-slider .swiper-slide-shadow-top,
.srmunera-post-slider .swiper-slide-shadow-bottom {
	background: rgba(0, 0, 0, 0.3);
}

/* Loading State */
.srmunera-post-slider {
	position: relative;
}

.srmunera-post-slider.swiper-loading {
	min-height: 400px;
}

.srmunera-post-slider.swiper-loading::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	width: 50px;
	height: 50px;
	border: 4px solid var(--theme-color-bg-alt, #F5F5F5);
	border-top: 4px solid var(--theme-color-primary, #23388E);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.srmunera-post-slider.swiper-loading .swiper {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.srmunera-post-slider:not(.swiper-loading) .swiper {
	opacity: 1;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.slider-header {
		margin-bottom: 2rem !important;
	}
	
	.slider-header-title {
		font-size: 22px;
	}
	
	.slider-navigation {
		gap: 8px;
	}
	
	.slider-navigation .swiper-button-prev,
	.slider-navigation .swiper-button-next {
		width: 42px;
		height: 42px;
	}
	
	.slider-navigation .swiper-button-prev:after,
	.slider-navigation .swiper-button-next:after {
		font-size: 16px;
	}
	
	.slide-card.has-background {
		min-height: 300px;
	}
	
	.slide-card.has-background .slide-title {
		font-size: 22px;
	}
	
	.slide-card.has-background .slide-content {
		padding: 16px 20px 24px;
	}
	
	.slide-title {
		font-size: 18px;
	}
	
	.srmunera-post-slider .swiper-button-prev,
	.srmunera-post-slider .swiper-button-next {
		width: 42px;
		height: 42px;
	}
	
	.srmunera-post-slider .swiper-button-prev:after,
	.srmunera-post-slider .swiper-button-next:after {
		font-size: 16px;
	}
}

/* ========================================
   POST LIST WIDGET
   ======================================== */

.srmunera-post-list {
	width: 100%;
}

/* Header */
.srmunera-post-list .post-list-header {
    display: flex;
    flex-direction: row;
	gap: 6rem;
	margin-bottom: 2rem;
    align-items: center;
}

.srmunera-post-list .post-list-header > * {
	flex: 1;
}

.srmunera-post-list .post-list-title {
	font-size: var(--theme-font-size-h2, 3.125rem);
	font-weight: var(--theme-font-weight-bold, 700);
	line-height: var(--theme-line-height-h2, 1.2);
	color: var(--theme-color-text, #111112);
	margin: 0;
}

.srmunera-post-list .post-list-description {
	font-size: var(--theme-font-size-base, 1rem);
	line-height: var(--theme-line-height-base, 1.5);
	color: var(--theme-color-text-black, #111112);
	margin: 0;
}

/* Filter */
.srmunera-post-list .post-list-filter {
	margin-bottom: 2.5rem;
	padding: 1.5rem 0;
    max-width: 50%;
}

.srmunera-post-list .filter-row {
	display: flex;
	align-items: flex-end;
	gap: 2rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.srmunera-post-list .filter-field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	flex: 1;
	min-width: 200px;
}

.srmunera-post-list .filter-field label {
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-bold, 700);
	color: var(--theme-color-text, #111112);
	margin: 0;
}

.srmunera-post-list .filter-select {
	width: 100%;
	padding: 0.5rem 0;
	font-size: var(--theme-font-size-base, 1rem);
    font-weight: var(--theme-font-weight-normal, 400);
	border: none;
	border-bottom: 1px solid rgba(86, 86, 86, 0.40);
	border-radius: 0;
	background: transparent;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.srmunera-post-list .filter-select:focus {
	outline: none;
	border-bottom-color: var(--theme-color-primary, #007bff);
}

.srmunera-post-list .filter-button {
	padding: 0.75rem 2rem;
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-medium, 500);
	color: white;
	background: var(--theme-color-primary, #007bff);
	border: none;
	border-radius: 0.63rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.srmunera-post-list .filter-button:hover {
	background: var(--theme-color-primary-dark, #0056b3);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.srmunera-post-list .filter-button:disabled,
.srmunera-post-list .filter-button.loading {
	opacity: 0.6;
	cursor: not-allowed;
}

.srmunera-post-list .filter-note {
	font-size: 0.875rem;
	color: #999;
	margin: 0;
	font-style: italic;
}

/* List Container */
.srmunera-post-list .post-list-container {
	width: 100%;
	position: relative;
}

/* Fade effect on last item when Load More is present */
.srmunera-post-list .post-list-container.has-load-more::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 1) 100%);
	pointer-events: none;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.4s ease-out;
}

.srmunera-post-list .post-list-container::after {
	opacity: 0;
	transition: opacity 0.4s ease-out;
}

/* List Item */
.srmunera-post-list .post-list-item {
	display: grid;
	grid-template-columns: 150px 1fr 1fr;
	gap: 2rem;
	align-items: center;
	padding: 0;
	border: 1px solid #DBDBDB;
    background-color: var(--theme-color-white, #ffffff);
}

.srmunera-post-list .post-list-item:first-child {
	padding-top: 0;
}


/* Month */
.srmunera-post-list .post-list-month {
	font-size: var(--theme-font-size-h5, 1.875rem);
	font-weight: var(--theme-font-weight-medium, 500);
	line-height: 1.5;
	color: var(--theme-color-primary, #23388E);
	height: 100%;
    align-self: center;
    text-align: center;
    place-content: center;
    border-right: 1px solid #DBDBDB;
}

/* Content */
.srmunera-post-list .post-list-content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.srmunera-post-list .post-list-pretitle {
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-semibold, 600);
	color: var(--theme-color-primary, #007bff);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: -0.25rem;
}

.srmunera-post-list .post-list-location {
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-medium, 500);
	color: var(--theme-color-text-light, #B4B4B4);
}

.srmunera-post-list .post-list-item-title {
	font-size: var(--theme-font-size-h5, 1.875rem);
	font-weight: var(--theme-font-weight-medium, 500);
	line-height: var(--theme-line-height-base, 1.5);
	color: var(--theme-color-text, #111112);
	margin: 0;
}

.srmunera-post-list .post-list-excerpt {
	font-size: var(--theme-font-size-base, 1rem);
	line-height: var(--theme-line-height-base, 1.6);
	color: var(--theme-color-text-black, #000);
}

.srmunera-post-list .post-list-web {
	font-size: var(--theme-font-size-base, 1rem);
	color: var(--theme-color-text-light, #B4B4B4);
	text-decoration: none;
	transition: color 0.3s ease;
	word-break: break-all;
}

.srmunera-post-list .post-list-web:hover {
	color: var(--theme-color-primary-dark, #0056b3);
	text-decoration: underline;
}

/* Booking Button */
.srmunera-post-list .post-list-booking-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin-top: 16px;
	padding: 12px 28px;
	background: #23388e;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	border: none;
	border-radius: 0.63rem;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.srmunera-post-list .post-list-booking-btn:hover {
	background: #1a2a6b;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(35, 56, 142, 0.3);
}

.srmunera-post-list .post-list-booking-btn:active {
	transform: translateY(0);
}

.srmunera-post-list .post-list-booking-btn:focus {
	outline: 2px solid #23388e;
	outline-offset: 2px;
}

/* Image */
.srmunera-post-list .post-list-image {
	width: 100%;
	height: 18.6rem;
	overflow: hidden;
	border-radius: 0px;
}

.srmunera-post-list .post-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.srmunera-post-list .post-list-item:hover .post-list-image img {
	transform: scale(1.05);
}

/* Animation for newly loaded items */
.srmunera-post-list .post-list-item.ajax-loaded {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Load More Button */
.srmunera-post-list .post-list-footer {
	text-align: center;
	margin-top: 3rem;
}

.srmunera-post-list .load-more-button {
	display: inline-flex;
    flex-direction: column;
	align-items: center;
	gap: 0rem;
	padding: 0.75rem 0;
	font-size: var(--theme-font-size-base, 1rem);
	font-weight: var(--theme-font-weight-medium, 500);
	color: var(--theme-color-black, #111112);
	background: transparent;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
    svg{
        color: var(--theme-color-primary, #23388E);
    }
}

.srmunera-post-list .load-more-button .load-more-icon {
	transition: transform 0.3s ease;
}

.srmunera-post-list .load-more-button:hover {
	opacity: 0.7;
}

.srmunera-post-list .load-more-button:hover .load-more-icon {
	transform: translateY(2px);
}

.srmunera-post-list .load-more-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.srmunera-post-list .load-more-button.loading .load-more-icon {
	animation: bounce 1s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(4px); }
}

/* No Posts Message */
.srmunera-post-list .no-posts {
	text-align: center;
	padding: 3rem;
	font-size: var(--theme-font-size-base, 1rem);
	color: #999;
}

/* Responsive */
@media (max-width: 1024px) {
	.srmunera-post-list .post-list-item {
		grid-template-columns: 100px 1fr 250px;
		gap: 1.5rem;
	}

	.srmunera-post-list .post-list-image {
		height: 180px;
	}

	/* En tablet, permitir que el filtro ocupe el 100% */
	.srmunera-post-list .post-list-filter {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
    .srmunera-post-list .post-list-item {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0 0 1.5rem 0;
	}

	/* En móvil, poner header en columna */
	.srmunera-post-list .post-list-header {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		align-items: stretch;
	}

	/* Añadir padding lateral a month y content en mobile */
	.srmunera-post-list .post-list-month,
	.srmunera-post-list .post-list-content {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.srmunera-post-list .post-list-month {
		text-align: left;
		font-size: var(--theme-font-size-h5, 1.5625rem);
		border-right: 0px solid #DBDBDB;
	}

	.srmunera-post-list .post-list-image {
		height: 200px;
		order: -1;
	}

	.srmunera-post-list .filter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.srmunera-post-list .filter-row label {
		width: 100%;
	}

	.srmunera-post-list .filter-select {
		width: 100%;
		min-width: auto;
	}

	.srmunera-post-list .filter-button {
		width: 100%;
	}
}

/* ========================================
   BOOKING ENGINE WIDGET
   ======================================== */

/* Mobile Trigger Button (Hidden on desktop) */
.booking-mobile-trigger {
	display: none;
}

/* Mobile Sticky Button (Hidden on desktop and initially on mobile) */
.booking-mobile-sticky-trigger {
	display: none;
}

.booking-engine-container {
	background-color: #1a1a1a;
	color: #ffffff;
	padding: 0px;
	border-radius: 16px;
	max-width: 100%;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4),
	            0 4px 12px rgba(0, 0, 0, 0.3);
	position: relative;
}

/* Modal Elements (Hidden on desktop) */
.booking-modal-overlay,
.booking-modal-header,
.booking-modal-footer {
	display: none;
}

.booking-modal-content {
	display: block;
	position: relative;
}

/* Tabs Navigation */
.booking-tabs {
	display: flex;
	gap: 0;
	border-bottom: 0px solid #333;
	margin-bottom: 0px;
}

.booking-tab {
	flex: 1;
	padding: 12px 20px;
	background: transparent;
	border: none;
	color: #666;
	font-size: 14px;
	font-weight: 400;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	border-bottom: 1px solid #333;
	margin-bottom: 0px;
}
.booking-tab{
	background-color:#1a1a1a !important;
}
.booking-tab{
	border-bottom-color:#565656;
}
.booking-tab:hover {
	color: #ffffff;
	border-bottom-color: #23388E;
}

.booking-tab.active {
	color: #ffffff;
	border-bottom-color: #23388E;
}

.booking-tab:first-child {
	border-top-left-radius: 10px;
}

.booking-tab:last-child {
	border-top-right-radius: 10px;
}

/* Booking Forms */
.booking-content {
	position: relative;
}

.booking-form {
	display: none;
}

.booking-form.active {
	display: block;
}

/* Booking Fields */
.booking-fields {
	display: flex;
	gap: 0;
	align-items: center;
	width: 100%;
	border-top: 0px solid #444;
	border-bottom: 1px solid #444;
}

/* From y To más grandes */
.booking-field:nth-child(1),
.booking-field:nth-child(2) {
	min-width: 180px;
	flex: 1.2;
}

/* Date field */
.booking-field:nth-child(3) {
	flex: 0.75;
	min-width: 130px;
}

.booking-field {
	display: flex;
	flex-direction: column;
	gap: 0;
	padding: 0 16px;
	position: relative;
	flex: 1;
	min-width: 120px;
}

.booking-field:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
	background-color: rgba(86, 86, 86, 0.40);
	pointer-events: none;
}

.booking-field:last-child {
	padding-right: 0;
}

.booking-select,
.booking-input {
	background: transparent;
	border: none;
	color: #ffffff;
	padding: 10px 8px;
	font-size: 15px;
	cursor: pointer;
	transition: border-color 0.3s ease;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 16px;
	padding-right: 32px;
	min-height: 3.2rem;
}

.booking-input {
	background-image: none;
	padding-right: 8px;
	cursor: text;
}

.booking-input.booking-datepicker {
	cursor: pointer;
	min-height: 3.2rem;
}

.booking-select:focus,
.booking-input:focus {
	outline: none;
}

.booking-select option {
	background: #1a1a1a;
	color: #ffffff;
}

.booking-input::placeholder {
	color: #999;
	font-weight: 400;
}

/* Airport Autocomplete */
.booking-field-airport {
	position: relative;
}

.airport-autocomplete {
	position: relative;
	width: 100%;
}

.airport-search-input {
	width: 100%;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='11' cy='11' r='8'/%3e%3cline x1='21' y1='21' x2='16.65' y2='16.65'/%3e%3c/svg%3e") !important;
	background-repeat: no-repeat !important;
	background-position: right 8px center !important;
	background-size: 16px !important;
	padding-right: 32px !important;
}

.airport-suggestions {
	position: absolute;
	top: calc(100% + 4px);
	left: -16px;
	right: -16px;
	background: #1a1a1a;
	border: 1px solid #444;
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
	z-index: 9999;
	max-height: 240px;
	overflow-y: auto;
	overflow-x: hidden;
}

.airport-suggestion-item {
	padding: 10px 16px;
	font-size: 13px;
	color: #ffffff;
	cursor: pointer;
	transition: background 0.15s ease;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.airport-suggestion-item:hover,
.airport-suggestion-item.focused,
.airport-suggestion-item:focus {
	background: #2a2a2a;
	outline: none;
}

.airport-suggestion-item:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Light theme overrides */
.booking-theme-light .airport-search-input {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111112' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3ccircle cx='11' cy='11' r='8'/%3e%3cline x1='21' y1='21' x2='16.65' y2='16.65'/%3e%3c/svg%3e") !important;
}

.booking-theme-light .airport-suggestions {
	background: #ffffff;
	border-color: #e5e7eb;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.booking-theme-light .airport-suggestion-item {
	color: #111112;
}

.booking-theme-light .airport-suggestion-item:hover,
.booking-theme-light .airport-suggestion-item.focused,
.booking-theme-light .airport-suggestion-item:focus {
	background: #f3f4f6;
}

.booking-theme-light .airport-suggestion-item:not(:last-child) {
	border-bottom-color: rgba(0, 0, 0, 0.06);
}

.booking-input[type="time"],
.booking-input[type="text"] {
	color-scheme: #fff;
}

.booking-input[type="time"] {
	font-family: inherit;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 20px 20px;
	padding-right: 40px;
}

.booking-input[type="time"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 12px;
	cursor: pointer;
}

/* Passengers Control */
.booking-field-passengers {
	min-width: 200px;
	flex: 1.3;
}

.passengers-control {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 8px;
	justify-content: space-between;
	min-height: 3.2rem;
}

.passenger-btn {
	background: transparent !important;
	border: none;
	color: #666;
	font-size: 20px;
	font-weight: 400;
	cursor: pointer;
	padding: 0;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease;
	line-height: 1;
}

.passenger-btn:hover {
	color: #ffffff;
}

.passenger-count {
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	flex: 1;
	text-align: center;
}

/* Add Return Button */
.booking-field-add-return {
	display: flex;
	align-items: end;
	justify-content: center;
	pointer-events: auto;
	position: relative;
	z-index: 2;
	min-width: 90px;
	flex: 0.5;
	padding: 0 8px !important;
}

.add-return-btn {
	background: transparent !important;
	border: none;
	color: #999;
	font-size: 15px;
	font-weight: 400;
	cursor: pointer;
	padding: 10px 8px;
	border-bottom: 1px solid transparent;
	transition: opacity 0.3s ease, color 0.3s ease;
	white-space: nowrap;
	text-decoration: underline;
	text-decoration-color: #999;
	text-underline-offset: 3px;
	opacity: 1;
	pointer-events: auto;
	position: relative;
	z-index: 1;
}

.add-return-btn:hover {
	color: #ffffff;
	text-decoration-color: #ffffff;
	opacity: 0.7;
}

/* Search Button */
.search-button {
	background: #23388E;
	border: none;
	color: #ffffff;
	padding: 12px 20px;
	font-size: 16px;
	border-radius: 0px;
	border-end-end-radius: 0.63rem;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	align-self: end;
	min-height: 3.8rem;
	width: 100%;
	max-width: 5.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	justify-self: end;
	margin-left: 0;
	flex: 0.7;
}

.search-button svg {
	width: 24px;
	height: 24px;
}

.search-button:hover {
	background: #1d4ed8;
}

/* Multi-Leg Specific */
.multi-leg-flights {
	display: flex;
	flex-direction: column;
	gap: 0px;
	margin-bottom: 0px;
}

/* Multi-leg search button without border-radius */
.booking-form[data-form="multi-leg"] .search-button {
	border-radius: 0px;
	border-end-end-radius: 0px;
}

/* ========================================
   BOOKING ENGINE - LIGHT THEME
   ======================================== */

/* Light Theme Override */
.booking-theme-light.booking-engine-container {
	background-color: #ffffff;
	color: #111112;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08),
	            0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Tabs Light Theme */
.booking-theme-light .booking-tab {
	border-bottom: 1px solid #e5e7eb !important;
	background-color: #ffffff !important;
	color: #6b7280;
}

.booking-theme-light .booking-tab:hover {
	color: #111112;
	border-bottom-color: #23388E !important;
}

.booking-theme-light .booking-tab.active {
	color: #23388E;
	border-bottom-color: #23388E !important;
}

/* Fields Light Theme */
.booking-theme-light .booking-fields {
	border-top-color: #e5e7eb;
	border-bottom: 0px solid #e5e7eb !important;
}

.booking-theme-light .booking-field:not(:last-child)::after {
	background-color: #e5e7eb;
}

/* Inputs and Selects Light Theme */
.booking-theme-light .booking-select,
.booking-theme-light .booking-input {
	color: #111112;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111112' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
}

.booking-theme-light .booking-select option {
	background: #ffffff;
	color: #111112;
}

.booking-theme-light .booking-input::placeholder {
	color: #9ca3af;
}

.booking-theme-light .booking-input[type="time"] {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23111112' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
}

.booking-theme-light .booking-input[type="time"]::-webkit-calendar-picker-indicator {
	opacity: 0;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 12px;
	cursor: pointer;
}

/* Passenger Controls Light Theme */
.booking-theme-light .passenger-btn {
	color: #9ca3af;
}

.booking-theme-light .passenger-btn:hover {
	color: #111112;
}

.booking-theme-light .passenger-count {
	color: #111112;
}

/* Add Return Button Light Theme */
.booking-theme-light .add-return-btn {
	color: #6b7280;
	text-decoration-color: #9ca3af;
}

.booking-theme-light .add-return-btn:hover {
	color: #111112;
	text-decoration-color: #111112;
}

/* Search Button Light Theme - mantiene el azul */
.booking-theme-light .search-button {
	background: #23388E;
	color: #ffffff;
}

.booking-theme-light .search-button:hover {
	background: #1d2d73;
}

.booking-theme-light .search-button svg path {
	stroke: #ffffff;
}

/* Flight Row Light Theme */
.booking-theme-light .flight-row {
	border-color: #e5e7eb;
}

.booking-theme-light .remove-flight-btn {
	border-color: #e5e7eb;
	color: #6b7280;
	border-radius: 0px;
}

.booking-theme-light .remove-flight-btn:hover {
	background-color: #fee2e2;
	color: #dc2626;
	border-color: #fecaca;
}
/* Add Flight Button Light Theme */
.booking-theme-light .add-flight-btn {
	/* Sin color específico para que se vea sobre el background azul */
}

.booking-theme-light .add-flight-btn:hover {
	background-color: #eff6ff;
	color: inherit; /* Mantiene el color por defecto del tema light */
}

/* Modal Header Light Theme (Mobile) */
.booking-theme-light .booking-modal-header {
	background-color: #ffffff;
	border-bottom-color: #e5e7eb;
}

.booking-theme-light .booking-modal-title {
	color: #111112;
}

.booking-theme-light .booking-modal-close svg path {
	stroke: #111112;
}

/* Mobile Footer Light Theme */
.booking-theme-light .booking-modal-footer {
	background-color: #ffffff;
	border-top-color: #e5e7eb;
}

.booking-theme-light .booking-modal-submit {
	background-color: #23388E;
	color: #ffffff;
}

.booking-theme-light .booking-modal-submit:hover {
	background-color: #1d2d73;
}

/* Mobile Triggers Light Theme */
.booking-theme-light ~ .booking-mobile-trigger,
.booking-theme-light ~ .booking-mobile-sticky-trigger {
	background-color: #23388E;
	color: #ffffff;
}

/* ========================================
   IMAGE/VIDEO SWIPER
   ======================================== */
.srmunera-image-swiper .swiper {
	width: 100%;

	/* ensure positioned container for absolute controls */
	position: relative;
}
.srmunera-image-swiper .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.srmunera-image-swiper .srmunera-slide-media img,
.srmunera-image-swiper .srmunera-slide-media video {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.srmunera-image-swiper.image-full .srmunera-slide-media img,
.srmunera-image-swiper.image-full .srmunera-slide-media video {
	width: 100%;
	height: 100%;
}

.srmunera-image-swiper .srmunera-slide-media[data-fit="contain"] img,
.srmunera-image-swiper .srmunera-slide-media[data-fit="contain"] video {
	object-fit: contain;
}

/* Pagination outside */
.srmunera-image-swiper.pagination-outside .swiper-pagination {
	position: relative;
	margin-top: 25px !important;
}

/* Hide arrows/pagination when disabled via JS */
.srmunera-image-swiper.no-arrows .swiper-button-prev,
.srmunera-image-swiper.no-arrows .swiper-button-next {
	display: none !important;
}
.srmunera-image-swiper.no-pagination .swiper-pagination {
	display: none !important;
}

/* Pagination styling (centered bullets, outside by default when class applied) */
.srmunera-image-swiper .swiper-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 0;
}

.srmunera-image-swiper .swiper-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: rgba(0,0,0,0.2);
	opacity: 1;
	border-radius: 50%;
	transition: all 0.25s ease;
}
.srmunera-image-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #23388E;
	width: 12px;
	height: 12px;
}

/* Outside pagination adjustments */
.srmunera-image-swiper.pagination-outside .swiper {
	margin-bottom: 0;
}
.srmunera-image-swiper.pagination-outside .swiper-pagination {
	position: relative;
	margin-top: 12px;
}

/* Make slides square when image is full width and no explicit height set */
.srmunera-image-swiper.image-square .srmunera-slide-media {
	aspect-ratio: 1 / 1;
	height: auto;
}

/* Ensure videos/images fill the slide area when using cover */
.srmunera-image-swiper .srmunera-slide-media img,
.srmunera-image-swiper .srmunera-slide-media video {
	width: 100%;
	height: 100%;
}

/* Navigation arrows for image swiper */
.srmunera-image-swiper .swiper-button-prev,
.srmunera-image-swiper .swiper-button-next {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(0,0,0,0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 30;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.12s ease;
}
.srmunera-image-swiper .swiper-button-prev { left: 12px; }
.srmunera-image-swiper .swiper-button-next { right: 12px; }

.srmunera-image-swiper .swiper-button-prev:hover,
.srmunera-image-swiper .swiper-button-next:hover {
	background: rgba(0,0,0,0.6);
}

.srmunera-image-swiper .swiper-button-prev:after,
.srmunera-image-swiper .swiper-button-next:after {
	content: '';
	width: 14px;
	height: 14px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
}

.srmunera-image-swiper .swiper-button-prev:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='15 18 9 12 15 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}
.srmunera-image-swiper .swiper-button-next:after {
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='9 6 15 12 9 18' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
}

/* Disabled state */
.srmunera-image-swiper .swiper-button-disabled {
	opacity: 0.35;
	cursor: not-allowed;
}
.srmunera-image-swiper .srmunera-slide-caption {
	margin-top: 8px;
	color: #fff;
	font-size: 14px;
	text-align: center;
}

@media (max-width: 768px) {
	.srmunera-image-swiper .srmunera-slide-caption {
		font-size: 13px;
	}
}

.flight-row {
	position: relative;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: transparent;
}

.flight-row:not(:first-child) {
	margin-top: 0;
}

.flight-row:not(:first-child) .booking-fields {
	border-top: none;
}



.flight-row .booking-fields {
	position: relative;
}

.remove-flight-btn {
	background: transparent;
	border: 1px solid #444;
	color: #999;
	font-size: 20px;
	font-weight: 300;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0;
	border-end-end-radius: 10px;
	transition: all 0.3s ease;
	flex: 0.7;
	min-height: 3.8rem;
	max-width: 5.3rem;
	width: 100%;
	align-self: end;
	justify-self: end;
	margin-left: 0;
	padding: 0;
}

.remove-flight-btn:hover {
	color: #ffffff;
	background: rgba(239, 68, 68, 0.1);
	border-color: #ef4444;
}

.add-flight-btn {
	background: transparent;
	border: none;
	color: #999;
	padding: 12px 20px;
	font-size: 14px;
	border-radius: 0px 0px 0.63rem 0.63rem;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	font-weight: 400;
}

.add-flight-btn:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.02);
}

.add-flight-btn .plus-icon {
	font-size: 16px;
	font-weight: 400;
}

/* Time Field - Narrower */
.booking-field-time {
	max-width: 120px;
	flex: 0.75;
	min-width: 100px;
}

/* Add visual separator for round trip between date and return */
.booking-form[data-form="round-trip"] .booking-fields {
	position: relative;
}

/* Flatpickr Dark Theme for Booking Engine */
.flatpickr-dark.flatpickr-calendar {
	background: #1a1a1a;
	border: 1px solid #444;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.flatpickr-dark .flatpickr-months {
	background: #1a1a1a;
	border-bottom: 1px solid #444;
}

.flatpickr-dark .flatpickr-month,
.flatpickr-dark .flatpickr-current-month .flatpickr-monthDropdown-months {
	color: #ffffff;
	background: #1a1a1a;
}

.flatpickr-dark .flatpickr-weekdays {
	background: #1a1a1a;
}

.flatpickr-dark .flatpickr-weekday {
	color: #999;
}

.flatpickr-dark .flatpickr-day {
	color: #ffffff;
}

.flatpickr-dark .flatpickr-day:hover:not(.flatpickr-disabled) {
	background: #2a2a2a;
	border-color: #2a2a2a;
}

.flatpickr-dark .flatpickr-day.selected,
.flatpickr-dark .flatpickr-day.selected:hover {
	background: #2563eb;
	border-color: #2563eb;
	color: #ffffff;
}

.flatpickr-dark .flatpickr-day.today {
	border-color: #2563eb;
}

.flatpickr-dark .flatpickr-day.disabled,
.flatpickr-dark .flatpickr-day.disabled:hover {
	color: #444;
}

.flatpickr-dark .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-dark .flatpickr-months .flatpickr-next-month:hover svg {
	fill: #ffffff;
}

.flatpickr-dark .flatpickr-months .flatpickr-prev-month svg,
.flatpickr-dark .flatpickr-months .flatpickr-next-month svg {
	fill: #999;
}

/* Flatpickr Light Theme for Booking Engine */
.flatpickr-light.flatpickr-calendar {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.flatpickr-light .flatpickr-months {
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
}

.flatpickr-light .flatpickr-month,
.flatpickr-light .flatpickr-current-month .flatpickr-monthDropdown-months {
	color: #111112;
	background: #ffffff;
}

.flatpickr-light .flatpickr-weekdays {
	background: #ffffff;
}

.flatpickr-light .flatpickr-weekday {
	color: #6b7280;
}

.flatpickr-light .flatpickr-day {
	color: #111112;
}

.flatpickr-light .flatpickr-day:hover:not(.flatpickr-disabled) {
	background: #f3f4f6;
	border-color: #f3f4f6;
}

.flatpickr-light .flatpickr-day.selected,
.flatpickr-light .flatpickr-day.selected:hover {
	background: #23388E;
	border-color: #23388E;
	color: #ffffff;
}

.flatpickr-light .flatpickr-day.today {
	border-color: #23388E;
}

.flatpickr-light .flatpickr-day.disabled,
.flatpickr-light .flatpickr-day.disabled:hover {
	color: #e5e7eb;
}

.flatpickr-light .flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-light .flatpickr-months .flatpickr-next-month:hover svg {
	fill: #111112;
}

.flatpickr-light .flatpickr-months .flatpickr-prev-month svg,
.flatpickr-light .flatpickr-months .flatpickr-next-month svg {
	fill: #6b7280;
}

/* Responsive */
@media (max-width: 1024px) {
	.booking-fields {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

/* Responsive adjustments were moved to the modal-specific styles below */

@media (max-width: 992px) {
	/* Show mobile trigger button */
	.booking-mobile-trigger {
		display: block;
		width: 90%;
		margin:auto;
		background: #23388e;
		color: #ffffff;
		border: none;
		border-radius: 10px;
		padding: 14px 24px;
		font-family: 'Manrope', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 25px;
		cursor: pointer;
		transition: background 0.3s ease;
	}
	
	.booking-mobile-trigger:hover {
		background: #1d2d73;
	}
	
	/* Mobile Sticky Button (initially hidden) */
	.booking-mobile-sticky-trigger {
		display: block;
		width: 90%;
		max-width: 400px;
		position: fixed;
		bottom: 20px;
		left: 50%;
		transform: translateX(-50%) translateY(120px);
		z-index: 1000;
		background: #23388e;
		color: #ffffff;
		border: none;
		border-radius: 10px;
		padding: 14px 24px;
		font-family: 'Manrope', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 25px;
		cursor: pointer;
		box-shadow: 0 4px 20px rgba(35, 56, 142, 0.4);
		transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
		opacity: 0;
		pointer-events: none;
	}
	
	.booking-mobile-sticky-trigger.visible {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
		pointer-events: auto;
	}
	
	.booking-mobile-sticky-trigger:hover {
		background: #1d2d73;
		box-shadow: 0 6px 24px rgba(35, 56, 142, 0.5);
	}
	
	/* Hide booking engine by default on mobile */
	.booking-engine-container {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9999;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		background: transparent;
	}
	
	/* When modal is open */
	.booking-engine-container.modal-open {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	
	/* Modal Overlay */
	.booking-engine-container .booking-modal-overlay {
		display: none;
	}
	
	.booking-engine-container.modal-open .booking-modal-overlay {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.92);
		backdrop-filter: blur(2px);
		z-index: 1;
	}
	
	/* Modal Content Container */
	.booking-engine-container.modal-open .booking-modal-content {
		position: relative;
		z-index: 2;
		width: 100%;
		height: 100%;
		max-height: 100vh;
		overflow-y: auto;
		background: transparent;
		display: flex;
		flex-direction: column;
		animation: slideUp 0.3s ease-out;
	}
	
	@keyframes slideUp {
		from {
			opacity: 0;
			transform: translateY(20px);
		}
		to {
			opacity: 1;
			transform: translateY(0);
		}
	}
	
	/* Modal Header */
	.booking-engine-container .booking-modal-header {
		display: none;
	}
	
	.booking-engine-container.modal-open .booking-modal-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-top:5rem;
		margin-bottom:3.5rem;
		padding: 31px 36px 19px 36px;
		background: transparent;
		position: relative;
		z-index: 3;
	}
	
	.booking-modal-title {
		font-family: 'Manrope', sans-serif;
		font-size: 18px;
		font-weight: 600;
		line-height: 30px;
		color: #ffffff !important;
		margin: 0;
		flex: 1;
		text-align: center;
	}
	
	.booking-modal-close {
		position: fixed;
		top: 31px;
		right: 36px;
		background: transparent !important;
		border: none;
		color: #ffffff;
		cursor: pointer;
		padding: 0;
		width: 42px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: opacity 0.3s ease;
	}
	
	.booking-modal-close:hover {
		opacity: 0.7;
	}
	
	.booking-modal-close svg {
		width: 42px;
		height: 42px;
	}
	
	/* Adjust tabs for modal */
	.booking-engine-container.modal-open .booking-tabs {
		background: #111112 !important;
		border-top: 1px solid #565656 !important;
		border-left: 1px solid #565656 !important;
		border-right: 1px solid #565656 !important;
		border-radius: 0.63rem 0.63rem 0 0 !important;
		margin: 0 36px !important;
		border-bottom: 0 !important;
	}
	
	.booking-engine-container.modal-open .booking-tab {
		background: #111112 !important;
		padding: 12px 16px !important;
		font-size: 14px !important;
		font-weight: 500 !important;
		border-bottom: 1px solid #565656 !important;
	}
	
	.booking-engine-container.modal-open .booking-tab:first-child {
		border-top-left-radius: 0.63rem !important;
	}
	
	.booking-engine-container.modal-open .booking-tab:last-child {
		border-top-right-radius: 0.63rem !important;
	}
	
	.booking-engine-container.modal-open .booking-tab.active {
		color: #ffffff !important;
		border-bottom-color: #23388e !important;
	}
	
	.booking-engine-container.modal-open .booking-tab:not(.active) {
		color: rgba(255, 255, 255, 0.6) !important;
	}
	
	/* Adjust booking fields for modal */
	.booking-content {
		padding: 0 36px;
	}
	
	.booking-engine-container.modal-open .booking-fields {
		display: flex !important;
		flex-direction: column !important;
		gap: 16px !important;
		border: none !important;
		padding: 0 0 16px 0 !important;
		align-items: stretch !important;
	}
	
	.booking-engine-container.modal-open .booking-field {
		background: #111112 !important;
		border: 1px solid #565656 !important;
		border-radius: 0.63rem !important;
		padding: 14px 16px !important;
		min-width: 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		flex: none !important;
		min-height: 52px !important;
		display: flex !important;
		align-items: center !important;
	}
	
	.booking-engine-container.modal-open .booking-field:first-child {
		border-radius: 0 0 0.63rem 0.63rem !important;
		border-top: none !important;
	}
	
	.booking-engine-container.modal-open .booking-field::after {
		display: none !important;
	}
	
	.booking-engine-container.modal-open .booking-field:nth-child(1),
	.booking-engine-container.modal-open .booking-field:nth-child(2),
	.booking-engine-container.modal-open .booking-field:nth-child(3) {
		min-width: 100% !important;
		flex: none !important;
	}
	
	.booking-engine-container.modal-open .booking-select,
	.booking-engine-container.modal-open .booking-input {
		font-family: 'Manrope', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 25px;
		padding: 0;
		min-height: auto;
		background-position: right 0 center;
		width: 100%;
	}
	
	.booking-engine-container.modal-open .booking-select {
		width: 100%;
	}
	
	.booking-engine-container.modal-open .booking-input.booking-datepicker {
		min-height: auto;
	}
	
	/* Passenger control in modal */
	.booking-engine-container.modal-open .booking-field-passengers {
		min-width: 100%;
	}
	
	.booking-engine-container.modal-open .passengers-control {
		padding: 0;
		min-height: auto;
		width: 100%;
	}
	
	/* Hide desktop search button in forms */
	.booking-engine-container.modal-open .booking-fields .search-button {
		display: none !important;
	}
	
	.booking-engine-container.modal-open .search-button {
		display: none !important;
	}
	
	/* Hide add return button visual adjustments */
	.booking-engine-container.modal-open .booking-field-add-return {
		min-width: 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		padding: 14px 16px !important;
	}
	
	.booking-engine-container.modal-open .add-return-btn {
		font-family: 'Manrope', sans-serif;
		width: 100%;
		text-align: left;
		padding: 0;
	}
	
	/* Time field */
	.booking-engine-container.modal-open .booking-field-time {
		max-width: 100% !important;
		min-width: 100% !important;
		width: 100% !important;
	}
	
	/* Passenger field */
	.booking-engine-container.modal-open .booking-field-passengers {
		min-width: 100% !important;
		max-width: 100% !important;
		width: 100% !important;
	}
	
	/* Multi-leg adjustments */
	.booking-engine-container.modal-open .flight-row {
		padding: 0;
	}
	
	.booking-engine-container.modal-open .flight-row .booking-fields {
		border: none !important;
	}
	
	.booking-engine-container.modal-open .remove-flight-btn {
		display: flex !important;
		min-width: 100% !important;
		max-width: 100% !important;
		width: 100% !important;
		background: #111112 !important;
		border: 1px solid #565656 !important;
		border-radius: 10px !important;
		color: #999 !important;
		font-size: 16px !important;
		font-weight: 400 !important;
		padding: 14px 16px !important;
		margin: 0 !important;
		align-items: center !important;
		justify-content: center !important;
		font-family: 'Manrope', sans-serif !important;
		min-height: 52px !important;
		align-self: stretch !important;
		flex: none !important;
	}
	
	.booking-engine-container.modal-open .remove-flight-btn:hover {
		color: #ffffff !important;
		background: rgba(239, 68, 68, 0.1) !important;
		border-color: #ef4444 !important;
	}
	
	.booking-engine-container.modal-open .add-flight-btn {
		margin: 0 0px 16px 0px;
		background: #111112;
		border: 1px solid #565656;
		border-radius: 0.63rem;
		padding: 14px 16px;
		font-family: 'Manrope', sans-serif;
	}
	
	/* Modal Footer with Book Now button */
	.booking-engine-container .booking-modal-footer {
		display: none;
	}
	
	.booking-engine-container.modal-open .booking-modal-footer {
		display: block;
		padding: 24px 36px 40px 36px;
		background: transparent;
		margin-top: auto;
	}
	
	/* Modal Footer with Book Now button */
	.booking-modal-footer {
		display: block;
		padding: 24px 36px 40px 36px;
		background: transparent;
		margin-top: auto;
	}
	
	.booking-modal-submit {
		width: 100%;
		background: #23388e;
		color: #ffffff;
		border: none;
		border-radius: 0.63rem;
		padding: 16px 24px;
		font-family: 'Manrope', sans-serif;
		font-size: 16px;
		font-weight: 400;
		line-height: 25px;
		cursor: pointer;
		transition: background 0.3s ease;
	}
	
	.booking-modal-submit:hover {
		background: #1d2d73;
	}
	
	/* Dark Theme Modal - Time Input Icon */
	.booking-engine-container.modal-open .booking-input[type="time"] {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
	}
	
	.booking-engine-container.modal-open .booking-input[type="time"]::-webkit-calendar-picker-indicator {
		opacity: 0;
	}
	
	/* ========================================
	   LIGHT THEME - MOBILE OVERRIDES
	   ======================================== */
	
	/* Mobile Modal Title Light Theme */
	.booking-theme-light.modal-open .booking-modal-title {
		color: #ffffff !important;
	}
	
	/* Mobile Modal Close Button Light Theme */
	.booking-theme-light.modal-open .booking-modal-close {
		color: #ffffff;
	}
	
	.booking-theme-light.modal-open .booking-modal-close svg path {
		stroke: #ffffff;
	}
	
	/* Mobile Tabs Light Theme */
	.booking-theme-light.modal-open .booking-tabs {
		background: #f9fafb !important;
		border-top-color: #e5e7eb !important;
		border-left-color: #e5e7eb !important;
		border-right-color: #e5e7eb !important;
	}
	
	.booking-theme-light.modal-open .booking-tab {
		background: #f9fafb !important;
		border-bottom-color: #e5e7eb !important;
		color: #6b7280 !important;
	}
	
	.booking-theme-light.modal-open .booking-tab.active {
		color: #23388E !important;
		border-bottom-color: #23388E !important;
	}
	
	.booking-theme-light.modal-open .booking-tab:not(.active) {
		color: #6b7280 !important;
	}
	
	/* Mobile Fields Light Theme */
	.booking-theme-light.modal-open .booking-field {
		background: #f9fafb !important;
		border-color: #e5e7eb !important;
	}
	
	.booking-theme-light.modal-open .booking-field:first-child {
		background: #f9fafb !important;
		border-color: #e5e7eb !important;
	}
	
	.booking-theme-light.modal-open .booking-select,
	.booking-theme-light.modal-open .booking-input {
		color: #111112;
		background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111112' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	}
	
	.booking-theme-light.modal-open .booking-input[type="time"] {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23111112' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12 6 12 12 16 14'/%3E%3C/svg%3E");
	}
	
	.booking-theme-light.modal-open .booking-input::placeholder {
		color: #9ca3af;
	}
	
	.booking-theme-light.modal-open .booking-input[type="time"]::-webkit-calendar-picker-indicator {
		opacity: 0;
	}
	
	.booking-theme-light.modal-open .passenger-count {
		color: #111112 !important;
	}
	
	.booking-theme-light.modal-open .passenger-btn {
		color: #9ca3af !important;
	}
	
	.booking-theme-light.modal-open .passenger-btn:hover {
		color: #111112 !important;
	}
	
	/* Multi-leg buttons Light Theme Mobile */
	.booking-theme-light.modal-open .remove-flight-btn {
		background: #f9fafb !important;
		border-color: #e5e7eb !important;
		color: #6b7280 !important;
	}
	
	.booking-theme-light.modal-open .remove-flight-btn:hover {
		color: #dc2626 !important;
		background: #fee2e2 !important;
		border-color: #fecaca !important;
	}
	
	.booking-theme-light.modal-open .add-flight-btn {
		background: #f9fafb;
		border-color: #e5e7eb;
		color: #23388E;
	}
	
	.booking-theme-light.modal-open .add-flight-btn:hover {
		background: #eff6ff;
		border-color: #bfdbfe;
	}
	
	.booking-theme-light.modal-open .add-return-btn {
		color: #6b7280;
		text-decoration-color: #9ca3af;
	}
	
	.booking-theme-light.modal-open .add-return-btn:hover {
		color: #111112;
		text-decoration-color: #111112;
	}
}

@media (max-width: 480px) {
	.booking-engine-container.modal-open .booking-modal-header {
		padding: 24px 20px 16px 20px;
	}
	
	.booking-engine-container.modal-open .booking-modal-close {
		top: 24px;
		right: 20px;
	}
	
	.booking-engine-container.modal-open .booking-modal-title {
		font-size: 20px;
		line-height: 24px;
	}
	
	.booking-engine-container.modal-open .booking-tabs,
	.booking-engine-container.modal-open .booking-content,
	.booking-engine-container.modal-open .add-flight-btn {
		margin-left: 0px;
		margin-right: 0px;
	}
	
	.booking-engine-container.modal-open .booking-modal-footer {
		padding: 24px 20px 32px 20px;
	}
}
