/* GRID */
.custom-product-grid {
	display: grid;
	gap: 26px;
}

.custom-product-grid > * {
	min-width: 0;
}

.columns-1 {
	grid-template-columns: repeat(1, 1fr);
}

.columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

@media(max-width: 1600px) {
	.columns-6 {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.columns-5 {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media(max-width: 1300px) {
	.columns-6 {
		grid-template-columns: repeat(3, 1fr);
	}
	
	.columns-5 {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(max-width: 768px) {
	.columns-6 {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.columns-5 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 540px) {
	.columns-6 {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.columns-5 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* CARD */

.custom-product-card {
	transition: all 0.35s ease;
	position: relative;
	width: 100%;
	height: auto;
}

.custom-product-card .brand {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 20px;
	font-weight: 400;
	color: #8a8a8a;
	margin: 0;
	padding: 0;
}

.custom-product-card .product-title {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 24px;
	font-weight: 400;
	color: #8a8a8a;
	margin: 0 0 10px;
	padding: 0;
}

.custom-product-card .price {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 16px;
	font-weight: 400;

	color: #8a8a8a;

	margin: 0 0 5px;

	padding: 0;
}

.custom-product-card .desc {
	font-family: "Jacques Francois", Sans-serif;

	font-size: 16px;

	font-weight: 400;

	color: #8a8a8a;

	margin: 0;

	padding: 0;
}

.custom-product-card .product-image {
	position: relative;

	transition: transform 0.35s ease;

	width: 100%;

	height: auto;

	border-radius: 20px;

	overflow: hidden;
}

.custom-product-card .product-image img {
	width: 100%;

	height: auto;
}

.custom-product-card .view-btn {
	font-family: "Jacques Francois", Sans-serif;

	background-color: #e2d3b9;

	color: #636363;

	font-size: 20px;

	line-height: normal;

	text-align: center;

	font-weight: 400;

	display: inline-block;

	width: 100%;

	padding: 10px 0;

	border: 0;

	text-decoration: none;

	position: absolute;

	bottom: -100%;

	left: 50%;

	transform: translateX(-50%);

	transition: all 0.3s ease;
}

.custom-product-card:hover .product-image .view-btn {
	bottom: 0;
}

.custom-product-card .cart-btn {
	width: 26px;

	height: 26px;

	position: absolute;

	top: 10px;

	right: 10px;

	opacity: 0;
}

.custom-product-card .cart-btn img {
	width: 26px;

	height: 26px;
}

.custom-product-card:hover .cart-btn {
	opacity: 1;
}

.product-disabled {
	background: rgb(217 217 217 / 50%);

	pointer-events: none;

	border-radius: 20px;

	padding: 0;
}

.product-disabled img {
	filter: grayscale(100%);

	opacity: 0.35;
}

.custom-product-card .product-info {
	padding-top: 15px;

	padding-bottom: 20px;
}

.product-disabled .product-info {
	padding: 15px 20px 20px;
}

.product-disabled .product-descc {
    padding: 15px 20px 20px;
}

.product-disabled .product-image {
	border-radius: 0;
}

/* CENTER MESSAGE */

.product-unavailable {
	position: absolute;

	bottom: 0;

	left: 50%;

	transform: translateX(-50%);

	background: #d9d9d9;

	width: 100%;

	padding: 14px 22px;

	display: flex;

	gap: 10px;

	align-items: center;

	justify-content: center;

	z-index: 5;
}

.product-unavailable .face-icone {
	width: 30px !important;

	height: 30px !important;

	filter: unset;

	opacity: 1;
}

.product-unavailable .text {
	font-family: "Jacques Francois", Sans-serif;

	font-size: 16px;

	font-weight: 400;

	max-width: 150px;

	text-align: center;

	width: 100%;

	color: #8a8a8a;

	margin: 0;

	padding: 0;
}

.loader {
	overflow: hidden;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	z-index: 100000;
}

.loader__element {
	border-radius: 100%;
	border: 5px solid #8a8a8a;
	margin: calc(5px * 2);
}

.loader__element:nth-child(1) {
	animation: preloader 0.6s ease-in-out alternate infinite;
}

.loader__element:nth-child(2) {
	animation: preloader 0.6s ease-in-out alternate 0.2s infinite;
}

.loader__element:nth-child(3) {
	animation: preloader 0.6s ease-in-out alternate 0.4s infinite;
}

.loader__element:nth-child(4) {
	animation: preloader 0.6s ease-in-out alternate 0.6s infinite;
}

@keyframes preloader {
	100% {
		transform: scale(2);
	}
}

/* MAIN BAR */
.listing-date-bar {
	display: flex;
	align-items: center;
	max-width: 670px;
	width: 100%;
	margin: 0 auto;
	border: 1px solid #000000;
	border-radius: 50px;
	padding: 0 0 0 36px;
	gap: 14px;
	background: #fff;
}

/* DATE TEXT */
.listing-date-bar .date-icon {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 46px;
}

.search-btn img {
	width: 36px;
	height: 36px;
}

.date-text {
	max-width: calc(100% - 46px);
	font-family: "Jacques Francois", Sans-serif;
	color: #747474;
	font-size: 16px;
	line-height: normal;
	font-weight: 400;
	border: none !important;
	outline: none !important;
	background: transparent;
	cursor: pointer !important;
	padding: 0 !important;
}

.date-text:focus,
.date-text:focus-visible {
	border: none !important;
	outline: none !important;
}

.date-text::placeholder {
	font-family: "Jacques Francois", Sans-serif;
	color: #747474;
	font-size: 16px;
	line-height: normal;
	font-weight: 400;
}

.listing-date-bar .search-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding-right: 20px;
	padding-left: 20px;
	border-left: 1px solid #000000;
	max-width: 185px;
	width: 100%;
	border-radius: 0 40px 40px 0;
}

.listing-date-bar .search-btn:hover {
	background-color: #e2d3b9;
}

.listing-date-bar .search-btn span {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 16px;
	line-height: normal;
	font-weight: 400;
	color: #747474;
}

.listing-date-bar .search-btn span {
	color: #000000;
}

/* CHANGE DATES */
.change-dates {
	border: none;
	background: transparent;
	font-size: 18px;
	color: #7a7a7a;
	cursor: pointer;
	padding: 0 8px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
	.listing-date-bar {
		padding: 0 0 0 20px;
	}

	.date-icon img {
		width: 28px;
	}

	.listing-date-bar .date-icon {
		gap: 20px;
	}

	.listing-date-bar .search-btn Span {
		display: none;
	}

	.listing-date-bar .search-btn {
		padding-right: 18px;
		padding-left: 14px;
		max-width: 70px;
	}
}

/* MONTH + YEAR BAR */
.flatpickr-current-month {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

/* MONTH DROPDOWN */
.flatpickr-monthDropdown-months {
	font-size: 16px;
	font-weight: 500;
	padding-right: 6px;
}

/* YEAR DROPDOWN / INPUT */
.flatpickr-current-month input.cur-year,
.flatpickr-current-month select.cur-year {
	font-size: 16px;
	font-weight: 500;
	width: auto;
	min-width: 72px;
	display: inline-block !important;
}

/* ARROWS ALIGNMENT */
.flatpickr-prev-month,
.flatpickr-next-month {
	top: 8px;
}

/* Select Styling */

.custom-sort-wrapper {
	position: relative;
	display: inline-block;
}

.custom-sort-select {
	font-family: "Jacques Francois", Sans-serif;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 14px 50px 14px 22px;
	min-width: 350px;
	border: 1.03px solid #000;
	border-radius: 999px;
	background-color: #fff;
	color: #747474;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
}

.custom-sort-wrapper::after {
	content: "⌄";
	position: absolute;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 18px;
	color: #000;
}

.custom-sort-select:hover {
	border-color: #000;
}

.custom-sort-select:focus {
	outline: none;
	border-color: #000;
}

/* View Toggle Wrapper */
.listing-view-toggle {
	display: flex;
	align-items: center;
	gap: 25px;
}

/* Toggle Buttons */
.listing-view-toggle .view-btn {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	opacity: 0.4;
	transition: opacity 0.2s ease;
}

.listing-view-toggle .view-btn img {
	width: 36px;
	height: 36px;
}

/* Active State */
.listing-view-toggle .view-btn.active {
	opacity: 1;
}

/* ================================
   LIST VIEW
================================ */
.custom-product-grid.list-view {
	grid-template-columns: 1fr;
}

.custom-product-grid.list-view .custom-product-card {
	display: flex;
	gap: 24px;
	align-items: center;
}

.custom-product-grid.list-view .product-image {
	max-width: 260px;
	flex-shrink: 0;
}

.custom-product-grid.list-view .product-info {
	text-align: left;
}

.listing-top-filter.js-listing-filter {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.listing-top-filter.js-listing-filter .listing-date-bar {
	margin: unset;
}

.listing-top-filter.js-listing-filter .listing-filter-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
}

/* product Sidebar */
aside.listing-sidebar {
	background: #fff;
	padding: 0;
	border-radius: 0;
	width: 100%;
	max-width: 100%;
}

.filter-title {
	font-size: 15px;
	font-weight: 600;
	color: #111;
	margin-bottom: 14px;
}

.product-cat-filter .filter-title {
	font-family: "Jacques Francois", Sans-serif;
	margin: 0 0 20px;
	padding: 0 30px 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	color: rgba(116, 116, 116, 1);
	font-size: 26.2px;
	font-weight: 400;
	line-height: 35px;
	text-align: left;
	border-bottom: 0.82px solid rgba(138, 138, 138, 1);
}

.category-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 5px;
}

.category-item {
	font-family: "Jacques Francois", Sans-serif;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	font-size: 16px;
	line-height: normal;
	font-weight: 400;
	color: #747474;
}

.cat-thumb img {
	width: 37px;
	height: 37px;
	border-radius: 8px;
	object-fit: contain;
}

.category-children {
	display: none;
	margin-top: 0;
	margin-left: 45px;
	font-family: "Jacques Francois", Sans-serif;
	font-size: 16px;
	line-height: normal;
	font-weight: 400;
	color: #747474;
}

.cat-toggle img {
	width: 10px;
	opacity: 0.6;
	transition: transform 0.25s ease;
	cursor: pointer;
}

.cat-toggle.open img {
	transform: rotate(180deg);
}

.category-children.open {
	display: block;
}

.category-children .cat-thumb {
	display: none;
}

.category-children .category-children {
	margin-left: 20px;
}

.category-item input {
	display: none;
}

.filter-age-block .filter-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	margin-bottom: 40px;
	margin-top: 20px;
}

.filter-age-block .filter-header .filter-title {
	font-family: "Jacques Francois", Sans-serif;
	color: rgba(138, 138, 138, 1);
	font-style: Regular;
	font-size: 26.2px;
	font-weight: 400;
	line-height: 35px;
	letter-spacing: 0;
	text-align: left;
	margin: 0;
	padding: 0;
}

.age-pill span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 84px;
	box-sizing: border-box;
	border: 0.82px solid rgba(138, 138, 138, 1);
	border-radius: 40.93px;
	color: rgba(138, 138, 138, 1);
	font-family: "Jacques Francois", Sans-serif;
	font-size: 15.4px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.age-pill input:checked + span {
	background: #ead7b7;
	/* beige like image */
	border-color: #ead7b7;
	color: #6b5a3a;
}

.filter-toggle img {
	width: 10px;
	opacity: 0.6;
	transition: transform 0.25s ease;
}

.filter-age-block.open .filter-toggle img {
	transform: rotate(180deg);
}

.filter-content {
	display: none;
}

.filter-age-block.open .filter-content {
	display: flex;
}

.age-pills {
	gap: 10px;
	flex-wrap: wrap;
}

.age-pill input {
	display: none;
}

.filter-product-brand .filter-title {
	font-family: "Jacques Francois", Sans-serif;
	margin: 30px 0 15px;
	color: rgba(116, 116, 116, 1);
	font-size: 26.2px;
	font-weight: 400;
	line-height: 35px;
	text-align: left;
}

.filter-product-brand  .filter-content.brand-list {
	display: block;
}

.brand-list {
	overflow-y: auto !important;
	max-height: 300px;

	/* Firefox */
	scrollbar-width: thin;
	scrollbar-color: #cbbca6 transparent;
}

/* Chrome / Edge / Safari */
.brand-list::-webkit-scrollbar {
	width: 6px;
}

.brand-list::-webkit-scrollbar-track {
	background: transparent;
}

.brand-list::-webkit-scrollbar-thumb {
	background: #cbbca6;
	border-radius: 50px;
}

.brand-list::-webkit-scrollbar-thumb:hover {
	background: #b8a788;
}


.brand-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	color: rgba(116, 116, 116, 1);
	font-family: "Jacques Francois", Sans-serif;
	font-size: 15.44px;
	font-weight: 400;
	line-height: 49.12px;
	letter-spacing: 0;
	text-align: left;
	flex-direction: row;
	margin-left: 20px;
	margin-right:10px;
}

.brand-toggle input {
	display: none;
}

.brand-toggle .toggle {
	width: 31.11px;
	height: 18.01px;
	position: relative;
	transition: all 0.25s ease;
	box-sizing: border-box;
	border: 0.82px solid rgba(138, 138, 138, 1);
	border-radius: 40.93px;
}

.brand-toggle input:checked + .toggle {
	box-sizing: border-box;
	border: 0.82px solid rgba(240, 225, 200, 1);
	border-radius: 40.93px;
	background: rgba(240, 225, 200, 1);
}

.filter-color-block .filter-title {
	font-family: "Jacques Francois", Sans-serif;
	margin: 30px 0 15px;
	color: rgba(116, 116, 116, 1);
	font-size: 26.2px;
	font-weight: 400;
	line-height: 35px;
	text-align: left;
}

/* ===============================
   COLOR FILTER WRAPPER
================================ */
.color-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

/* Hide checkbox */
.color-pill input {
	display: none;
}

/* ===============================
   COLOR PILL
================================ */
.color-pill .pill {
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	transition: all 0.25s ease;
	color: rgba(116, 116, 116, 1);
	font-family: "Jacques Francois", Sans-serif;
	font-style: Regular;
	font-size: 15.44px;
	font-weight: 400;
	line-height: 49.12px;
	letter-spacing: 0;
	text-align: left;
}

/* ===============================
   COLOR DOT
================================ */
.color-pill .dot {
	width: 31.11px;
	height: 18.01px;

	box-sizing: border-box;
	border-radius: 40.93px;
	border-radius: 40px;
	flex-shrink: 0;
}

.color-pill .name {
	color: rgba(116, 116, 116, 1);
	font-family: "Jacques Francois", Sans-serif;
	font-style: Regular;
	font-size: 15.44px;
	font-weight: 400;
	line-height: 49.12px;
	letter-spacing: 0;
	text-align: left;
}

/* White color visibility */
.color-pill .dot[style*="#fff"],
.color-pill .dot[style*="#ffffff"] {
	border: 1px solid #bbb;
}

.clear-filters {
	color: rgba(120, 109, 109, 1);
	font-family: "Jacques Francois", Sans-serif;
	font-style: Regular;
	font-size: 26.2px;
	font-weight: 400;
	line-height: 35px;
	letter-spacing: 0;
	text-align: left;
	border: 0;
	outline: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	margin: 0;
	margin-top: 60px;
	gap: 10px;
	color: #786D6D;
}

.clear-filters:hover,
.clear-filters:focus,
.clear-filters:focus-visible {
	background-color: transparent;
	color: #786D6D;
	text-decoration: none;
}


@media (max-width:1600px) {
	.listing-top-filter.js-listing-filter .listing-date-bar {
		max-width: 600px;
		margin: 0 auto;
	}

	.listing-top-filter.js-listing-filter .listing-filter-top {
		width: 100%;
	}

	.listing-top-filter.js-listing-filter .listing-filter-top {
		gap: 15px;
	}
}

@media (max-width:1300px) {
	.listing-top-filter.js-listing-filter {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 20px;
		flex-direction: column;
	}
}


@media (max-width:767px) {
	.listing-top-filter.js-listing-filter .listing-filter-top {
		gap: 15px;
	}

	.listing-view-toggle .view-btn img {
		width: 40px;
		height: auto;
	}
	
	.custom-sort-select {
		min-width: 280px !important;
	}

	.custom-sort-select {
		min-width: 260px;
	}

	.listing-view-toggle{
		gap: 15px;
	}

	.brand-toggle {
		margin-left: 30px;
	}
}


@media (max-width: 450px) {
	.custom-sort-select {
		min-width: 150px;
		font-size: 16px;
		padding: 14px 25px 14px 18px;
	}

	.custom-sort-wrapper::after {
		right: 16px;
	}
}

































/* Overlay */
#date-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgb(28 28 28 / 80%);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.sub-date-popup-overlay {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

/* Popup box */
.date-popup {
	background: #fff;
	border-radius: 20px;
	padding: 25px;
	width: 700px;
	max-width: 95%;
	text-align: center;
	position: relative;
}

/* Close button */
.close-popup {
	position: absolute;
	top: -15px;
	padding: 0;
	right: -40px;
	font-size: 48px;
	background: none;
	line-height: 58.1px;
	border: none;
	font-family: "Jacques Francois", Sans-serif;
	cursor: pointer;
	color: #FFFFFF;
}

/* Book button */
.apply-btn {
	width: fit-content;
	margin: 0 auto;
	font-family: "Jacques Francois", Sans-serif;
	margin-top: 20px;
	max-width: 250px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	border-radius: 30px;
	border: 1px solid #000000;
	color: #8A8A8A;
	background: transparent;
	cursor: pointer;
	font-size: 22px;
	line-height: normal;
}

.apply-btn:hover {
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
	background: #000000;
}

/* Flatpickr adjustments */
.flatpickr-calendar {
	box-shadow: none !important;
}


.flatpickr-calendar {
	border: none !important;
	box-shadow: none !important;
}

.flatpickr-day {
	height: 40px;
	line-height: 40px;
	border-radius: 0;
}

.flatpickr-day.startRange {
	background: #3b82f6 !important;
	color: #fff !important;
	border-radius: 20px 0 0 20px;
}

.flatpickr-day.endRange {
	background: #3b82f6 !important;
	color: #fff !important;
	border-radius: 0 20px 20px 0;
}

.flatpickr-day.selected:not(.startRange):not(.endRange) {
	background: #3b82f6 !important;
	color: #fff !important;
	border-radius: 20px;
}

.flatpickr-day.inRange {
	background: #e5e5e5 !important;
	color: #000;
	border-radius: 0;
}

.flatpickr-day.inRange + .flatpickr-day.inRange {
	box-shadow: inset 1px 0 0 #e5e5e5;
}

.flatpickr-current-month {
	font-weight: 600;
	font-size: 18px;
}

.flatpickr-weekdays {
	color: #777;
	font-weight: 500;
}

.date-summary {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	border-bottom: 3px solid #1668E3;
	width: fit-content;
	padding-bottom: 10px;
}

.flatpickr-current-month .numInputWrapper span {
	display: none !important;
}

.flatpickr-current-month .numInputWrapper input {
	pointer-events: none;   /* year editable ન રહે */
	appearance: none;
	-moz-appearance: textfield;
	font-weight: 700;
}

.flatpickr-current-month input.cur-year {
	font-weight: 700;
}

.flatpickr-current-month input[type=number]::-webkit-inner-spin-button,
.flatpickr-current-month input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}


.flatpickr-months .flatpickr-month span {
	font-family: "Jacques Francois", Sans-serif;
}



.popup-categories {
	margin: 20px 0 10px;
	text-align: center;
}

.cat-title {
	font-family: "Jacques Francois", Sans-serif;	
	font-size: 16px;
	line-height: normal;
	color: #AC936F;
	margin-bottom: 10px;
}

.cat-list {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	flex-wrap: wrap;
}

.cat-item {
	width: 100px;
	cursor: pointer;
	text-align: center;
}

.cat-item img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	margin: 0 auto;
	border-radius: 14px;
	padding: 6px;
	border: 2px solid transparent;
	transition: 0.2s;
}

.cat-item.active {
	border-color: #000;
	background: #f1d7b2;
	border-radius: 10px;
}

.cat-item span {
	font-family: "Jacques Francois", Sans-serif;
	display: block;
	font-size: 14px;
	margin-top: 6px;
	text-align: center;
	color: #6E6E6E;
}

aside.listing-sidebar {
	background: transparent;
}

.product-sidebar {
	height: 100%;
}

.category-tree {
	padding: 0px 0px;
}

@media (max-width: 1024px) {
	.category-tree {
		padding: 0px 15px;
	}
}

@media (max-width: 767px) {
	.date-popup {
		background: #fff;
		border-radius: 20px;
		padding: 25px;
		width: 700px;
		max-width: 80%;
		height: 75vh;
		text-align: center;
		position: relative;
		overflow: auto;
	}

	.close-popup {
		top: 12px;
		padding: 0;
		right: 20px;
		color: #000;
	}
}


.rnb-booking-inventory,
.pick-up-date-picker,
.drop-off-date-picker,
.date-time-picker,
#pickup-modal-body,
#dropoff-modal-body {
	display: none !important;
}

.rnb-component-wrapper {
	background: none !important;
	padding: 0 !important;
	margin: 0 !important;
}


.custom-rnb-cart .date-time-picker,
.custom-rnb-cart .rnb-loader {
	display: none;
}


/* Quantity wrapper */

.custom-rnb-cart .redq-quantity h5{
	display: none;
}

.ln-qty-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid #000000;
	border-radius: 999px;
	padding: 10px;
	gap: 15px;
	background: #fff;
	width: 200px;
	height: 54px;
}

/* Remove default number arrows */
.ln-qty-wrapper input[type=number] {
	border: none;
	width: 30px;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	outline: none;
	background: transparent;
	-moz-appearance: textfield;
	width: fit-content !important;
	padding: 0;
	justify-content: center;
}

.single-product form.cart input {
	width: fit-content;
}

.ln-qty-wrapper input::-webkit-outer-spin-button,
.ln-qty-wrapper input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Plus / Minus buttons */
.ln-qty-btn {
	background: none;
	border: none;
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
	padding: 0;
	color: #000;
}

.ln-qty-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

.custom-rnb-cart .single_add_to_cart_button {
	max-width: calc(100% - 360px);
	width: 100%;
	height: auto;
}

.custom-rnb-cart button[type="submit"] {
	line-height: normal;
	border: 1px solid #000;
	background-color: #FFE8D5 !important;
	color: #000000 !important;
	font-family: "Jacques Francois", Sans-serif;
	font-size: 24px;
	font-weight: 400;
	border-radius: 50px;
	margin: 0 !important;
/* 	margin-left: 30px !important; */
	max-width: 100% !important;
	width: 100% !important;
}

.custom-rnb-cart form::after,
.custom-rnb-cart form::before {
	content: unset !important;
}


























/* register Form  */
/*font-family: "Jacques Francois", Sans-serif;*/

.custom-register-form {
	width: 100%;
	max-width: 100%;
	margin:0 auto;
	font-family: "Jacques Francois", Sans-serif;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.form-group label,
.passport-choose label {
	font-size: 20px;
	font-weight: 400;
	color: #797772;
	display: block;
	margin-bottom: 20px;
}

.passport-choose label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}

.passport-choose label span {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 18px;
	line-height: normal;
	font-weight: 400;
	color: #FFF;
}

.passport-choose {
	max-width: 460px;
	width: 100%;
	height: auto;
	text-align: left;
}

.passport-choose label.passport-label {
	justify-content: flex-start;
}

.custom-register-form .form-group input,
.custom-register-form .form-group select {
	font-family: "Jacques Francois", Sans-serif;
	width: 100%;
	padding: 14px 24px;
	border-radius: 50px;
	border: none;
	background: #F9F9F9 !important;
	font-size: 18px;
	line-height: normal;
	font-weight: 400;
	border: 0 !important;
}

.form-group input::placeholder,
.form-group select{
	color: #bbb;
}

.form-group input:focus,
.form-group input:focus-visible {
	border: 0;
	outline: 0;
}

.passport-wrap {
	margin: 30px 0 60px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 40px;
}

.upload-btn {
	display: inline-block;
	background: #b49b6b;
	color: #fff;
	padding: 12px 26px;
	border-radius: 30px;
	cursor: pointer;
	font-size: 14px;
}

.help-text {
	font-size: 18px;
	color: #797772;
	margin-top: 0;
	max-width: 670px;
}

.password-rules {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #AC936F;
	margin-top: 38px;
	padding-left: 20px;
	list-style: disc;
}

.password-rules li {
	color : #797772;
}

.section-title {
	margin: 30px 0 40px;
	font-family: "Jacques Francois", Sans-serif;
	font-size: 24px;
	line-height: normal;
	color: #797772;
}

.already_login_user {
	font-family: "Jacques Francois", Sans-serif;
	font-size: 24px;
	line-height: normal;
	color: #797772;
	text-align: center;
}

.submit-btn {
	max-width: 580px;
	width: 100%;
	margin: 70px auto 0;
	display: block;
	background: #11111142;
	border: none;
	padding: 15px 24px;
	border-radius: 32px;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	cursor: pointer;
}

.submit-btn:hover {
	background: #b49b6b;
}

.password-rules li.valid {
	color: #27ae60;
}

.password-rules li::marker {
	content: "✖ ";
}

.password-rules li.valid::marker {
	content: "✔ ";
}


#form-loader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.8);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader-spinner{
	width: 50px;
	height: 50px;
	border: 5px solid #ddd;
	border-top: 5px solid #000;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.filter-gear-block .filter-header {
	margin-bottom: 20px;
	border: 0;
}

