.car-product-grid{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
	font-family: inherit;
}

.car-product-card{
	background:#f3f3f3;
	padding:20px;
	border-radius:14px;
	display:flex;
	flex-direction:column;
	height:100%;
	font-family:inherit;
}

.car-image{
	width: 100%;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	border-radius: 10px !important;
	overflow: hidden;
}

.car-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block; 
	border-radius: 10px !important;
}

.car-title{
	font-size:20px !important;
	font-weight:600 !important;
	margin-bottom:10px;
	color:#1e1e1e !important;
	margin-top:15px;
}

.car-desc{
	color:#505050;
	margin-bottom:10px;
	flex-grow:1;
	font-family: inherit;
}

.car-bottom{
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-top:auto;
}

.car-price{
	/* 	background:#ffe500; */
	/* 	padding:8px 16px; */
	border-radius:20px;
	font-weight:600;
}

.car-cart-btn{
	background:#1dbb2f;
	color:#fff;
	padding:10px 22px;
	border-radius:22px;
	text-decoration:none;
	font-weight:500;
}
/* ============================================================
CAR RENTAL BOOKING FORM
============================================================ */

.car-booking-form{
	padding: 14px;
	background-color: #FEFEFE;
	box-shadow: 0 5px 15px rgba(0,0,0,0.07);
	border-radius: 10px;
	font-family: inherit;
}

/* TOP PRICE BAR */

.car-price-top{
	padding: 14px;
	background-color: #F2F2F7;
	border-radius: 8px;
	font-size: 16px;
	color: #8E8E93;
	margin-bottom: 20px;
}

.car-price-top strong{
	font-weight: 700;
	color: #0F71DD;
	font-size: 24px;
	margin: 0 4px;
}

/* FORM */

#car-booking-form{
	display:flex;
	flex-direction:column;
	gap:12px;
}

/* LABEL */

#car-booking-form label{
	display: block;
	color: #878787;
	font-size: 14px;
}

#car-booking-form label:before{
	content:"* ";
}

/* INPUT + SELECT */

#car-booking-form input,
#car-booking-form select{
	width: 100%;
	height: 52px;
	padding: 14px;
	background-color: #F6F6F6;
	border-radius: 8px;
	border: none;
	font-size: 15px;
	color: #141414;
	outline: none;
	box-sizing: border-box;
}

/* SELECT DROPDOWN */

#car-booking-form select{
	cursor:pointer;
}

/* INLINE ADULT + CHILD */

#car-booking-form label:nth-of-type(5),
#car-booking-form label:nth-of-type(6),
#adult-count,
#child-count {
	width: 100%;
	display: inline-block;
}

/* #car-booking-form label:nth-of-type(5),
#car-booking-form label:nth-of-type(6) {
margin-top: 16px;
} */

#adult-count {
	margin-right: 4%;
}

/* TOTAL BUTTON */

#calculate-car-price{
	width: 100%;
	padding: 12px 24px;
	background-color: #00B531;
	color: #fff;
	border: none;
	border-radius: 70px;
	font-size: 14px;
	cursor: pointer;
	font-weight: 400;
}

#calculate-car-price .btn-title{
	font-size:15px;
	font-weight: 500;
}


#calculate-car-price .btn-title .btn-price{
	font-size:20px;
	font-weight:500;
}

/* BOOK NOW BUTTON */

#book-car{
	width: 100%;
	padding: 12px 24px;
	background-color: #00B531;
	color: #fff;
	border: none;
	border-radius: 70px;
	font-size: 16px;
	cursor: pointer;
	font-weight: 400;
}

/* PERSON VALIDATION ERROR */

.person-error{
	color:#d93025;
	font-size:13px;
	margin-top:5px;
	display:block;
	font-weight:500;
	font-family:inherit;
}
/* PAGINATION WRAPPER */
.car-pagination:not(:empty) {
	display:flex;
	justify-content:center;
	align-items:center;
	gap:10px;
	margin-top:40px;
	font-family:inherit;
}

/* PAGINATION LINKS */

.car-pagination a,
.car-pagination span{
	display:flex;
	align-items:center;
	justify-content:center;
	padding: 10px 16px;
	border-radius:20px;
	border:1px solid #D9D9D9;
	text-decoration:none;
	font-size:14px !important;
	color:#333;
	background:#fff;
	transition:all 0.25s ease;
	line-height:130% !important;
}

/* HOVER */

.car-pagination a:hover{
	background:#20C210;
	border-color:#20C210;
	color:#fff;
}

/* CURRENT PAGE */

.car-pagination .current{
	background:#20C210;
	color:#fff;
	border-color:#20C210;
}

/* DOTS (...) */

.car-pagination .dots{
	border:none;
	background:transparent;
}

/* PREV / NEXT */

/* .car-pagination .prev,
.car-pagination .next{
	font-weight:600;
} */
.ajax-loader{
	display:flex;
	justify-content:center;
	align-items:center;
	width:100%;
	min-height:200px;
	grid-column:1 / -1;
}

.spinner{
	width:40px;
	height:40px;
	border:4px solid #eee;
	border-top:4px solid #149c97;
	border-radius:50%;
	animation:spin 0.8s linear infinite;
}

@keyframes spin{
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}
.car-share {
	margin-top: 20px;
}

.car-share-label {
	display: block;
	margin-bottom: 10px;
	font-size: 20px;
	color: #333;
	font-weight:500;
	padding-top:5px
}

.car-share-icons {
	display: flex;
	gap: 12px;
	padding-top:5px;
}


