@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

/* Container */
.bep-container {
	max-width: 100%;
	/* Fluid width to fill wrapper */
	margin: 20px auto;
	padding: 20px;
	background: transparent;
	font-family: 'Outfit', sans-serif;
}

/* Steps */
.bep-step {
	padding: 20px 0;
}

/* Forms - Retaining basic styles */
.bep-form-group {
	margin-bottom: 15px;
}

.bep-form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 700;
	color: #333;
}

.bep-form-group input {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
}

/* =========================================
   NEW LAYOUT STYLES (Reference Design)
   ========================================= */

:root {
	--bep-primary: #1a365d;
	/* Deep Luxury Blue */
	--bep-primary-light: #2b6cb0;
	--bep-accent: #c6a300;
	/* Elegant Gold */
	--bep-text-dark: #1e293b;
	--bep-text-gray: #64748b;
	--bep-bg-light: #f8fafc;
	--bep-border: #e2e8f0;
	--bep-shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
	--bep-shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--bep-glass-bg: rgba(255, 255, 255, 0.7);
	--bep-glass-blur: 8px;
}

/* --- Global Utilities --- */
.bep-btn-select-new {
	background: var(--bep-primary);
	color: #fff;
	width: 100%;
	padding: 14px 20px;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	letter-spacing: 1px;
	box-shadow: 0 4px 6px rgba(26, 54, 93, 0.2);
}

.bep-btn-select-new:hover {
	background: var(--bep-primary-light);
}

/* --- Premium Tooltip --- */
[data-tip] {
	position: relative;
	cursor: help;
}

[data-tip]::before,
[data-tip]::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	pointer-events: none;
	z-index: 1000002;
	/* High z-index to show over popup */
}

[data-tip]::before {
	content: "";
	bottom: 100%;
	margin-bottom: 5px;
	border: 6px solid transparent;
	border-top-color: #333;
}

[data-tip]::after {
	content: attr(data-tip);
	bottom: 100%;
	margin-bottom: 17px;
	/* Arrow size + offset */
	background: #333;
	color: #fff;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	font-weight: 500;
}

[data-tip]:hover::before,
[data-tip]:hover::after {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

/* --- Card Container --- */
.bep-room-card-new {
	display: flex;
	background: var(--bep-glass-bg);
	backdrop-filter: blur(var(--bep-glass-blur));
	-webkit-backdrop-filter: blur(var(--bep-glass-blur));
	border: 1px solid rgba(226, 232, 240, 0.6);
	margin-bottom: 25px;
	border-radius: 16px;
	box-shadow: var(--bep-shadow-sm);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	min-height: 220px;
	align-items: stretch;
	overflow: hidden;
}

.bep-room-card-new:hover {
	transform: translateY(-4px);
	box-shadow: var(--bep-shadow-md);
	background: rgba(255, 255, 255, 0.9);
}

/* --- Column 1: Image (Left) --- */
.bep-card-image {
	width: 320px;
	/* Fixed width for professional look */
	flex-shrink: 0;
	/* Prevent shrinking */
	aspect-ratio: 4 / 3;
	/* Fixed rectangular ratio */
	position: relative;
	cursor: pointer;
	overflow: hidden;
	padding: 8px;
	align-self: center;
	/* Keep centered if text is long */
}

.bep-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	border-radius: 12px;
}

.bep-card-image:hover img {
	transform: scale(1.05);
}