.filter-gear-block .filter-header .filter-title {
	border: 0;
}

@keyframes spin{
	0%{transform:rotate(0deg);}
	100%{transform:rotate(360deg);}
}

/* Responsive */
@media (max-width: 768px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
	.passport-wrap {
		margin: 30px 0 60px;
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 16px;
		flex-direction: column;
	}

	.passport-choose,
	.help-text {
		max-width: 100%;
	}

	.submit-btn{
		margin: 40px auto 0;
	}
}



.password-wrapper {
	position: relative;
}

.password-wrapper input {
	width: 100%;
	padding-right: 45px;
}

.toggle-password {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	font-size: 18px;
	user-select: none;
}


.elementor-shortcode .custom-register-form .submit-btn {
	background-color: #11111142 !important;
	margin-left: auto !important;
	margin-right: auto !important;
	border: 0;
	color: #FFFFFF;
	max-width: 580px;
	width: 100%;
	height: auto;
	border-radius: 32px;
	padding: 18px;
	display: block;
}

.elementor-shortcode .custom-register-form .submit-btn:hover {
	background-color: #111111 !important;
	color: #FFFFFF;
}

.uploaded-file {
    margin-top: 10px;
    font-size: 14px;
    color: #6b6b6b;
}

.uploaded-file button {
    background: none;
    border: none;
    color: #b49b6b;
    cursor: pointer;
    margin-left: 10px;
    font-weight: 500;
	padding: 0 !important;
}

