/*
Theme Name: Aucapina-Child
Theme URI: https://parkofideas.com/aucapina/
Text Domain: aucapina-child
Description: Auto Camping WordPress Theme
License: GNU General Public License v2.0 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Version: 1.1
Template: aucapina
Author: templines
Author URI: https://templines.com/aucapina-documentation/
Tags: right-sidebar, custom-background, custom-colors, featured-images, full-width-template, post-formats, theme-options, translation-ready
*/


/* =Theme customization starts here
-------------------------------------------------------------- */

/* Hero Section Layout */
.c-reservation-hero {
	margin-bottom: 40px;
}

.c-reservation-hero__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 40px;
	margin-top: 30px;
}

.c-reservation-hero__image {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 60%;
	flex: 1 1 60%;
	min-width: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}

.c-reservation-hero__image img {
	margin: 0;
	padding: 0;
	display: block;
}

.c-reservation-hero__sidebar {
	-webkit-box-flex: 1;
	-ms-flex: 1 1 40%;
	flex: 1 1 40%;
	min-width: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-self: stretch;
}

.c-reservation-features {
	margin: 0;
	padding: 0;
	flex-grow: 0;
	line-height: 1.2;
}

.c-reservation-features p {
	margin: 10px 0;
	text-align: left;
	line-height: 1.4;
}

.c-reservation-features p:first-child {
	margin-top: 0;
	padding-top: 0;
	line-height: 1.4;
}

.c-reservation-actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 15px;
	margin-top: auto;
	flex-shrink: 0;
}

.c-reservation-actions .c-button {
	width: 100%;
	text-align: center;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 !important;
	background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
	color: #fff;
	border: none;
	padding: 14px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
	transition: all 0.3s ease;
	text-decoration: none;
}

.c-reservation-actions .c-button:hover {
	background: linear-gradient(135deg, #558B2F 0%, #33691E 100%);
	box-shadow: 0 6px 16px rgba(124, 179, 66, 0.4);
	transform: translateY(-2px);
	color: #fff;
}

.c-reservation-actions .c-button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(124, 179, 66, 0.3);
}

.c-reservation-actions .c-button--outline-black {
	background: linear-gradient(135deg, #FFC107 0%, #FFA000 100%);
	border: none;
	color: #fff;
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.c-reservation-actions .c-button--outline-black:hover {
	background: linear-gradient(135deg, #FFA000 0%, #FF8F00 100%);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 6px 16px rgba(255, 193, 7, 0.4);
	transform: translateY(-2px);
}

.c-reservation-actions .c-button--outline-black:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
	.c-reservation-hero__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
	}
	
	.c-reservation-hero__image,
	.c-reservation-hero__sidebar {
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		width: 100%;
	}
	
	.c-reservation-features p {
		text-align: center;
	}
	
	.c-reservation-actions {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}
}

/* Reservation Form Styles */
.c-reservation-form {
	max-width: 800px;
	margin: 0 auto;
	padding: 50px 40px;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.c-reservation-form__title {
	font-size: 32px;
	margin-bottom: 30px;
	color: #333;
}

.c-reservation-form__message {
	padding: 15px 20px;
	margin-bottom: 30px;
	border-radius: 4px;
}

.c-reservation-form__message--success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.c-reservation-form__message--error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

/* Success Modal Popup */
.c-reservation-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999999 !important;
	overflow-y: auto;
	pointer-events: auto;
}

.c-reservation-modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 9999999 !important;
	pointer-events: auto;
}

.c-reservation-modal__content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #ffffff;
	border-radius: 16px;
	padding: 50px 40px 40px;
	max-width: 520px;
	width: calc(100% - 40px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 0, 0, 0.05);
	text-align: center;
	animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 10000000 !important;
	max-height: 90vh;
	overflow-y: auto;
	pointer-events: auto;
}

@keyframes modalFadeIn {
	from {
		opacity: 0;
		transform: translate(-50%, -48%);
	}
	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

.c-reservation-modal__close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 32px;
	color: #999;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	border-radius: 50%;
	z-index: 10;
}

.c-reservation-modal__close:hover {
	color: #333;
	background-color: #f5f5f5;
}

.c-reservation-modal__icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 25px;
	background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 52px;
	color: #fff;
	font-weight: bold;
	line-height: 1;
	box-shadow: 0 8px 20px rgba(124, 179, 66, 0.3);
	animation: iconBounce 0.6s ease-out 0.2s both;
}