.bep-img-overlay {
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: calc(100% - 30px);
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 8px 15px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	opacity: 0.9;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.bep-card-badge {
	position: absolute;
	top: 25px;
	/* 15px padding + 10px offset */
	left: 15px;
	background: var(--bep-accent);
	color: #fff;
	padding: 5px 12px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
	z-index: 10;
}

/* --- Column 2: Details (Right) --- */
.bep-card-details {
	flex: 1;
	padding: 12px;
	display: flex;
	flex-direction: column;
	/* No border-right needed anymore */
}

.bep-room-title {
	margin: 0 0 10px 0;
	font-size: 20px;
	color: var(--bep-primary);
	text-transform: uppercase;
	font-weight: 800;
	line-height: 1.2;
}

.bep-room-specs {
	margin-bottom: 10px;
	color: var(--bep-text-gray);
	font-size: 13px;
	display: flex;
	align-items: center;
	/* Vertically align items */
	gap: 15px;
	flex-wrap: wrap;
	/* Wrap if needed on mobile */
}

.bep-room-specs span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.bep-room-desc {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
	margin-bottom: 15px;
	display: block;
	overflow: visible;
}

.bep-room-amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

.bep-amenity-badge {
	font-size: 10px;
	background: #f0f4f8;
	color: #4a5568;
	padding: 2px 6px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	gap: 3px;
	height: 22px;
	box-sizing: border-box;
}

.bep-amenity-badge .dashicons {
	font-size: 14px;
	width: 14px;
	height: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bep-amenity-more {
	font-size: 11px;
	background: #e2e8f0;
	color: #4a5568;
	padding: 4px 8px;
	border-radius: 4px;
	font-weight: 700;
	cursor: help;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bep-details-link {
	margin-top: 0;
	color: var(--bep-primary);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px dotted var(--bep-primary);
	margin-left: auto;
	/* Push to right if we want, or just let it sit there */
}

.bep-details-link:hover {
	color: var(--bep-primary-light);
}

/* --- Quantity Selector --- */
.bep-qty-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.bep-qty-label {
	font-size: 10px;
	text-transform: uppercase;
	color: #718096;
	margin-bottom: 4px;
	font-weight: 700;
}

.bep-qty-controls {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	overflow: hidden;
}

.bep-qty-btn {
	background: #f7fafc;
	border: none;
	width: 24px;
	height: 24px;
	cursor: pointer;
	font-weight: bold;
	color: #4a5568;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.bep-qty-btn:hover {
	background: #edf2f7;
}

.bep-qty-val {
	width: 20px;
	text-align: center;
	font-size: 13px;
	font-weight: 700;
	color: #2d3748;
}

/* --- Embedded Price box --- */
.bep-price-box-embedded {
	margin-top: auto;
	padding: 15px 20px;
	background: #f1f5f9;
	border-radius: 12px;
	border: 1px solid #e2e8f0;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 15px;
}

.bep-embedded-price-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.bep-price-label-small {
	font-size: 11px;
	text-transform: uppercase;
	color: #666;
	font-weight: 700;
	margin-bottom: 2px;
}

.bep-price-row {
	display: flex;
	align-items: center;
	gap: 10px;
}

.bep-price-original {
	font-size: 14px;
	color: #999;
	text-decoration: line-through;
}

.bep-price-final {
	font-size: 24px;
	color: var(--bep-primary);
	font-weight: 800;
}

.bep-embedded-action-col {
	width: 200px;
}

.bep-btn-select-new {
	width: 100%;
	padding: 10px 15px;
	font-size: 13px;
	/* Retains other btn styles from global utility */
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
	.bep-room-card-new {
		flex-direction: column;
	}

	.bep-card-image,
	.bep-card-details {
		width: 100%;
		border-right: none;
	}

	.bep-card-image {
		height: 250px;
	}

	.bep-price-box-embedded {
		flex-direction: column;
		gap: 15px;
		align-items: stretch;
	}

	.bep-embedded-action-col {
		width: 100%;
	}

	.bep-embedded-price-col {
		align-items: center;
		width: 100%;
	}

	.bep-price-row {
		justify-content: center;
	}
}

/* --- Info / Calendar Popup NEW WIDE --- */
.bep-info-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
}

.bep-info-popup.active {
	opacity: 1;
	pointer-events: auto;
}

.bep-info-content {
	background: #fff;
	width: 90%;
	/* Wider width */
	max-width: 900px;
	/* COMPACT but WIDER as requested */
	max-height: 70vh;
	/* Reduced height */
	border-radius: 12px;
	overflow-y: auto;
	position: relative;
	padding: 25px;
	/* Compact Padding */
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.bep-info-close {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	font-size: 20px;
	/* Smaller, more minimal */
	color: #ccc;
	/* Lighter color */
	transition: color 0.2s;
}

.bep-info-close:hover {
	color: var(--bep-primary);
}

.bep-info-title {
	font-size: 20px;
	/* Slightly smaller title */
	font-weight: 800;
	color: var(--bep-primary);
	margin-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
	/* Thinner border */
	padding-bottom: 10px;
}

/* Popup Amenities - Icons Only Grid */
.bep-popup-amenities-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	/* Reduced gap */
	margin-bottom: 25px;
}

.bep-popup-amenity-icon {
	width: 40px;
	height: 40px;
	background: #fff;
	/* White background for minimalism */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--bep-primary);
	cursor: help;
	transition: all 0.2s;
	border: 1px solid #e0e0e0;
	/* Subtle border */
	position: relative;
}

.bep-popup-amenity-icon:hover {
	background: var(--bep-primary);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-color: var(--bep-primary);
}

.bep-popup-amenity-icon .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.bep-calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	/* Very tight gap */
	margin-top: 10px;
}

.bep-calendar-day {
	text-align: center;
	padding: 5px 3px;
	background: var(--bep-bg-light);
	border-radius: 4px;
	border: 1px solid var(--bep-border);
	min-height: 38px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 2px;
}

/* Hide Summary Bar inside Popup as requested */
#bep-info-popup .bep-booking-summary-bar {
	display: none !important;
}

.bep-cal-date {
	display: none;
}

.bep-cal-header {
	font-size: 10px;
	font-weight: 700;
	color: #374151;
	line-height: 1.2;
	white-space: nowrap;
}

.bep-cal-price {
	font-size: 12px;
	font-weight: 700;
	color: var(--bep-primary);
	line-height: 1.1;
}

/* Compact price row for discounted days */
.bep-cal-price-row {
	display: flex;
	align-items: baseline;
	gap: 4px;
	justify-content: center;
}

.bep-cal-crossed {
	font-size: 9px;
	color: #9ca3af;
	text-decoration: line-through;
	line-height: 1;
}

.bep-cal-offer {
	font-size: 12px;
	font-weight: 800;
	color: #dc2626;
	line-height: 1;
}

.bep-cal-day-name {
	display: none;
}

/* --- Unified Popup Layout --- */
.bep-popup-body {
	display: flex;
	gap: 30px;
	margin-bottom: 20px;
}

.bep-popup-left {
	flex: 2;
	/* 2/3 width */
	min-width: 0;
	/* Prevent flex overflow */
}

.bep-popup-right {
	flex: 1;
	/* 1/3 width */
	min-width: 250px;
}

/* Popup Gallery */
.bep-popup-gallery-container {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #f0f0f0;
	/* Light gray placeholder instead of black */
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	/* Softer shadow */
	cursor: zoom-in;
	/* Indicate clickable for full Lightbox */
}

.bep-popup-gallery-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Fill the space, no black bars */
	transition: transform 0.5s ease;
}

.bep-popup-gallery-container:hover img {
	transform: scale(1.02);
	/* Subtle zoom on hover */
}

.bep-popup-gallery-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 20px;
	z-index: 10;
	transition: background 0.3s;
}

.bep-popup-gallery-nav:hover {
	background: var(--bep-primary);
}

.bep-popup-prev {
	left: 10px;
}

.bep-popup-next {
	right: 10px;
}

.bep-popup-counter {
	position: absolute;
	bottom: 10px;
	right: 15px;
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
}