.uploaded-file button:hover {
	background-color: transparent !important;
    color: #b49b6b !important;
}

/* Pagination css */
/* Pagination wrapper */
.custom-pagination{
  margin: 30px 0 10px;
  display: flex;
  justify-content: center;
}

/* The <ul class="page-numbers"> */
.custom-pagination .page-numbers{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Each <li> */
.custom-pagination .page-numbers li{
  margin: 0;
  padding: 0;
}

/* Links + current page span */
.custom-pagination .page-numbers a,
.custom-pagination .page-numbers span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease;
}

/* Hover */
.custom-pagination .page-numbers a:hover{
  border-color: #222;
  transform: translateY(-1px);
}

/* Active/current page */
.custom-pagination .page-numbers .current{
  background: #222;
  color: #fff;
  border-color: #222;
  cursor: default;
}

/* Prev/Next a bit wider */
.custom-pagination .page-numbers .prev,
.custom-pagination .page-numbers .next{
  min-width: 70px;
}

/* Disabled prev/next (if WP outputs it as span) */
.custom-pagination .page-numbers span.prev,
.custom-pagination .page-numbers span.next{
  opacity: 0.45;
}

/* Mobile tighter */
@media (max-width: 480px){
  .custom-pagination .page-numbers{
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .custom-pagination .page-numbers a,
  .custom-pagination .page-numbers span{
    min-width: 34px;
    height: 34px;
    border-radius: 9px;
    padding: 0 10px;
  }
}

.field-error {
    color: red;
    font-size: 14px;
    margin-top: 6px;
}


/* ============================= */
/* PRODUCT GRID LAYOUT */
/* ============================= */

.custom-product-grid-single {
    display: grid;
    gap: 25px;
}

/* Columns Control */
.custom-product-grid-single.columns-2 { grid-template-columns: repeat(2, 1fr); }
.custom-product-grid-single.columns-3 { grid-template-columns: repeat(3, 1fr); }
.custom-product-grid-single.columns-4 { grid-template-columns: repeat(4, 1fr); }
.custom-product-grid-single.columns-5 { grid-template-columns: repeat(5, 1fr); }
.custom-product-grid-single.columns-6 { grid-template-columns: repeat(6, 1fr); }

/* Responsive */
@media (max-width: 1200px) {
    .custom-product-grid-single { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 992px) {
    .custom-product-grid-single { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 576px) {
    .custom-product-grid-single { grid-template-columns: repeat(1, 1fr) !important; }
	
	.may-like .custom-product-grid-single { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 767px) {
	.flatpickr-calendar {
    	width: 100% !important;
    	max-width: 100% !important;
	}

	.flatpickr-days {
    	width: 100% !important;
	}

	.flatpickr-innerContainer {
    	width: 100% !important;
	}
	
	.cat-item {
		width : 75px;
	}
}