.car-share-icon img {
	width: 100%;
}

#book-car{
	display:none;
}
/* SIMPLE RADIO STYLE */

.driver-option-simple {
	display: flex;
	gap: 20px;
	align-items: center;
	margin-top: 5px;
	flex-wrap: wrap !important;
}

.driver-option-simple label {
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	font-size: 14px !important;
	color: #333 !important;
	cursor: pointer !important;
}

/* FIX RADIO SIZE */

.driver-option-simple input[type="radio"] {
	width: 16px !important;
	height: 16px !important;
	/*     transform: scale(1) !important; */
	accent-color: green;
}
#car-booking-form input[type="radio"] + *:before {
	content: "" !important;
}

#car-booking-form .driver-option-simple label:before,
#car-booking-form .driver-option label:before {
	content: "" !important;
}

#car-booking-form input::-webkit-input-placeholder {
	color: #b5b5b5;
}

#car-booking-form input::-moz-placeholder {
	color: #b5b5b5;
}

#car-booking-form input:-ms-input-placeholder {
	color: #b5b5b5;
}

#car-booking-form input::placeholder {
	color: #b5b5b5;
}
.car-description-block{
	border-bottom:1px solid #ddd;
	padding:30px 0;
}

.car-description-block:last-child{
	border-bottom: none;
	padding-bottom: 0;
}

.car-description-block:first-child{
	padding-top: 0;
}
.car-desc-title{
	font-weight:500 !important;
	margin-bottom:16px;
	display:inline-block;
}

.car-desc-content ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	list-style: none;
}

.car-desc-content ul li {
	position: relative;
	padding-left: 16px;
}

.car-desc-content ul li::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 6px;
	width: 6px;
	height: 6px;
	background-image: url('/wp-content/uploads/2026/03/Ellipse-7.svg');
	background-size: contain;
	background-repeat: no-repeat;

}
/* Google Maps autocomplete dropdown */
.pac-container {
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    font-family: inherit;
    z-index: 99999 !important; /* above modals */
}

.pac-item {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

.pac-item:hover {
    background-color: #f5f5f5;
}

.pac-item-query {
    font-size: 14px;
    color: #333;
}

.pac-matched {
    font-weight: 600;
}
/* ======================
TABLET
====================== */

@media (max-width:1024px){

	.car-product-grid{
		grid-template-columns:repeat(2,1fr);
		gap:24px;
	}

	.car-title{
		font-size:20px;
	}

	.car-image{
		height:200px;
	}

	#car-booking-form label{
		font-size:12px;
	}


}

/* ======================
MOBILE
====================== */

@media (max-width:768px){

	.car-product-grid{
		grid-template-columns:1fr;
		gap:20px;
	}

	.car-product-card{
		padding:18px;
	}

	.car-image{
		height:180px;
	}

	.car-title{
		font-size:18px;
	}

	.car-desc{
		font-size:13px;
	}

	.car-cart-btn{
		padding:9px 18px;
		font-size:14px;
	}


}
/* ======================
SMALL MOBILE
====================== */

@media (max-width:480px){

	.car-image{
		height:160px;
	}

	.car-bottom{
		align-items: center;
	}

	.car-cart-btn{
		/* 		width:100%; */
		text-align:center;
	}

}
/* Add this CSS — hides all gallery items by default before JS runs */
.product-gallery .elementor-image-gallery .gallery-item {
	display: none;
}
#car-booking-form input[type="date"],
#hotel-booking input[type="date"] {
	background-color: #F6F6F6 !important;
	border: none !important;
	border-radius: 10px !important;
	padding: 14px 40px 14px 14px !important;
	font-size: 15px !important;
	color: #141414 !important;
	appearance: none;
}
/* Hide default browser calendar icon */
#car-booking-form input[type="date"]::-webkit-calendar-picker-indicator,
#hotel-booking input[type="date"]::-webkit-calendar-picker-indicator {
	display: none;
	-webkit-appearance: none;
}
#car-booking-form input[type="date"],
#hotel-booking input[type="date"] {
	appearance: none;
	-webkit-appearance: none;
	position: relative;
}
.cb-date-wrap {
	position: relative;
}

.cb-input {
	width: 100%;
	height: 52px;
	padding: 14px;
	padding-right: 40px;
	background: #F6F6F6;
	border-radius: 8px;
	border: none;
	cursor: pointer;
}

.cb-date-icon {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* 🔥 IMPORTANT */
    z-index: 1;
}
.toggle-switch {
	position: relative;
	width: 50px;
	height: 26px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	background-color: #ccc;
	border-radius: 34px;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transition: 0.4s;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 20px;
	width: 20px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	border-radius: 50%;
	transition: 0.4s;
	content: "" !important;
}

/* ON state */
.toggle-switch input:checked + .toggle-slider {
	background-color: #4CAF50;
}

.toggle-switch input:checked + .toggle-slider:before {
	transform: translateX(24px);
}
/* .toggle-row {
display: flex;
justify-content: space-between;
align-items: center;
margin: 10px 0;
} */

.toggle-label {
	font-size: 14px;
	color: #878787;
}
.km-section {
	background: #F6F6F6;
	padding: 12px;
	border-radius: 10px;
}

#included-km-text {
	margin: 0 0 8px 0;
	font-weight: 500;
	color: #333;
}

.toggle-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#extra-km-price-text {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}
/* 🔥 FIX DATE CLICK ISSUE */
.cb-date-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.cb-date-wrap {
    position: relative;
}