.bep-search-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: var(--bep-bg-light);
	border-radius: 50%;
	color: var(--bep-primary);
	cursor: pointer;
	transition: all 0.2s;
	margin-left: 10px;
	font-size: 16px !important;
}

.bep-search-icon:hover {
	background: var(--bep-primary);
	color: #fff;
	transform: scale(1.1);
}

@media (max-width: 768px) {
	.bep-popup-body {
		flex-direction: column;
	}

	.bep-popup-right {
		width: 100%;
	}
}

.bep-cal-nav {
	background: #f0f4f8;
	border: 1px solid #d1d5db;
	color: #4b5563;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	/* transition: all 0.2s; */
}

/* Sidebar Adjustments */
/* Hide Back Button and Edit Data as requested */
#bep-step-2 .bep-btn-secondary,
#bep-btn-edit-search,
.bep-sidebar-back-btn,
.bep-link-back,
.bep-link-scroll-top {
	display: none !important;
}



.bep-cal-nav:hover {
	background: #e5e7eb;
	color: #1f2937;
}

/* --- Lightbox Styles (Moved from JS) --- */
.bep-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 10, 10, 0.5);
	/* 50% transparency */
	backdrop-filter: blur(5px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}

/* ... existing styles ... */
.bep-lightbox.active {
	opacity: 1;
	pointer-events: auto;
}

.bep-lightbox-content {
	position: relative;
	width: 90%;
	height: 85%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transform: scale(0.95);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bep-lightbox.active .bep-lightbox-content {
	transform: scale(1);
}

.bep-lightbox-img-container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.bep-lightbox-img {
	max-width: 100%;
	max-height: 100%;
	border-radius: 4px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	opacity: 1;
	transition: opacity 0.3s ease-in-out;
}

.bep-lightbox-img.loading {
	opacity: 0;
}

.bep-lightbox-close {
	position: absolute;
	top: -50px;
	/* Moved closer to the image, outside content box but near */
	right: 0;
	width: 44px;
	height: 44px;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	z-index: 110;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
}

.bep-lightbox-close:hover {
	transform: rotate(90deg) scale(1.1);
	color: #fff;
	background: var(--bep-primary);
}

.bep-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	z-index: 110;
	transition: all 0.3s;
}

.bep-lightbox-prev {
	left: 30px;
}

.bep-lightbox-next {
	right: 30px;
}

.bep-lightbox-nav:hover {
	background: #008080;
	transform: translateY(-50%) scale(1.1);
}

.bep-lightbox-counter {
	position: absolute;
	bottom: -40px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	font-weight: 600;
	padding: 5px 15px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 20px;
}

@media (max-width: 768px) {
	.bep-lightbox-nav {
		width: 44px;
		height: 44px;
		font-size: 18px;
	}

	.bep-lightbox-prev {
		left: 10px;
	}

	.bep-lightbox-next {
		right: 10px;
	}

	.bep-lightbox-close {
		top: 10px;
		right: 10px;
	}
}

/* Ensure Flatpickr is above Lightbox */
/* Ensure Flatpickr is above Lightbox and Resized */
.flatpickr-calendar {
	z-index: 100000 !important;
	font-size: 12px !important;
	/* Shrink text */
	width: auto !important;
}

.flatpickr-wrapper {
	z-index: 100000 !important;
}

/* Specific styling for months to compact them */
.flatpickr-months .flatpickr-month {
	height: 35px !important;
}

.flatpickr-current-month {
	font-size: 110% !important;
}

.flatpickr-day {
	height: 32px !important;
	line-height: 32px !important;
}

/* --- Booking Summary Bar (Lightbox & Info Popup) --- */
.bep-booking-summary-bar {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: 50px;
	/* Pill shape */
	padding: 10px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	gap: 30px;
	color: #1a365d;
	font-family: 'Open Sans', sans-serif;
	transition: transform 0.2s;
	pointer-events: auto;
	/* Ensure clickable */
	white-space: nowrap;
}

.bep-booking-summary-bar:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.bep-bs-group {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.bep-bs-label {
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	color: #718096;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.bep-bs-value {
	font-size: 14px;
	font-weight: 700;
	color: var(--bep-primary);
	white-space: nowrap;
}

.bep-bs-divider {
	width: 1px;
	height: 30px;
	background: #e2e8f0;
}

.bep-bs-action {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	color: var(--bep-primary);
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	transition: color 0.2s;
}

.bep-bs-action:hover {
	color: var(--bep-accent);
}

.bep-bs-back {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	color: #718096;
	font-weight: 700;
	font-size: 12px;
	text-transform: uppercase;
	margin-left: 10px;
	border-left: 1px solid #e2e8f0;
	padding-left: 20px;
}

.bep-bs-back:hover {
	color: #333;
}

/* Specific positioning for Lightbox vs Info Popup */
.bep-lightbox .bep-booking-summary-bar {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 120;
}

.bep-info-popup .bep-booking-summary-bar {
	width: fit-content;
	margin: 30px auto 0 auto;
	/* Center in popup */
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	box-shadow: none;
}

/* =========================================
   SHORTCODE VERSIONS (V1, V2, V3)
   ========================================= */

/* --- V1: MINIMAL --- */
.bep-v-minimal {
	background: #fff !important;
	border: 1px solid #ddd !important;
	padding: 10px 15px !important;
	border-radius: 8px !important;
	display: flex !important;
	align-items: center !important;
	gap: 15px !important;
	width: fit-content !important;
	margin: 0 auto !important;
	box-shadow: none !important;
}

.bep-v-minimal .bep-v2-group {
	padding: 0 !important;
}

.bep-v-minimal .bep-v2-label {
	font-size: 10px !important;
	color: #999 !important;
}

.bep-v-minimal .bep-v2-day-big {
	font-size: 20px !important;
	font-weight: 700 !important;
}

.bep-v-minimal .bep-v2-month-tiny {
	font-size: 10px !important;
	color: #666 !important;
}

.bep-v-minimal .bep-v2-btn-creative {
	background: #333 !important;
	padding: 10px 20px !important;
	font-size: 11px !important;
}

/* --- V2: CREATIVE (Eco/Organic) --- */
.bep-v-creative {
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%) !important;
	border: 2px solid var(--bep-primary) !important;
	padding: 15px 25px !important;
	border-radius: 50px !important;
	display: flex !important;
	align-items: center !important;
	gap: 20px !important;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
}