@keyframes iconBounce {
	0% {
		transform: scale(0);
		opacity: 0;
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.c-reservation-modal__title {
	font-size: 32px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.c-reservation-modal__message {
	font-size: 17px;
	color: #555;
	line-height: 1.7;
	margin: 0 0 35px 0;
	padding: 0 10px;
}

.c-reservation-modal__button {
	background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
	color: #fff;
	border: none;
	padding: 14px 50px;
	font-size: 17px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(124, 179, 66, 0.3);
	min-width: 160px;
}

.c-reservation-modal__button:hover {
	background: linear-gradient(135deg, #558B2F 0%, #33691E 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(124, 179, 66, 0.4);
}

.c-reservation-modal__button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(124, 179, 66, 0.3);
}

/* Responsive adjustments */
@media (max-width: 600px) {
	.c-reservation-modal__content {
		padding: 40px 30px 35px;
		max-width: 90%;
	}
	
	.c-reservation-modal__icon {
		width: 75px;
		height: 75px;
		font-size: 44px;
		margin-bottom: 20px;
	}
	
	.c-reservation-modal__title {
		font-size: 26px;
		margin-bottom: 15px;
	}
	
	.c-reservation-modal__message {
		font-size: 16px;
		margin-bottom: 30px;
	}
	
	.c-reservation-modal__button {
		padding: 12px 40px;
		font-size: 16px;
		min-width: 140px;
	}
}

.c-reservation-form__form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.c-reservation-form__row {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.c-reservation-form__field {
	flex: 1;
	min-width: 250px;
}

.c-reservation-form__field--full {
	flex: 0 0 100%;
}

.c-reservation-form__field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
	font-size: 16px;
}

.c-reservation-form__field input[type="text"],
.c-reservation-form__field input[type="email"],
.c-reservation-form__field input[type="tel"],
.c-reservation-form__field input[type="date"],
.c-reservation-form__field select,
.c-reservation-form__field textarea {
	width: 100%;
	background-color: #ffffff;
	border: 2px solid #e0e0e0;
	transition: all 0.3s ease;
	padding: 14px 18px;
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.c-reservation-form__field input[type="text"]:focus,
.c-reservation-form__field input[type="email"]:focus,
.c-reservation-form__field input[type="tel"]:focus,
.c-reservation-form__field input[type="date"]:focus,
.c-reservation-form__field select:focus,
.c-reservation-form__field textarea:focus {
	border-color: #7CB342;
	box-shadow: 0 0 0 4px rgba(124, 179, 66, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
	outline: none;
	transform: translateY(-1px);
}

.c-reservation-form__field textarea {
	resize: vertical;
	min-height: 100px;
}

.c-reservation-form__date-error {
	display: block !important;
	color: #d32f2f !important;
	font-size: 14px;
	margin-top: 5px;
	font-weight: 500;
}

#start_date_error,
#end_date_error {
	color: #d32f2f !important;
	display: block !important;
}

.c-reservation-form__field-error {
	color: #d32f2f;
	font-size: 14px;
	display: block;
	margin-top: 5px;
	line-height: 1.4;
}

.c-reservation-form__field.error input[type="text"],
.c-reservation-form__field.error input[type="email"],
.c-reservation-form__field.error input[type="tel"],
.c-reservation-form__field.error input[type="date"],
.c-reservation-form__field.error select,
.c-reservation-form__field.error textarea {
	border-color: #d32f2f;
	background-color: #fff5f5;
}

.c-reservation-form__field.error input[type="text"]:focus,
.c-reservation-form__field.error input[type="email"]:focus,
.c-reservation-form__field.error input[type="tel"]:focus,
.c-reservation-form__field.error input[type="date"]:focus,
.c-reservation-form__field.error select:focus,
.c-reservation-form__field.error textarea:focus {
	border-color: #d32f2f;
	box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
	outline: none;
}

.c-reservation-form__availability {
	margin-top: 20px;
	padding: 15px;
	background-color: #f8f9fa;
	border-radius: 4px;
}

.c-reservation-form__availability-message {
	margin-bottom: 15px;
}

.c-reservation-form__availability-message .loading {
	color: #007cba;
}

.c-reservation-form__availability-message .success {
	color: #28a745;
	font-weight: 600;
}

.c-reservation-form__availability-message .warning {
	color: #ffc107;
	font-weight: 600;
}

.c-reservation-form__availability-message .error {
	color: #dc3545;
	font-weight: 600;
}

.c-reservation-form__actions {
	margin-top: 20px;
	text-align: center !important;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	width: 100% !important;
}

.c-reservation-form__actions .c-button,
.c-reservation-form__actions button,
#submit_btn {
	margin: 0 auto !important;
	display: inline-block !important;
	text-align: center !important;
	background: linear-gradient(135deg, #7CB342 0%, #558B2F 100%);
	color: #ffffff;
	font-size: 18px;
	font-weight: 600;
	padding: 16px 40px;
	border: none;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(124, 179, 66, 0.3);
	transition: all 0.3s ease;
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.c-reservation-form__actions .c-button:hover,
.c-reservation-form__actions button:hover,
#submit_btn:hover {
	background: linear-gradient(135deg, #558B2F 0%, #33691E 100%);
	box-shadow: 0 6px 20px rgba(124, 179, 66, 0.4);
	transform: translateY(-2px);
}

.c-reservation-form__actions .c-button:active,
.c-reservation-form__actions button:active,
#submit_btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(124, 179, 66, 0.3);
}

.c-reservation-form__actions .c-button:disabled,
.c-reservation-form__actions button:disabled,
#submit_btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.c-reservation-form__links {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 30px;
	flex-wrap: wrap;
}

/* Calendar Section */
.c-reservation-calendar {
	max-width: 1000px;
	margin: 40px auto;
	padding: 40px 20px;
}

/* Calendar table layout - universal centering */
.c-reservation-calendar {
	text-align: center !important;
	width: 100% !important;
}

.c-reservation-calendar__table {
	border-collapse: collapse !important;
	border-spacing: 0 !important;
	margin: 0 auto !important;
	width: 100% !important;
	max-width: 600px !important;
	table-layout: fixed !important;
}

.c-reservation-calendar__table tr {
	width: 100% !important;
}

.c-reservation-calendar__table td {
	text-align: center !important;
	vertical-align: middle !important;
	width: 100% !important;
	padding: 0 !important;
}

/* Only apply on reservation page */
body.page-template-page-reservation .c-vehicle-details__subheader {
	text-align: center !important;
	margin: 0 0 20px 0 !important;
	width: 100% !important;
}

/* Only apply these styles on reservation page - using unique class selectors as fallback */
body.page-template-page-reservation .c-vehicle-details__booking-calendar,
.js-reservation-calendar-ford-info .c-vehicle-details__booking-calendar,
.js-reservation-calendar-fiat-info .c-vehicle-details__booking-calendar {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	width: 100% !important;
	margin: 0 auto !important;
	position: relative !important;
}

body.page-template-page-reservation .c-vehicle-details__booking-calendar .daterangepicker,
.js-reservation-calendar-ford-info .c-vehicle-details__booking-calendar .daterangepicker,
.js-reservation-calendar-fiat-info .c-vehicle-details__booking-calendar .daterangepicker {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
	margin-left: auto !important;
	margin-right: auto !important;
	float: none !important;
	display: block !important;
	width: auto !important;
	max-width: 100% !important;
	min-width: 380px !important;
	overflow: visible !important;
}

body.page-template-page-reservation .c-vehicle-details__booked-wrap {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
	width: 100% !important;
	text-align: center !important;
	margin: 0 auto !important;
	padding: 0 !important;
}

body.page-template-page-reservation .c-vehicle-details__booked {
	text-align: center !important;
	margin: 0 auto !important;
	display: inline-block !important;
	width: auto !important;
}

.c-reservation-calendar__title {
	font-size: 32px;
	margin-bottom: 20px;
	color: #333;
}

.c-reservation-calendar__info {
	margin-bottom: 30px;
	text-align: center;
}

.c-reservation-calendar__info p {
	color: #666;
	font-size: 16px;
}

#calendar_container {
	min-height: 200px;
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 767px) {
	.c-reservation-form__row {
		flex-direction: column;
	}

	.c-reservation-form__field {
		min-width: 100%;
	}

	.c-reservation-form__links {
		flex-direction: column;
	}

	.c-reservation-form__links .c-button {
		width: 100%;
	}
}

/* Match theme button styles */
.c-reservation-form__actions .c-button,
.c-reservation-form__links .c-button {
	margin: 0;
}

/* Hero Section */
.c-reservation-hero h1 {
	font-size: 36px;
	margin-bottom: 20px;
}

.c-reservation-hero img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 20px 0;
}

/* Features List */
.c-reservation-features p {
	margin: 10px 0;
	font-size: 16px;
}

/* Action Buttons */
.c-reservation-actions {
	margin: 30px 0;
	text-align: center;
}

.c-reservation-actions .c-button {
	margin: 10px;
}

/* About Section */
.c-reservation-about {
	margin: 50px 0;
}

.c-reservation-about h2 {
	font-size: 28px;
	margin-bottom: 20px;
}

.c-reservation-about p {
	margin: 15px 0;
	line-height: 1.6;
}

/* Camper Details - ONLY on reservation page */
body.page-template-page-reservation .c-reservation-camper-details {
	margin: 50px 0;
	overflow: visible !important;
	width: 100% !important;
	max-width: 100% !important;
}

/* Ensure all calendar parent containers allow overflow - ONLY on reservation page */
body.page-template-page-reservation .c-reservation-camper-details > div,
body.page-template-page-reservation .c-reservation-camper-details > div > div {
	overflow: visible !important;
	max-width: 100% !important;
}

/* Ensure all page containers allow overflow for calendar - ONLY on reservation page */
body.page-template-page-reservation .l-section--container,
body.page-template-page-reservation .l-section__content,
body.page-template-page-reservation .c-post,
body.page-template-page-reservation .c-post__wrap,
body.page-template-page-reservation article,
body.page-template-page-reservation .l-section,
body.page-template-page-reservation,
html.page-template-page-reservation {
	overflow-x: visible !important;
	overflow: visible !important;
	max-width: 100% !important;
}

/* Ensure calendar container has enough padding - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info,
body.page-template-page-reservation .js-reservation-calendar-fiat-info,
.js-reservation-calendar-ford-info,
.js-reservation-calendar-fiat-info {
	padding: 40px 60px !important;
	margin: 0 auto !important;
	overflow: visible !important;
	overflow-x: visible !important;
	max-width: 100% !important;
	width: 100% !important;
	box-sizing: border-box !important;
}

/* Ensure simple-calendar parent containers allow full width - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .c-vehicle-details__booking-calendar,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .c-vehicle-details__booking-calendar,
.js-reservation-calendar-ford-info .c-vehicle-details__booking-calendar,
.js-reservation-calendar-fiat-info .c-vehicle-details__booking-calendar {
	overflow: visible !important;
	overflow-x: visible !important;
	max-width: 100% !important;
	width: 100% !important;
}

/* Only on reservation page */
body.page-template-page-reservation .c-reservation-camper-details p {
	margin: 15px 0;
	font-size: 18px;
}

body.page-template-page-reservation .c-reservation-camper-details ul {
	margin: 15px 0;
	padding-left: 30px;
}

body.page-template-page-reservation .c-reservation-camper-details li {
	margin: 8px 0;
	line-height: 1.6;
}

/* Gallery */
.c-camper-gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 20px 0;
}