.bep-v-creative .bep-v2-label {
	color: var(--bep-primary) !important;
	opacity: 0.7;
}

.bep-v-creative .bep-v2-day-big {
	color: var(--bep-primary) !important;
	font-size: 32px !important;
}

.bep-v-creative .bep-v2-btn-creative {
	background: var(--bep-primary) !important;
	border-radius: 30px !important;
	font-weight: 800 !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.bep-v-creative .bep-v2-btn-creative:hover {
	transform: scale(1.05) !important;
	background: var(--bep-primary-light) !important;
}

/* --- V3: FUN (Pop/Playful) --- */
.bep-v-fun {
	background: var(--bep-primary) !important;
	padding: 20px !important;
	border-radius: 20px !important;
	display: flex !important;
	align-items: center !important;
	gap: 15px !important;
	border: 4px solid var(--bep-accent) !important;
	box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.2) !important;
	color: #fff !important;
	transform: rotate(-1deg) !important;
}

.bep-v-fun:hover {
	transform: rotate(0deg) scale(1.02) !important;
}

.bep-v-fun .bep-v2-label {
	color: #fff !important;
	opacity: 0.8;
}

.bep-v-fun .bep-v2-day-big {
	color: #fff !important;
	text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2) !important;
}

.bep-v-fun .bep-v2-month-tiny {
	color: var(--bep-accent) !important;
}

.bep-v-fun .bep-v2-divider {
	background: rgba(255, 255, 255, 0.2) !important;
}

.bep-v-fun .bep-v2-btn-creative {
	background: var(--bep-accent) !important;
	border: 2px solid #fff !important;
	border-radius: 12px !important;
	font-weight: 900 !important;
	font-size: 16px !important;
	box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2) !important;
	animation: simple-bounce 2s infinite !important;
}

@keyframes simple-bounce {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

.bep-v-fun .bep-v2-btn-creative:hover {
	background: var(--bep-accent) !important;
	filter: brightness(1.1);
	transform: translateY(2px) !important;
	box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.1) !important;
}

.bep-v-fun select {
	background: #fff !important;
	color: #6b46c1 !important;
	border: none !important;
}

/* Reset for Sidebar in results page */
#bep-search-form-sidebar {
	background: #fff !important;
	transform: none !important;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
	border: 1px solid #e0e6ed !important;
}

/* --- V4: ANIMATED (Menu Toggle focus) --- */
.bep-v-animated {
	background: var(--bep-primary) !important;
	border-radius: 50% !important;
	padding: 0 !important;
	width: 65px !important;
	height: 65px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
	overflow: hidden !important;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2) !important;
	border: 2px solid #fff !important;
	margin: 0 auto !important;
	position: relative !important;
	animation: bep-animated-pulse 2s infinite;
}

@keyframes bep-animated-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.6);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(26, 54, 93, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(26, 54, 93, 0);
	}
}


.bep-animated-toggle-icon {
	color: #fff !important;
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	transition: all 0.3s;
	pointer-events: none;
}

.bep-animated-toggle-icon .dashicons {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	width: 40px !important;
	height: 40px !important;
	font-size: 40px !important;
	line-height: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	color: #fff !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transform: translate(-50%, -50%) !important;
	animation: bep-icon-float-centered 2.5s ease-in-out infinite !important;
}

@keyframes bep-icon-float-centered {

	0%,
	100% {
		transform: translate(-50%, -50%);
	}

	50% {
		transform: translate(-50%, -65%);
	}
}

@keyframes bep-icon-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

.bep-v-animated .bep-v2-group,
.bep-v-animated .bep-v2-divider,
.bep-v-animated .bep-v2-action-stack,
.bep-v-animated .bep-v2-btn-creative {
	width: 0;
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
	transition: opacity 0.3s, width 0s 0.3s;
}

.bep-animated-close {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
	height: 22px;
	background: #eee;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: #999;
	cursor: pointer;
	z-index: 10;
}

.bep-animated-close:hover {
	background: #e53e3e;
	color: #fff;
}

/* Expands when clicked */
.bep-v-animated.is-expanded {
	width: 480px !important;
	height: 75px !important;
	border-radius: 12px !important;
	flex-direction: row !important;
	padding: 0 40px 0 10px !important;
	cursor: default !important;
	justify-content: space-between !important;
	background: #fff !important;
	animation: none !important;
	border: 1px solid var(--bep-primary) !important;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.bep-v-animated.is-expanded .bep-animated-toggle-icon {
	display: none;
}

.bep-v-animated.is-expanded .bep-animated-close {
	display: flex;
}

.bep-v-animated.is-expanded .bep-v2-group,
.bep-v-animated.is-expanded .bep-v2-divider,
.bep-v-animated.is-expanded .bep-v2-action-stack,
.bep-v-animated.is-expanded .bep-v2-btn-creative {
	width: auto;
	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.4s 0.2s;
}

.bep-v-animated .bep-v2-day-big {
	font-size: 30px !important;
}

/* --- V5: FLOATING LUXURY --- */
.bep-v-floating {
	background: var(--bep-primary) !important;
	color: #fff !important;
	padding: 10px 10px 10px 20px !important;
	border-radius: 100px !important;
	display: flex !important;
	align-items: center !important;
	gap: 0px !important;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
	width: fit-content !important;
	margin: 0 auto !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bep-v-floating .bep-v2-label {
	color: rgba(255, 255, 255, 0.6) !important;
}

.bep-v-floating .bep-v2-day-big {
	color: #fff !important;
}

.bep-v-floating .bep-v2-month-tiny {
	color: var(--bep-accent) !important;
}

.bep-v-floating .bep-v2-btn-creative {
	background: #fff !important;
	color: var(--bep-primary) !important;
	border-radius: 50px !important;
	padding: 12px 25px !important;
	font-weight: 800 !important;
}

.bep-v-floating .bep-v2-divider {
	background: rgba(255, 255, 255, 0.1) !important;
}

.bep-v-floating .bep-v2-select-compact {
	background: rgba(255, 255, 255, 0.1) !important;
	border: none !important;
	color: #fff !important;
}

/* ==========================================================================
   FIX: Blue Focus Outline / Tap Highlight (Chromium/Android)
   ========================================================================== */
#bep-booking-engine .bep-btn-select-new,
#bep-booking-engine .bep-btn-select-new:focus,
#bep-booking-engine .bep-btn-select-new:active,
#bep-booking-engine .bep-btn-select-new:focus-visible,
#bep-booking-engine button:focus,
#bep-booking-engine button:active,
#bep-booking-engine button:focus-visible {
	outline: none !important;
	outline-width: 0 !important;
	box-shadow: none !important;
	-webkit-tap-highlight-color: transparent !important;
	-webkit-appearance: none;
	appearance: none;
	background-image: none !important;
}

/* Prevents the browser from showing the focus ring even if it thinks it's necessary */
#bep-booking-engine *:focus:not(:focus-visible),
#bep-booking-engine *:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

/* ==========================================================================
   REFACTORING UTILITIES (Status & Offers)
   ========================================================================== */
:root {
	--bep-status-red: #dc2626;
	--bep-status-gray: #9ca3af;
	--bep-font-bold: 700;
	--bep-font-heavy: 800;
}

.bep-status-offer {
	color: var(--bep-status-red) !important;
	font-weight: var(--bep-font-heavy) !important;
}

.bep-status-unavailable {
	color: var(--bep-status-gray) !important;
	font-size: 10px;
	font-weight: 600;
}

.bep-status-crossed {
	color: var(--bep-status-gray) !important;
	text-decoration: line-through !important;
	font-size: 0.85em;
}

.bep-status-badge {
	background: var(--bep-status-red) !important;
	color: #fff !important;
	font-size: 9px;
	font-weight: 700;
	border-radius: 3px;
	padding: 1px 5px;
	display: inline-block;
}

/* ==========================================================================
   GLOBAL STICKY BOOKING BAR
   ========================================================================== */
#bep-sticky-bar {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: var(--bep-glass-bg);
	backdrop-filter: blur(var(--bep-glass-blur));
	-webkit-backdrop-filter: blur(var(--bep-glass-blur));
	box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
	padding: 12px 0;
	transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
	font-family: 'Outfit', sans-serif;
	visibility: hidden;
	/* Prevent flash */
}

#bep-sticky-bar.bep-sticky-bar-top {
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transform: translateY(-110%);
}

#bep-sticky-bar.bep-sticky-bar-bottom {
	bottom: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	transform: translateY(110%);
}

#bep-sticky-bar.is-visible {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.bep-sticky-bar-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Desktop Wrapper */
.bep-sticky-desktop-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.bep-sticky-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--bep-primary);
	flex-shrink: 0;
}

.bep-sticky-logo .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: var(--bep-accent);
}

.bep-sticky-title {
	font-weight: 800;
	text-transform: uppercase;
	font-size: 15px;
	letter-spacing: 0.5px;
	color: var(--bep-primary);
}

.bep-sticky-search-form-wrap {
	flex: 1;
	max-width: 800px;
}

.bep-sticky-search-form-wrap .bep-search-form {
	margin: 0;
}

.bep-sticky-fields {
	display: flex;
	align-items: center;
	background: #fff;
	border-radius: 50px;
	padding: 4px 4px 4px 25px;
	box-shadow: var(--bep-shadow-sm);
	border: 1px solid var(--bep-border);
}

.bep-sticky-field {
	display: flex;
	flex-direction: column;
	cursor: pointer;
	min-width: 90px;
	flex: 1;
}

.bep-sticky-field label {
	font-size: 9px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--bep-text-gray);
	margin: 0 !important;
	line-height: 1;
}

.bep-sticky-val {
	font-size: 14px;
	font-weight: 800;
	color: var(--bep-text-dark);
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.bep-sticky-val span {
	display: inline-block;
}

.bep-sticky-divider {
	width: 1px;
	height: 25px;
	background: var(--bep-border);
	margin: 0 15px;
}

.bep-sticky-select {
	border: none !important;
	background: transparent !important;
	font-weight: 800;
	font-size: 14px;
	color: var(--bep-text-dark);
	padding: 0 !important;
	cursor: pointer;
	outline: none !important;
	box-shadow: none !important;
	height: auto !important;
	line-height: 1.2 !important;
}

.bep-sticky-submit {
	background: var(--bep-primary);
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 10px 30px;
	font-weight: 800;
	font-size: 13px;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	margin-left: 10px;
	letter-spacing: 1px;
}

.bep-sticky-submit:hover {
	background: var(--bep-accent);
	transform: scale(1.05);
	box-shadow: 0 4px 15px rgba(198, 163, 0, 0.3);
}

/* Mobile Wrapper */
.bep-sticky-mobile-wrapper {
	display: none;
}

@media (max-width: 991px) {
	.bep-sticky-desktop-wrapper {
		display: none;
	}

	.bep-sticky-mobile-wrapper {
		display: block;
	}

	#bep-sticky-bar {
		padding: 10px 0;
	}
}