.c-camper-gallery a {
	flex: 0 0 auto;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-camper-gallery a:hover {
	transform: scale(1.1);
	opacity: 0.8;
}

.c-camper-gallery img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
	border: 2px solid #ddd;
}

/* Pricing Table */
.c-reservation-pricing {
	margin: 50px 0;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.c-reservation-pricing table {
	margin: 20px auto;
	display: table !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.c-reservation-pricing p {
	margin-top: 20px;
	text-align: center;
	font-size: 14px;
	display: block !important;
	visibility: visible !important;
}

.c-reservation-pricing h3 {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Packages */
.c-reservation-packages {
	margin: 50px 0;
}

.c-reservation-packages h2 {
	font-size: 28px;
	margin-bottom: 20px;
}

.c-reservation-packages ul {
	margin: 20px 0;
	padding-left: 30px;
}

.c-reservation-packages li {
	margin: 10px 0;
	line-height: 1.6;
}

/* Calendar Navigation Arrows - Show only one calendar */
.c-reservation-calendar .daterangepicker .drp-calendar.right {
	display: none !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar.left {
	float: none !important;
	margin: 0 auto !important;
	display: block !important;
	padding: 8px !important;
}

/* Make calendar transparent or match background - no grey sides */
.c-reservation-calendar,
.c-reservation-calendar * {
	background-color: transparent !important;
	background: transparent !important;
}

/* Ensure calendar table and all its elements are white */
.c-reservation-calendar .calendar-table,
.c-reservation-calendar .calendar-table *,
.js-reservation-calendar-ford-info .calendar-table,
.js-reservation-calendar-ford-info .calendar-table *,
.js-reservation-calendar-fiat-info .calendar-table,
.js-reservation-calendar-fiat-info .calendar-table * {
	background-color: #ffffff !important;
	background: #ffffff !important;
}

/* Force remove any grey backgrounds from calendar wrapper elements */
.js-reservation-calendar-ford-info .daterangepicker > div:not(.calendar-table):not(.drp-calendar),
.js-reservation-calendar-fiat-info .daterangepicker > div:not(.calendar-table):not(.drp-calendar),
.js-reservation-calendar-ford-info .drp-calendar > div:not(.calendar-table),
.js-reservation-calendar-fiat-info .drp-calendar > div:not(.calendar-table),
.js-reservation-calendar-ford-info .daterangepicker,
.js-reservation-calendar-fiat-info .daterangepicker,
.js-reservation-calendar-ford-info .drp-calendar,
.js-reservation-calendar-fiat-info .drp-calendar {
	background-color: transparent !important;
	background: transparent !important;
}

/* Remove any grey backgrounds from all possible elements */
.js-reservation-calendar-ford-info .daterangepicker *:not(.calendar-table):not(.calendar-table *),
.js-reservation-calendar-fiat-info .daterangepicker *:not(.calendar-table):not(.calendar-table *) {
	background-color: transparent !important;
	background: transparent !important;
}

.c-reservation-calendar .daterangepicker {
	background-color: transparent !important;
	background: transparent !important;
}

.c-reservation-calendar .daterangepicker *,
.c-reservation-calendar .daterangepicker *::before,
.c-reservation-calendar .daterangepicker *::after {
	background-color: transparent !important;
	background: transparent !important;
}

/* Remove any grey backgrounds from calendar containers - ONLY on reservation page */
body.page-template-page-reservation .c-vehicle-details__booking-calendar,
body.page-template-page-reservation .js-reservation-calendar-ford-info,
body.page-template-page-reservation .js-reservation-calendar-fiat-info,
.js-reservation-calendar-ford-info,
.js-reservation-calendar-fiat-info {
	background-color: transparent !important;
	background: transparent !important;
	display: block !important;
	width: 100% !important;
	margin: 0 auto !important;
	text-align: center !important;
	overflow: visible !important;
	padding: 10px !important;
}

/* Ensure simple-calendar container has enough width - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar,
.js-reservation-calendar-ford-info .simple-calendar,
.js-reservation-calendar-fiat-info .simple-calendar {
	display: inline-block !important;
	width: auto !important;
	min-width: 500px !important;
	max-width: none !important;
	overflow: visible !important;
	overflow-x: visible !important;
	box-sizing: border-box !important;
}

/* Ensure simple-calendar table maintains table structure - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table,
.js-reservation-calendar-ford-info .simple-calendar-table,
.js-reservation-calendar-fiat-info .simple-calendar-table {
	display: table !important;
	table-layout: auto !important;
	width: 100% !important;
	min-width: 100% !important;
	border-collapse: collapse !important;
	overflow: visible !important;
	overflow-x: visible !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table tbody,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table tbody,
.js-reservation-calendar-ford-info .simple-calendar-table tbody,
.js-reservation-calendar-fiat-info .simple-calendar-table tbody {
	display: table-row-group !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table tr,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table tr,
.js-reservation-calendar-ford-info .simple-calendar-table tr,
.js-reservation-calendar-fiat-info .simple-calendar-table tr {
	display: table-row !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table td,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table td,
.js-reservation-calendar-ford-info .simple-calendar-table td,
.js-reservation-calendar-fiat-info .simple-calendar-table td {
	display: table-cell !important;
	white-space: nowrap !important;
	overflow: visible !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table th,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table th,
.js-reservation-calendar-ford-info .simple-calendar-table th,
.js-reservation-calendar-fiat-info .simple-calendar-table th {
	display: table-cell !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table thead,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table thead,
.js-reservation-calendar-ford-info .simple-calendar-table thead,
.js-reservation-calendar-fiat-info .simple-calendar-table thead {
	display: table-header-group !important;
}

/* Ensure calendar table maintains table structure - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .calendar-table,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .calendar-table,
.js-reservation-calendar-ford-info .calendar-table,
.js-reservation-calendar-fiat-info .calendar-table {
	display: table !important;
	table-layout: auto !important;
	width: 100% !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .calendar-table tbody,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .calendar-table tbody,
.js-reservation-calendar-ford-info .calendar-table tbody,
.js-reservation-calendar-fiat-info .calendar-table tbody {
	display: table-row-group !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .calendar-table tr,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .calendar-table tr,
.js-reservation-calendar-ford-info .calendar-table tr,
.js-reservation-calendar-fiat-info .calendar-table tr {
	display: table-row !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .calendar-table td,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .calendar-table td,
.js-reservation-calendar-ford-info .calendar-table td,
.js-reservation-calendar-fiat-info .calendar-table td {
	display: table-cell !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .calendar-table th,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .calendar-table th,
.js-reservation-calendar-ford-info .calendar-table th,
.js-reservation-calendar-fiat-info .calendar-table th {
	display: table-cell !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .calendar-table thead,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .calendar-table thead,
.js-reservation-calendar-ford-info .calendar-table thead,
.js-reservation-calendar-fiat-info .calendar-table thead {
	display: table-header-group !important;
}

/* Only on reservation page - exclude calendar table elements from background rules */
body.page-template-page-reservation .js-reservation-calendar-ford-info *:not(.calendar-table):not(.calendar-table *):not(.simple-calendar-table):not(.simple-calendar-table *),
body.page-template-page-reservation .js-reservation-calendar-fiat-info *:not(.calendar-table):not(.calendar-table *):not(.simple-calendar-table):not(.simple-calendar-table *) {
	background-color: transparent !important;
	background: transparent !important;
}

/* Hide theme's vehicle details lists on reservation page (but keep "Виж повече за кемпера" links) */
body.page-template-page-reservation .c-reservation-camper-details .c-vehicle-details__detail-list,
body.page-template-page-reservation .c-reservation-camper-details .c-vehicle-details__detail-list-wrap,
body.page-template-page-reservation .c-reservation-camper-details ul.c-vehicle-details__detail-list {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Keep "Виж повече за кемпера" links visible - they are in separate divs, not in detail lists */
body.page-template-page-reservation .c-reservation-camper-details a[href*="/catalog/"] {
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Hide theme's large checkmark icons on reservation page - use only small ✅ emoji */
body.page-template-page-reservation .c-reservation-camper-details ul li .c-vehicle-details__detail-icon-wrap,
body.page-template-page-reservation .c-reservation-camper-details ul li .c-detail__icon {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Remove any ::before or ::after pseudo-elements that might add icons, but keep text content */
body.page-template-page-reservation .c-reservation-camper-details ul li::before,
body.page-template-page-reservation .c-reservation-camper-details ul li::after {
	content: none !important;
	display: none !important;
}

/* Ensure list item text is visible */
body.page-template-page-reservation .c-reservation-camper-details ul li {
	display: list-item !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: inherit !important;
	line-height: 1.5 !important;
}

body.page-template-page-reservation .c-reservation-camper-details ul li * {
	display: inline !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Ensure emoji checkmarks are visible */
body.page-template-page-reservation .c-reservation-camper-details ul li::first-letter,
body.page-template-page-reservation .c-reservation-camper-details ul li {
	font-size: inherit !important;
	line-height: inherit !important;
}

/* Force text content to be visible - override any theme rules */
body.page-template-page-reservation .c-reservation-camper-details ul li {
	text-indent: 0 !important;
	text-overflow: clip !important;
	white-space: normal !important;
	overflow: visible !important;
}

/* Force center daterangepicker - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker,
.js-reservation-calendar-ford-info .daterangepicker,
.js-reservation-calendar-fiat-info .daterangepicker {
	left: auto !important;
	right: auto !important;
	margin-left: auto !important;
	margin-right: auto !important;
	float: none !important;
	position: relative !important;
	transform: none !important;
	display: block !important;
	overflow: visible !important;
	width: auto !important;
	min-width: 380px !important;
}

/* Ensure calendar table and arrows are visible - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar,
.js-reservation-calendar-ford-info .daterangepicker .drp-calendar,
.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar {
	overflow: visible !important;
	width: auto !important;
	min-width: 350px !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table,
.js-reservation-calendar-ford-info .daterangepicker .calendar-table,
.js-reservation-calendar-fiat-info .daterangepicker .calendar-table {
	width: 100% !important;
	min-width: 350px !important;
	overflow: visible !important;
	table-layout: auto !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table td,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table td,
.js-reservation-calendar-ford-info .daterangepicker .calendar-table td,
.js-reservation-calendar-fiat-info .daterangepicker .calendar-table td {
	width: auto !important;
	min-width: 40px !important;
	padding: 8px !important;
}

/* Ensure navigation arrows are visible - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next,
.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next,
.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next {
	display: table-cell !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: auto !important;
	min-width: 40px !important;
	text-align: center !important;
	padding: 8px !important;
	position: relative !important;
	z-index: 10 !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev,
.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev,
.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev {
	display: table-cell !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: auto !important;
	min-width: 40px !important;
	text-align: center !important;
	padding: 8px !important;
	position: relative !important;
	z-index: 10 !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev span,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev span,
.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev span,
.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev span {
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: 20px !important;
	height: 20px !important;
}

/* Ensure calendar table header has enough space - ONLY on reservation page */
body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table thead,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead,
.js-reservation-calendar-ford-info .daterangepicker .calendar-table thead,
.js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead {
	width: 100% !important;
	overflow: visible !important;
}

body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table thead tr,
body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead tr,
.js-reservation-calendar-ford-info .daterangepicker .calendar-table thead tr,
.js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead tr {
	width: 100% !important;
	overflow: visible !important;
}

/* Calendar table itself should be white */
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table {
	background-color: #ffffff !important;
	background: #ffffff !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar,
.c-reservation-calendar .daterangepicker .drp-calendar.left,
.c-reservation-calendar .daterangepicker .drp-calendar.right,
.c-reservation-calendar .daterangepicker .ranges,
.c-reservation-calendar .daterangepicker .drp-buttons,
.c-reservation-calendar .daterangepicker .drp-selected,
.c-reservation-calendar .daterangepicker .calendar-time {
	background-color: transparent !important;
	background: transparent !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table *,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table thead,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table thead tr,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table thead th,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody tr,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.off,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.available,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.in-range,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.weekend,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.ends,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.start,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.end,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.first,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.last,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.full,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.date-2025-12-04,
.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table tbody td.date-2025-12-05 {
	background-color: #ffffff !important;
	background: #ffffff !important;
	color: #333333 !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table {
	border: 1px solid #ddd !important;
}

/* Force white background on all possible grey elements */
.c-reservation-calendar .daterangepicker .drp-calendar.right,
.c-reservation-calendar .daterangepicker .drp-calendar.right *,
.c-reservation-calendar .daterangepicker .drp-calendar.right .calendar-table,
.c-reservation-calendar .daterangepicker .drp-calendar.right .calendar-table * {
	background-color: #ffffff !important;
	background: #ffffff !important;
}

/* Ensure table cells don't have padding that creates visual gaps */
.c-reservation-calendar__table td {
	padding: 0 !important;
}

/* Center all content within table cells */
.c-reservation-calendar__table td > * {
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
}

.c-reservation-calendar__table td > .c-vehicle-details__booking-calendar {
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar.left .calendar-table th.month {
	background-color: #fff !important;
	color: #333 !important;
	font-weight: 600 !important;
}

/* Ensure navigation arrows are always visible */
.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.prev,
.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.next {
	display: table-cell !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	cursor: pointer !important;
	position: relative !important;
	z-index: 10 !important;
	width: auto !important;
	min-width: 30px !important;
	text-align: center !important;
	background-color: #fff !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.prev span,
.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.next span {
	display: inline-block !important;
	visibility: visible !important;
	opacity: 1 !important;
	color: #333 !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.prev:hover,
.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.next:hover {
	background-color: #f5f5f5 !important;
}

.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.prev.disabled,
.c-reservation-calendar .daterangepicker .drp-calendar .calendar-table thead th.next.disabled {
	opacity: 0.3 !important;
	cursor: not-allowed !important;
}

/* What's Included */
.c-reservation-included {
	margin: 50px 0;
}

.c-reservation-included h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.c-reservation-included p {
	margin: 12px 0;
	line-height: 1.6;
}

/* Lightbox Styles */
.reservation-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.reservation-lightbox__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.reservation-lightbox__content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.reservation-lightbox__image {
	max-width: 100%;
	max-height: 85vh;
	width: auto;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	border-radius: 4px;
	-webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
	/* Ensure image displays correctly in all browsers */
	vertical-align: middle;
}

/* Fallback for browsers that don't support vh units */
@supports not (height: 100vh) {
	.reservation-lightbox__image {
		max-height: 85%;
	}
}

.reservation-lightbox__caption {
	color: #fff;
	text-align: center;
	margin-top: 15px;
	font-size: 16px;
	padding: 0 20px;
}

.reservation-lightbox__close {
	position: absolute;
	top: -40px;
	right: 0;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	z-index: 100001;
}

.reservation-lightbox__close:hover {
	opacity: 0.7;
}

.reservation-lightbox__prev,
.reservation-lightbox__next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.2);
	border: 2px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	font-size: 40px;
	line-height: 1;
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 100001;
}

.reservation-lightbox__prev:hover,
.reservation-lightbox__next:hover {
	background: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.8);
}

.reservation-lightbox__prev {
	left: 20px;
}

.reservation-lightbox__next {
	right: 20px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
	.c-reservation-hero h1 {
		font-size: 28px;
	}
	
	.c-reservation-actions .c-button {
		display: block;
		width: 100%;
		margin: 10px 0;
	}
	
	.c-camper-gallery {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	
	.c-reservation-pricing table {
		font-size: 14px;
	}
	
	.c-reservation-pricing th,
	.c-reservation-pricing td {
		padding: 8px 5px;
	}

	.reservation-lightbox__close {
		top: 10px;
		right: 10px;
		font-size: 30px;
	}

	.reservation-lightbox__prev,
	.reservation-lightbox__next {
		width: 40px;
		height: 40px;
		font-size: 30px;
	}

	.reservation-lightbox__prev {
		left: 10px;
	}

	.reservation-lightbox__next {
		right: 10px;
	}

	.reservation-lightbox__image {
		max-height: 75vh;
	}
	
	@supports not (height: 100vh) {
		.reservation-lightbox__image {
			max-height: 75%;
		}
	}
	
	/* Calendar mobile fixes - ONLY on reservation page */
	body.page-template-page-reservation .js-reservation-calendar-ford-info,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info,
	.js-reservation-calendar-ford-info,
	.js-reservation-calendar-fiat-info {
		padding: 10px 5px !important;
		overflow-x: visible !important;
	}
	
	body.page-template-page-reservation .c-vehicle-details__booking-calendar .daterangepicker,
	.js-reservation-calendar-ford-info .c-vehicle-details__booking-calendar .daterangepicker,
	.js-reservation-calendar-fiat-info .c-vehicle-details__booking-calendar .daterangepicker {
		min-width: 280px !important;
		max-width: calc(100vw - 20px) !important;
		width: auto !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar,
	.js-reservation-calendar-ford-info .daterangepicker .drp-calendar,
	.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar {
		min-width: 280px !important;
		max-width: calc(100vw - 20px) !important;
		width: auto !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table,
	.js-reservation-calendar-ford-info .daterangepicker .calendar-table,
	.js-reservation-calendar-fiat-info .daterangepicker .calendar-table {
		min-width: 280px !important;
		max-width: calc(100vw - 20px) !important;
		width: 100% !important;
		table-layout: fixed !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table td,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table td,
	.js-reservation-calendar-ford-info .daterangepicker .calendar-table td,
	.js-reservation-calendar-fiat-info .daterangepicker .calendar-table td {
		min-width: 30px !important;
		padding: 6px 4px !important;
		font-size: 13px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next,
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev,
	.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next,
	.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next,
	.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev,
	.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev {
		min-width: 30px !important;
		padding: 6px 4px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev span,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev span,
	.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
	.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.next span,
	.js-reservation-calendar-ford-info .daterangepicker .drp-calendar .calendar-table thead th.prev span,
	.js-reservation-calendar-fiat-info .daterangepicker .drp-calendar .calendar-table thead th.prev span {
		width: 16px !important;
		height: 16px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table thead th.month,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead th.month,
	.js-reservation-calendar-ford-info .daterangepicker .calendar-table thead th.month,
	.js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead th.month {
		font-size: 14px !important;
		padding: 8px 4px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .daterangepicker .calendar-table thead th:not(.month):not(.prev):not(.next),
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead th:not(.month):not(.prev):not(.next),
	.js-reservation-calendar-ford-info .daterangepicker .calendar-table thead th:not(.month):not(.prev):not(.next),
	.js-reservation-calendar-fiat-info .daterangepicker .calendar-table thead th:not(.month):not(.prev):not(.next) {
		font-size: 12px !important;
		padding: 6px 2px !important;
	}
	
	/* Simple calendar mobile fixes - ONLY on reservation page */
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar,
	.js-reservation-calendar-ford-info .simple-calendar,
	.js-reservation-calendar-fiat-info .simple-calendar {
		width: 100% !important;
		min-width: 100% !important;
		max-width: 100% !important;
		padding: 10px !important;
		box-sizing: border-box !important;
	}
	
	/* Override desktop min-width on mobile */
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar,
	.js-reservation-calendar-ford-info .simple-calendar,
	.js-reservation-calendar-fiat-info .simple-calendar {
		min-width: 100% !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table,
	.js-reservation-calendar-ford-info .simple-calendar-table,
	.js-reservation-calendar-fiat-info .simple-calendar-table {
		width: 100% !important;
		min-width: 100% !important;
		table-layout: fixed !important;
		font-size: 12px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table th,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table th,
	.js-reservation-calendar-ford-info .simple-calendar-table th,
	.js-reservation-calendar-fiat-info .simple-calendar-table th {
		padding: 6px 2px !important;
		font-size: 11px !important;
		width: calc(100% / 7) !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-table td,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-table td,
	.js-reservation-calendar-ford-info .simple-calendar-table td,
	.js-reservation-calendar-fiat-info .simple-calendar-table td {
		padding: 6px 2px !important;
		font-size: 12px !important;
		width: calc(100% / 7) !important;
		white-space: nowrap !important;
		overflow: visible !important;
		text-align: center !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-header,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-header,
	.js-reservation-calendar-ford-info .simple-calendar-header,
	.js-reservation-calendar-fiat-info .simple-calendar-header {
		padding: 8px 5px !important;
		margin-bottom: 10px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-month,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-month,
	.js-reservation-calendar-ford-info .simple-calendar-month,
	.js-reservation-calendar-fiat-info .simple-calendar-month {
		font-size: 14px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-prev,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-prev,
	body.page-template-page-reservation .js-reservation-calendar-ford-info .simple-calendar-next,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .simple-calendar-next,
	.js-reservation-calendar-ford-info .simple-calendar-prev,
	.js-reservation-calendar-fiat-info .simple-calendar-prev,
	.js-reservation-calendar-ford-info .simple-calendar-next,
	.js-reservation-calendar-fiat-info .simple-calendar-next {
		font-size: 18px !important;
		padding: 4px 8px !important;
	}
	
	/* Ensure calendar containers allow full width on mobile */
	body.page-template-page-reservation .js-reservation-calendar-ford-info,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info,
	.js-reservation-calendar-ford-info,
	.js-reservation-calendar-fiat-info {
		padding: 10px 5px !important;
	}
	
	body.page-template-page-reservation .js-reservation-calendar-ford-info .c-vehicle-details__booking-calendar,
	body.page-template-page-reservation .js-reservation-calendar-fiat-info .c-vehicle-details__booking-calendar,
	.js-reservation-calendar-ford-info .c-vehicle-details__booking-calendar,
	.js-reservation-calendar-fiat-info .c-vehicle-details__booking-calendar {
		padding: 0 !important;
		overflow-x: visible !important;
		overflow: visible !important;
	}
}

/* Browser-specific fixes */
/* Firefox */
@-moz-document url-prefix() {
	.reservation-lightbox__image {
		max-height: 85%;
	}
}

/* Safari/WebKit */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
	.reservation-lightbox__image {
		max-height: 85%;
	}
}

/* Edge/IE11 fallbacks */
@supports (-ms-ime-align: auto) {
	.reservation-lightbox {
		display: -ms-flexbox;
	}
	
	.reservation-lightbox__content {
		display: -ms-flexbox;
		-ms-flex-align: center;
		-ms-flex-pack: center;
		-ms-flex-direction: column;
	}
}

/* Logo watermark background - ONLY for reservation page */
/* Remove grey backgrounds to show watermark */
body.page-template-page-reservation,
body.page-template-page-reservation .l-section--container,
body.page-template-page-reservation .l-section--container.l-section--margin-120,
body.page-template-page-reservation .l-section__content,
body.page-template-page-reservation .c-post,
body.page-template-page-reservation .c-post__wrap,
body.page-template-page-reservation .c-post__content {
	background-color: transparent !important;
	background: transparent !important;
}

body.page-template-page-reservation .l-section--container.l-section--margin-120 {
	position: relative;
}

/* Fixed watermark covering entire page */
body.page-template-page-reservation .l-section--container.l-section--margin-120::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url('https://cfw51.rabbitloader.xyz/eyJjIjp0cnVlLCJoIjoidGltZTRjYW1wZXIuY29tIiwidiI6MzgzNzUxNTk2LCJyIjoxfQ/wp-content/uploads/2024/08/Logo.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 600px auto;
	opacity: 0.08;
	z-index: 0;
	pointer-events: none;
}

/* Mobile responsive watermark - ensure full logo is visible */
@media screen and (max-width: 768px) {
	body.page-template-page-reservation .l-section--container.l-section--margin-120::before {
		background-size: 90% auto;
		background-position: center center;
	}
}

/* Extra small mobile devices */
@media screen and (max-width: 480px) {
	body.page-template-page-reservation .l-section--container.l-section--margin-120::before {
		background-size: 85% auto;
		background-position: center center;
	}
}

body.page-template-page-reservation .l-section__content {
	position: relative;
	z-index: 1;
}

/* Hide calendars on reservation page (keep in DOM, just hide visually) */
body.page-template-page-reservation .js-reservation-calendar-ford-info,
body.page-template-page-reservation .js-reservation-calendar-fiat-info,
body.page-template-page-reservation .c-vehicle-details__booking-calendar,
body.page-template-page-reservation .daterangepicker,
body.page-template-page-reservation .simple-calendar {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	height: 0 !important;
	width: 0 !important;
	overflow: hidden !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Camper description formatting */
.c-reservation-camper-description {
	background: rgba(255, 255, 255, 0.7);
	border-left: 4px solid #7CB342;
	padding: 20px 25px;
	margin: 20px auto;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	max-width: 900px;
	text-align: left;
	backdrop-filter: blur(2px);
}

.c-reservation-camper-description p {
	margin: 0;
	line-height: 1.8;
	color: #333;
	font-size: 16px;
}

/* Trust badges and social proof */
.c-reservation-trust-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
	padding: 20px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 8px;
	backdrop-filter: blur(2px);
}

.c-reservation-trust-badge {
	text-align: center;
	padding: 15px;
	min-width: 150px;
}

.c-reservation-trust-badge strong {
	display: block;
	font-size: 24px;
	color: #7CB342;
	margin-bottom: 5px;
}

.c-reservation-trust-badge span {
	display: block;
	font-size: 14px;
	color: #666;
}

/* Urgency/Scarcity messaging */
.c-reservation-urgency {
	background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
	border: 2px solid #FFC107;
	border-radius: 8px;
	padding: 15px 20px;
	margin: 20px 0;
	text-align: center;
}

.c-reservation-urgency strong {
	color: #d68910;
	font-size: 18px;
}

/* Enhanced CTA buttons */
.c-reservation-cta-section {
	background: rgba(255, 255, 255, 0.7);
	color: #333;
	padding: 40px 20px;
	border-radius: 12px;
	margin: 40px 0;
	text-align: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border: 2px solid rgba(233, 236, 239, 0.5);
	position: relative;
	z-index: 1;
	backdrop-filter: blur(2px);
}

.c-reservation-cta-section h2 {
	color: #333;
	margin-bottom: 15px;
	font-size: 28px;
}

.c-reservation-cta-section p {
	color: #555;
	font-size: 18px;
	margin-bottom: 25px;
}