.bep-mobile-book-btn {
	width: 100%;
	background: var(--bep-primary);
	color: #fff;
	border: none !important;
	border-radius: 12px;
	padding: 14px;
	font-weight: 800;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.bep-mobile-full-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	border-radius: 50px;
	padding: 4px 4px 4px 20px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
	border: 1px solid var(--bep-border);
}

.bep-mobile-summary {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 800;
	color: var(--bep-text-dark);
}

.bep-mobile-summary .dashicons {
	color: var(--bep-accent);
}

.bep-mobile-go-btn {
	background: var(--bep-primary);
	color: #fff;
	border: none;
	border-radius: 50px;
	padding: 10px 20px;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Drawer Styles */
.bep-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100001;
	display: none;
	overflow: hidden;
}

.bep-drawer.active {
	display: block;
}

.bep-drawer-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(10, 15, 30, 0.4);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.bep-drawer.active .bep-drawer-overlay {
	opacity: 1;
}

.bep-drawer-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #fff;
	border-top-left-radius: 24px;
	border-top-right-radius: 24px;
	padding: 30px 25px 40px;
	transform: translateY(100%);
	transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
}

.bep-drawer.active .bep-drawer-content {
	transform: translateY(0);
}

.bep-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
}

.bep-drawer-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	color: var(--bep-primary);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.bep-drawer-header .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
	color: var(--bep-text-gray);
	cursor: pointer;
	transition: color 0.3s;
}

.bep-drawer-header .dashicons:hover {
	color: var(--bep-primary);
}

.bep-drawer-field {
	margin-bottom: 25px;
}

.bep-drawer-field label {
	display: block;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--bep-text-gray);
	margin-bottom: 10px !important;
	letter-spacing: 0.5px;
}

.bep-drawer-date-display {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f8fafc;
	padding: 20px;
	border-radius: 16px;
	border: 1px solid var(--bep-border);
	cursor: pointer;
}

.bep-drawer-date-box {
	display: flex;
	flex-direction: column;
}

.bep-drawer-date-box .v2-in-day-label,
.bep-drawer-date-box .v2-out-day-label {
	font-size: 28px;
	font-weight: 800;
	color: var(--bep-primary);
	line-height: 1;
}

.bep-drawer-date-box .v2-in-month-label,
.bep-drawer-date-box .v2-out-month-label {
	font-size: 12px;
	font-weight: 700;
	color: var(--bep-text-gray);
	text-transform: uppercase;
}

.bep-drawer-date-display .dashicons {
	color: var(--bep-accent);
	font-size: 20px;
}

.bep-drawer-select {
	width: 100%;
	padding: 15px;
	border-radius: 12px;
	border: 1px solid var(--bep-border);
	font-weight: 800;
	font-size: 16px;
	color: var(--bep-text-dark);
	background-color: #f8fafc;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' 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 15px center;
	background-size: 18px;
}

.bep-drawer-submit {
	width: 100%;
	background: var(--bep-primary);
	color: #fff;
	border: none;
	border-radius: 14px;
	padding: 18px;
	font-weight: 800;
	font-size: 16px;
	text-transform: uppercase;
	margin-top: 10px;
	letter-spacing: 1px;
	box-shadow: 0 6px 20px rgba(26, 54, 93, 0.3);
	cursor: pointer;
}

/* Conflict prevention */
body.bep-sticky-active-top {
	padding-top: 80px !important;
}

body.bep-sticky-active-bottom {
	padding-bottom: 80px !important;
}

@media (max-width: 768px) {
	body.bep-sticky-active-top {
		padding-top: 70px !important;
	}

	body.bep-sticky-active-bottom {
		padding-bottom: 70px !important;
	}
}

/* =========================================
   GLOBAL STICKY BOOKING BAR
   ========================================= */
.bep-sticky-bar {
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 999999;
	background: transparent;
	box-shadow: none;
	border: none;
	padding: 10px 0;
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s ease;
	opacity: 0;
	pointer-events: none;
}

.bep-sticky-bar.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) !important;
}

@media (max-width: 768px) {
	.bep-sticky-bar {
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}
}

.bep-sticky-bar.bep-sticky-top {
	top: 0;
	transform: translateY(-100%);
}

.bep-sticky-bar.bep-sticky-bottom {
	bottom: 0;
	transform: translateY(100%);
}

.bep-sticky-bar-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.bep-sticky-bar-form-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
}

.bep-sticky-bar-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--bep-primary);
	font-weight: 700;
	white-space: nowrap;
}

.bep-sticky-bar-brand .dashicons {
	font-size: 20px;
	width: 20px;
	height: 20px;
}

.bep-sticky-bar-form-wrapper {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

/* Sticky version of search bar */
.bep-sticky-bar .bep-search-container-v2 {
	margin: 0;
	box-shadow: none !important;
	background: transparent !important;
	border: none !important;
	padding: 0 !important;
}

.bep-sticky-bar .bep-v2-day-big {
	font-size: 28px;
}

.bep-sticky-bar .bep-v2-nights-val {
	font-size: 24px;
}

.bep-sticky-bar-mobile-trigger {
	display: none;
}

/* --- Mobile Drawer --- */
.bep-mobile-drawer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80vh;
	background: #fff;
	z-index: 10000;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex;
	flex-direction: column;
}

.bep-mobile-drawer.is-open {
	transform: translateY(0);
}

.bep-drawer-header {
	padding: 20px;
	border-bottom: 1px solid #edf2f7;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bep-drawer-header h3 {
	margin: 0;
	font-size: 18px;
	color: var(--bep-primary);
}

.bep-close-drawer {
	background: none;
	border: none;
	font-size: 28px;
	color: #a0aec0;
	cursor: pointer;
}

.bep-drawer-body {
	padding: 20px;
	overflow-y: auto;
	flex: 1;
}

/* --- Mobile Responsive --- */
@media (max-width: 1024px) {
	.bep-sticky-bar-brand {
		display: none;
	}
}

@media (max-width: 768px) {

	/* Force Visibility and correct transform for mobile */
	.bep-sticky-bar.bep-mobile-compact {
		background: transparent !important;
		backdrop-filter: none !important;
		box-shadow: none !important;
		border: none !important;
		pointer-events: none !important;
		opacity: 1 !important;
		display: block !important;
	}

	/* Override transforms for mobile to ensure visibility regardless of state */
	.bep-sticky-bar.bep-mobile-compact.bep-sticky-top,
	.bep-sticky-bar.bep-mobile-compact.bep-sticky-bottom {
		transform: translateY(0) !important;
	}

	.bep-sticky-bar.bep-mobile-compact .bep-sticky-bar-form-wrapper {
		display: none;
	}

	.bep-sticky-bar.bep-mobile-compact .bep-sticky-bar-mobile-trigger {
		display: block;
		pointer-events: auto;
		margin: 0 auto;
	}

	.bep-mobile-book-btn {
		background: var(--bep-primary);
		color: #fff;
		border: none;
		width: 220px !important;
		height: 50px !important;
		padding: 0 20px !important;
		border-radius: 25px !important;
		font-weight: 800;
		display: flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
		text-transform: uppercase;
		font-size: 14px;
		letter-spacing: 1px;
		transition: none !important;
		overflow: hidden;
		white-space: nowrap;
		animation: none !important;
	}

	.bep-mobile-book-btn .bep-btn-text {
		max-width: none !important;
		opacity: 1 !important;
		display: inline-block;
		margin-left: 10px;
	}

	.bep-mobile-book-btn .dashicons {
		font-size: 20px;
		width: 20px;
		height: 20px;
	}

	.bep-sticky-bar.bep-sticky-bottom.bep-mobile-compact {
		bottom: 25px !important;
		top: auto !important;
	}

	.bep-sticky-bar.bep-sticky-top.bep-mobile-compact {
		top: 80px !important;
		/* Start below the sticky search header */
		bottom: auto !important;
		z-index: 999998;
		/* Just below search header */
	}
}

/* New Desktop Visibility & Width Modes */
@media (min-width: 1025px) {
	.bep-sticky-bar.bep-desktop-always {
		opacity: 1 !important;
		pointer-events: auto !important;
		transform: translateY(0) !important;
	}

	.bep-sticky-bar.bep-width-contained {
		max-width: 1200px;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 50px;
		margin: 20px 0;
		width: calc(100% - 40px);
	}

	.bep-sticky-bar.bep-width-contained.bep-sticky-top {
		top: 10px;
	}

	.bep-sticky-bar.bep-width-contained.bep-sticky-bottom {
		bottom: 10px;
	}

	.bep-sticky-bar.bep-width-contained.bep-sticky-top:not(.is-visible):not(.bep-desktop-always) {
		transform: translate(-50%, -120%) !important;
	}

	.bep-sticky-bar.bep-width-contained.bep-sticky-bottom:not(.is-visible):not(.bep-desktop-always) {
		transform: translate(-50%, 120%) !important;
	}

	.bep-sticky-bar.bep-width-contained.is-visible,
	.bep-sticky-bar.bep-width-contained.bep-desktop-always {
		transform: translate(-50%, 0) !important;
	}
}

/* --- V1: ECO / NATURE (Creative) --- */
.bep-v-creative {
	background: #f0f4f0 !important;
	border: 2px solid #2d5a27 !important;
	border-radius: 30px 5px 30px 5px !important;
	padding: 10px 20px !important;
	box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1) !important;
}

.bep-v-creative .bep-v2-day-big {
	color: #2d5a27 !important;
	font-family: 'serif' !important;
}

.bep-v-creative .bep-v2-month-tiny {
	color: #556b2f !important;
}

.bep-v-creative .bep-v2-btn-creative {
	background: #2d5a27 !important;
	border-radius: 20px !important;
}

.bep-v-creative .bep-v2-divider {
	background: #c1d7c1 !important;
}

/* --- V2: POP / PLAY (Fun) --- */
.bep-v-fun {
	background: #fffbe6 !important;
	border: 3px solid #ffcc00 !important;
	border-radius: 20px !important;
	padding: 10px 20px !important;
	box-shadow: 8px 8px 0px #ffcc00 !important;
	transform: rotate(-1deg);
	transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.bep-v-fun:hover {
	transform: rotate(0deg) scale(1.02);
	box-shadow: 12px 12px 0px #ffcc00 !important;
}

.bep-v-fun .bep-v2-day-big {
	color: #ff4500 !important;
	font-family: 'Outfit', sans-serif !important;
}

.bep-v-fun .bep-v2-btn-creative {
	background: #ff4500 !important;
	border-radius: 50px !important;
	box-shadow: 0 4px 0px #b33000 !important;
}

.bep-v-fun .bep-v2-btn-creative:active {
	transform: translateY(2px);
	box-shadow: 0 2px 0px #b33000 !important;
}

/* --- V7: MILTON LIGHT (Elegant Minimal) --- */
.bep-v-v7 {
	background: rgba(255, 255, 255, 0.95) !important;
	backdrop-filter: blur(10px);
	border: 1px solid #e2e8f0 !important;
	border-radius: 0;
	padding: 15px 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	color: #1a365d !important;
	font-family: 'Montserrat', sans-serif;
	width: 100%;
	max-width: 720px;
	margin: 0 auto;
}

.bep-search-container-v2 {
	border-radius: 0;
	padding: 8px 10px;
	width: 100%;
	flex-direction: row;
	overflow-x: auto;
	justify-content: flex-start;
	-webkit-overflow-scrolling: touch;
	gap: 5px;
}

.bep-mobile-calendar-icon {
	display: flex !important;
	flex-shrink: 0;
}

.bep-v-v7 .bep-v6-group {
	border-bottom: 2px solid #1a365d;
}

.bep-v-v7 .bep-v6-day-num {
	color: #1a365d;
	font-family: 'Playfair Display', serif;
}

.bep-v-v7 .bep-v6-meta-main {
	color: #1a365d;
}

.bep-v-v7 .bep-v6-btn-submit {
	background: #1a365d;
	color: #FFFFFF;
}

.bep-v-v7 .bep-v6-people-box {
	border-bottom: 2px solid #1a365d;
}

.bep-v-v7 .bep-v6-people-sub {
	color: rgba(26, 54, 93, 0.7);
}

/* =========================================
   GEMINI COUNTDOWN — Etichetta sull'immagine
   ========================================= */

.bep-gemini-img-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(192, 57, 43, 0.7), rgba(231, 76, 60, 0.7));
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	color: #fff;
	border-radius: 10px;
	padding: 6px 14px 8px;
	min-width: 90px;
	box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
	line-height: 1.1;
	position: relative;
	overflow: hidden;
	animation: bep-random-move 12s ease-in-out infinite, bep-glow-pulse 2s infinite;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.bep-gemini-top-row {
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.5px;
	text-transform: uppercase;
	margin-bottom: 2px;
	white-space: nowrap;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.bep-gemini-timer-row {
	font-size: 13px;
	font-weight: 700;
	font-family: 'Courier New', Courier, monospace;
	letter-spacing: 0.5px;
	opacity: 0.95;
}

/* Outer ring pulse effect */
.bep-gemini-img-badge::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 12px;
	border: 2px solid #fff;
	opacity: 0;
	animation: bep-ring-pulse 2s infinite;
}

/* Sharp shimmering light */
.bep-gemini-img-badge::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 50%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	transform: skewX(-25deg);
	animation: bep-shimmer-fast 3s infinite;
}

/* Animations */
@keyframes bep-random-move {
	0% {
		transform: translate(0, 0) rotate(0deg);
	}

	20% {
		transform: translate(3px, -5px) rotate(1deg);
	}

	40% {
		transform: translate(-2px, -8px) rotate(-1deg);
	}

	60% {
		transform: translate(4px, -4px) rotate(0.5deg);
	}

	80% {
		transform: translate(-3px, -6px) rotate(-0.5deg);
	}

	100% {
		transform: translate(0, 0) rotate(0deg);
	}
}

@keyframes bep-float {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-5px);
	}
}

@keyframes bep-glow-pulse {

	0%,
	100% {
		box-shadow: 0 4px 15px rgba(192, 57, 43, 0.4);
	}

	50% {
		box-shadow: 0 4px 25px rgba(231, 76, 60, 0.8);
	}
}

@keyframes bep-ring-pulse {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	100% {
		transform: scale(1.4);
		opacity: 0;
	}
}

@keyframes bep-shimmer-fast {
	0% {
		left: -150%;
	}

	20% {
		left: 150%;
	}

	100% {
		left: 150%;
	}
}

/* --- Deals Widget Shortcode --- */
.bep-deals-widget-container {
	margin: 40px auto;
	max-width: 800px;
	perspective: 1000px;
	font-family: 'Outfit', sans-serif;
}

.bep-deal-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	display: flex;
	min-height: 350px;
	transition: transform 0.5s ease;
}

.bep-deal-card:hover {
	transform: translateY(-5px);
}

.bep-deal-image {
	flex: 1;
	background-size: cover;
	background-position: center;
	position: relative;
}

.bep-deal-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1));
}

.bep-deal-content {
	flex: 1;
	padding: 40px;
	background: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	z-index: 2;
}

.bep-deal-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff3cd;
	color: #856404;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	margin-bottom: 20px;
	width: fit-content;
}

.bep-deal-badge i {
	color: #c6a300;
	animation: flash 1s infinite;
}

@keyframes flash {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

.bep-deal-title {
	font-size: 28px;
	font-weight: 800;
	color: #1a365d;
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.bep-deal-discount {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 25px;
}

.bep-deal-label {
	font-size: 16px;
	color: #64748b;
	font-weight: 600;
}

.bep-deal-value {
	font-size: 48px;
	font-weight: 900;
	background: linear-gradient(135deg, #c6a300, #ffd700);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.bep-deal-timer {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
}

.bep-timer-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f8fafc;
	padding: 10px;
	border-radius: 10px;
	min-width: 55px;
	border: 1px solid #e2e8f0;
}

.bep-timer-val {
	font-size: 20px;
	font-weight: 800;
	color: #1a365d;
}

.bep-timer-label {
	font-size: 10px;
	text-transform: uppercase;
	color: #94a3b8;
	font-weight: 700;
}

.bep-deal-btn {
	background: #1a365d;
	color: #fff !important;
	text-decoration: none !important;
	padding: 18px 25px;
	border-radius: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 20px rgba(26, 54, 93, 0.2);
}

.bep-deal-btn:hover {
	background: #c6a300;
	transform: scale(1.02);
	box-shadow: 0 15px 30px rgba(198, 163, 0, 0.3);
}

@media (max-width: 768px) {
	.bep-deal-card {
		flex-direction: column;
	}

	.bep-deal-overlay {
		background: linear-gradient(0deg, #fff, transparent);
	}

	.bep-deal-image {
		height: 200px;
	}

	.bep-deal-content {
		padding: 30px;
	}

	.bep-deal-title {
		font-size: 22px;
	}
}