	.results-header {
		font-size: 50px;
		font-weight: 600;
		text-align: center;
		padding-top: 30px;
		padding-bottom: -20px;
		color: #231F20;
		font-family: 'Assistant', sans-serif;

		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
	}


	.mobileheader {
		font-size: 35px;
		justify-content: center;
		display: flex;
		align-items: center;
		text-align: center;
	}

	/***** Month Navigation (Header) *****/
	.month-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px;
	}

	.month-year {
		font-size: 18px;
		font-weight: bold;
	}

	.prev-month,
	.next-month {
		font-size: 18px;
		cursor: pointer;
		padding: 4px 8px;
		color: #00B3DC;
		transition: background-color 0.3s;
	}

	.prev-month:hover,
	.next-month:hover {
		background-color: #f0f0f0;
		border-radius: 4px;
	}

	/***** Day Names (SUN, MON, TUE...) *****/
	.day-names {
		display: grid;
		grid-template-columns: repeat(7, 1fr);
		text-align: center;
		font-weight: bold;
		padding: 0 10px;
		margin-bottom: 5px;
	}

	.day-names span {
		padding: 8px 0;
		color: #333;
	}

	/***** Days Grid *****/
	.days-grid {
		display: grid;
		grid-template-columns: repeat(7, 1fr);
		text-align: center;
		padding: 0 10px;
		gap: 10px 0;
	}

	/***** Individual Day Cells *****/
	.days-grid div {
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin: 0 auto;
		border-radius: 50%;
		cursor: pointer;
		transition: background-color 0.3s, color 0.3s;
	}

	/* Normal days */
	.days-grid div:not(.disabled) {
		color: #000;
	}

	/* Hover effect */
	.days-grid div:not(.disabled):hover {
		background-color: #E2FAFF;
	}

	/* Selected day style */
	.days-grid .selected {
		background-color: #00B3DC;
		color: #fff;
	}

	/* Days from previous/next month (grayed out) */
	.disabled {
		color: #bbb;
		cursor: default;
	}

	@media (max-width: 992px) {
		.related-deals-section {
			padding: 20px 20px 70px 20px !important;
			/* Adjusted padding for mobile */
		}

		.filter-modal-content {
			margin-top: 70px;
			/* Adjust as needed to clear the navbar */
			position: relative;
		}
	}

	@media (max-width: 992px) {
		.results-header {
			font-size: 35px;

		}

		.filter-modal-content {
			margin-top: 60px;
			/* Enough space for the navbar */
			position: relative;
		}


		/* If the .filter-header is interfering, ensure it has some margin-right */
		.filter-header {}
	}

	/* --- Mobile Styles (max-width: 768px) --- */
	@media (max-width: 768px) {

		/* Hide desktop filter sidebar */
		.desktop-filter-sidebar {
			display: none;
		}

		.mobile-filter-bar {
			cursor: pointer;
			position: fixed;
			width:100%;
			top: 58px;
			/* Sticky at the top when scrolling */
			margin-top: 0px;
			/* Start 50px below section top */
			z-index: 99;
			background: #00B3DC;
			box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.15);
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			padding: 15px 20px;
		}

		.mobile-filter-right {
			display: flex;
			align-items: center;
			gap: 8px;
		}

		.filter-icon {
			width: 20px;
			height: 20px;
		}

		#filterArrow {
			width: 20px;
			height: 20px;
		}

		/* Mobile Filter Modal */
		.filter-modal {
			position: fixed;
			top: 0;
			left: 0;
			width: 100vw;
			hegith: 100vh;
			background: #fff;
			display: none;
			/* Initially closed */
			z-index: 10000;
			overflow-y: auto;
			padding: 20px;
			
			
		}

		.filter-modal-content {
			background: #fff;
			width: 100%;
			max-width: 85vh;
			margin: 60px auto 0 auto;
			/* Space from top */
			border-radius: 8px;
			position: relative;
			max-height: 80vh;
			overflow: scroll;
		}

		.close-filter {
			position: absolute;
			top: 10px;
			left: 15px;
			background: none;
			border: none;
			font-size: 30px;
			color: #00B3DC;
			cursor: pointer;
			z-index: 2;
			width: 30px;
			height: auto;
		}
	}

	@media (min-width: 992px) {

		.mobile-filter-bar,
		.filter-modal {
			display: none !important;
		}
	}

	@media (max-width: 768px) {
		.related-deals-section {
			padding: 20px 20px 50px 20px !important;
			/* Adjusted padding for mobile */
		}
	}


	/* ✅ General Section Styling */
	.related-deals-section {
		padding: 20px 40px 70px 40px;
	}

	.related-deals-wrapper {
		display: flex;
		gap: 50px;
		align-items: flex-start;
	}


	/* ✅ Deals Section */
	.search-deals-container {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	/* ✅ Deal Card (Styled like Deals Slider) */
	.search-deal-card {
		background: white;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
		text-align: center;
		display: flex;
		flex-direction: column;
		padding-bottom: 15px;
		position: relative;
	}

	.search-deal-card-row {
		background: white;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
		text-align: center;
		display: flex;
		flex-direction: row-reverse;
		/* padding-bottom: 15px; */
		position: relative;
	}

	.search-deal-card-row:hover  {
		cursor: pointer;
	}

	.search-deal-card:hover {
		cursor: pointer;
	}

	.search-deal-img-wrapper {
		width: 100%;
		aspect-ratio: 160 / 90;
		/* ✅ Keeps proportional ratio */
		overflow: hidden;
		border-radius: 12px 12px 0 0;
		display: flex;
		justify-content: center;
		position:relative;
		/* align-items: center; */
	}

	.search-deal-img-wrapper-bar {
		width: 100%;
		max-width:250px;
		aspect-ratio: 160 / 90;
		overflow: hidden;
		/* border-radius: 12px 12px 0 0; */
		display: flex;
		justify-content: center;
		position: relative;
		/* align-items: center;*/
	}

	.deal-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.3s ease-in-out;
	}

	.search-deal-card:hover .deal-img {
		transform: scale(1.1);
	}

	.search-deal-card-row:hover .deal-img {
		transform: scale(1.1);
	}

	.deal-content {
		padding: 20px;
		flex-grow: 1;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.deal-title {
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 8px;
		color: #231F20;
		transition: color 0.3s ease-in-out;
	}
	
	.deal-title-bar {
		text-align:right;
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 8px;
		color: #231F20;
		transition: color 0.3s ease-in-out;
	}

	.deal-desc {
		font-size: 16px;
		color: #6c757d;
		margin-bottom: 12px;
	}

	/* ensure border-box so borders are inside the element’s box */
	.deal-link {
		display: inline-block;
		padding: 5px 10px;
		margin: 0 auto;
		/* centers in the flex container */
		text-decoration: none;
		font-family: Assistant, sans-serif;
		font-size: 20.858px;
		line-height: 30.338px;
		color: #7B7B7B;

		box-sizing: border-box;
		/* include border in the element’s width */
		border: 2px solid transparent;
		/* transparent border all around */
		border-bottom-color: #EB8F23;
		/* only bottom is visible */
		border-radius: 0;
		/* no rounding initially */

		transition:
			border-color 0.3s ease-in-out,
			color 0.3s ease-in-out,
			border-radius 0.3s ease-in-out;
	}

	.search-deal-card:hover .deal-link {
		/* match your .deal-link:hover styles */
		border-color: #EB8F23;
		/* color all four sides */
		color: #EB8F23;
		border-radius: 10px;
		/* round all corners */
		background-color: white;
		/* keep white bg */
		cursor: pointer;
	}

	.search-deal-card-row:hover .deal-link {
		/* match your .deal-link:hover styles */
		border-color: #EB8F23;
		/* color all four sides */
		color: #EB8F23;
		border-radius: 10px;
		/* round all corners */
		background-color: white;
		/* keep white bg */
		cursor: pointer;
	}
		

	/* ✅ Responsive Design */
	@media (max-width: 992px) {
		.related-deals-wrapper {
			flex-direction: column;
		}

		.filter-sidebar {
			width: 100%;
		}

		.search-deals-container {
			width: 100%;
			grid-template-columns: repeat(2, 1fr);
		}
	}

	@media (max-width: 768px) {
		.search-deals-container {
			grid-template-columns: 1fr;
		}
	}

	/* ✅ Sidebar Styling */
	.filter-sidebar {
		direction: rtl;
		width: 100%;
		max-width: 350px;
		background: var(--Main-light-blue, #E8F5FF);
		padding: 20px 10px;
		border-radius: 10px;
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
		font-family: 'Assistant', sans-serif;
	}

	/* ✅ Sidebar Styling – Responsive */
	.filter-sidebar {
		direction: rtl;
		width: 100%;
		max-width: 350px;
		min-width: 260px;
		flex: 1 1 30%;
		/* Grow/shrink with content */
		padding: 20px 10px;
		border-radius: 10px;
		box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
		font-family: 'Assistant', sans-serif;
	}


	.filter-group {
		margin: 40px 0;
		padding-bottom: 15px;
		border-bottom: 1px solid #DDE2E5;
	}

	.filter-group:last-child {
		border-bottom: none;
	}

	.filter-subtitle {
		display: flex;
		align-items: center;
		font-size: 22px;
		font-weight: bold;
		color: #333;
		margin-bottom: 20px;
		gap: 12px;
	}

	.filter-subtitle img {
		width: 20px;
		height: 20px;
	}

	.filter-options {
		display: flex;
		flex-wrap: wrap;
		/* ✅ Allows wrapping to next row */
		gap: 12px;
		justify-content: flex-start;
		/* Ensures they align properly */
	}

	/* Filter Button Default Style */
	.filter-btn {
		background: #fff;
		border: 1.714px solid #00B3DC;
		color: #000;
		border-radius: 42.857px;
		padding: 10px 18px;
		font-size: 16px;
		/* Updated font-size */
		font-weight: 600;
		/* Updated font-weight */
		text-align: center;
		font-family: 'Assistant', sans-serif;
		line-height: 100%;
		transition: all 0.3s ease;
		cursor: pointer;
		white-space: nowrap;
	}

	/* Hover state: show blue text */
	.filter-btn:hover {
		color: #00B3DC;
	}

	/* Active state (picked) */
	.filter-btn.active {
		background: #00B3DC;
		color: #fff;
		border: 1.714px solid #00B3DC;
	}




	.price-range {
		margin: 40px 0;
		background: #E2FAFF;
		padding: 20px;
		border-radius: 10px;
	}

	.price-slider-container {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.price-label {
		font-size: 20px;
		font-weight: bold;
		color: #333;
	}

	.price-slider {
		width: 100%;
		-webkit-appearance: none;
		height: 8px;
		border-radius: 3px;
		background: white;
		outline: none;
	}

	.price-slider::-webkit-slider-thumb {
		-webkit-appearance: none;
		width: 20px;
		height: 20px;
		background: #00B3DC;
		border-radius: 50%;
		cursor: pointer;
		filter: drop-shadow(0px 1px 13.3px #B0F0FF);
	}


	/* ✅ Responsive Design */
	@media (max-width: 992px) {
		.filter-sidebar {
			width: 100%;
		}

		.filter-options {
			justify-content: start;
		}
	}

	@media (max-width: 992px) {
		.filter-btn {
			font-size: 14px !important;
		}
	}

	@media (max-width: 992px) {
		.filter-btn {
			text-align: center;
		}
	}

	/* Date Range Wrapper */
	.date-range-wrapper {
		justify-content: flex-start;
		/* Align to right */
		gap: 20px;
		direction: rtl;
		/* RTL layout */
	}

	/* Wrapper to Position Arrow Inside */
	.date-picker-wrapper {
		position: relative;
		display: inline-block;
	}

	/* Date Input Styling */
	.date-input {
		margin: 15px 0px;
		padding: 8px 40px 8px 12px;
		/* Adjusted padding to make space for the arrow */
		font-size: 14px;
		font-weight: 700;
		color: #231F20 !important;
		background: #fff !important;
		border: 1.714px solid #00B3DC;
		border-radius: 42.857px;
		text-align: right;
		cursor: pointer;
		width: 140px;
		direction: rtl;
		opacity: 1 !important;
		font-family: 'Assistant', sans-serif !important;
		-webkit-appearance: none;
		appearance: none;
		text-shadow: none !important;
	}

	/* Date Arrow Inside the Input */
	.date-arrow {
		position: absolute;
		right: 12px;
		top: 50%;
		transform: translateY(-50%);
		font-size: 14px;
		color: #00B3DC;
		pointer-events: none;
		/* Prevents clicking on the arrow */
	}

	/* Ensure Placeholder Text is Strong */
	.date-input::placeholder {
		color: #000 !important;
		font-weight: 700;
	}

	/* Flatpickr Custom Overrides */
	.flatpickr-input {
		font-weight: 700 !important;
		color: #231F20 !important;
	}




	/* ==================== */
	/*   FLATPICKR OVERRIDES */
	/* ==================== */
	/************************************
	WRAPPER & BASIC FLATPICKR OVERRIDES
	*************************************/
	.custom-calendar-wrapper {
		/* Center it, optional */
		display: flex;
		justify-content: center;
		margin: 20px;
	}

	.flatpickr-calendar {
		width: 300px;
		/* Adjust to your desired width */
		border: none;
		box-shadow: none;
		/* remove default Flatpickr shadow */
		font-family: 'Assistant', sans-serif;
		border-radius: 0;
	}

	.flatpickr-calendar {
		z-index: 10000 !important;
	}

	@media (max-width: 991px) {
		.mobileheader {
			text-align: center !important;
			display: block;
			width: 100%;
		}
	}

	/* Removes the default top border under the month */
	.flatpickr-months {
		border-bottom: none !important;
	}

	/***********************************************
	MONTH NAVIGATION (HIDE DEFAULT ARROWS, ADD YOURS)
	***********************************************/
	.flatpickr-prev-month svg,
	.flatpickr-next-month svg {
		display: none !important;
		/* Hide default arrow icons */
	}

	/* Example: add custom arrow images or simple text glyphs */
	.flatpickr-prev-month::before {
		content: "‹";
		/* or use `url("leftArrow.svg")` */
		font-size: 24px;
		color: #00B3DC;
		cursor: pointer;
		margin-right: 10px;
	}

	.flatpickr-next-month::before {
		content: "›";
		/* or use `url("rightArrow.svg")` */
		font-size: 24px;
		color: #00B3DC;
		cursor: pointer;
		margin-left: 10px;
	}

	/***********************************************
	MONTH-YEAR DISPLAY
	***********************************************/
	.flatpickr-month {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-grow: 1;
	}

	.flatpickr-month .cur-month {
		font-size: 18px;
		font-weight: bold;
		color: #333;
		margin: 0 8px;
	}

	.numInputWrapper {
		display: none !important;
		/* Hide the year input if you only want the month text */
	}

	/***********************************************
	WEEKDAY HEADER (SUN, MON, TUE, etc.)
	***********************************************/
	.flatpickr-weekdays {
		background: transparent;
		margin-top: 10px;
	}

	.flatpickr-weekday {
		color: #333;
		font-size: 14px;
		font-weight: 600;
		text-transform: uppercase;
		/* If you want uppercase day names */
	}

	/***********************************************
	DAYS GRID
	***********************************************/
	.flatpickr-days {
		margin-top: 10px;
	}

	/* Each day cell */
	.flatpickr-day {
		width: 40px;
		height: 40px;
		line-height: 40px;
		margin: 0 auto;
		border-radius: 50%;
		cursor: pointer;
		transition: background-color 0.2s, color 0.2s;
		font-size: 14px;
		color: #000;
		/* normal day color */
	}

	/* Hover effect: lighter blue background */
	.flatpickr-day:hover {
		background: #E2FAFF;
	}

	/***********************************************
	TODAY & SELECTED STATES
	***********************************************/
	/* "Today" highlight (unselected) */
	.flatpickr-day.today:not(.selected) {
		color: #00B3DC;
		/* highlight the text or circle if you prefer */
		font-weight: bold;
		border: 2px solid #00B3DC;
	}

	/* Selected day: blue circle with white text */
	.flatpickr-day.selected {
		background: #00B3DC !important;
		color: #fff !important;
	}

	/***********************************************
	DISABLED OR OUT-OF-RANGE DAYS
	***********************************************/
	.flatpickr-day.disabled,
	.flatpickr-day.prevMonthDay,
	.flatpickr-day.nextMonthDay {
		color: #bbb !important;
		cursor: default;
		opacity: 0.6;
	}

	@media (max-width: 991px) {


		/* Modal overlay: darken the background */
		.filter-modal {
			display: flex;
			/* Use flex to center content */
			align-items: start;
			/* Center vertically */
			justify-content: start;
			/* Center horizontally */
			background: rgba(0, 0, 0, 0.3);
			/* Dark overlay (30% opacity) */
			padding: 20px;
		}




	}

	/* Center the Search Button */
	.filterSearchBtn {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 80%;
		/* Adjust width to make it look balanced */
		padding: 20px 20px !important;
		font-size: 18px !important;
		border-radius: 8px;
		font-weight: bold;
		background: #00B3DC;
		color: #fff;
		border: none;
		margin: 20px auto;
		/* Centers the button */
		text-align: center;
	}


	@media (max-width: 1500px) and (min-width: 992px) {
		.search-deals-container {
			grid-template-columns: repeat(2, 1fr);
		}
	}

	.info-row {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		flex-wrap: nowrap;
		margin-bottom: 0.5rem;
	}

	.icon-wrapper {
		width: 20px;
		min-width: 20px;
		height: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}

	.icon-wrapper svg {
		width: 100%;
		height: 100%;
		display: block;
	}

	.info-label,
	.info-text {
		font-size: 1rem;
		line-height: 1.4;
		vertical-align: middle;
		display: inline-block;
	}

	.date-location-wrapper {
		display: flex;
		flex-wrap: wrap;
		gap: 1rem;
	}

	.date-location-wrapper .info-row {
		flex: 1 1 48%;
	}

	@media (max-width: 991px) {
		.date-location-wrapper .info-row {
			flex: 1 1 100%;
		}
	}

	/* make the search-deals-container flex when empty */
	.search-deals-container.no-search-deals-container {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		/* span full width */
		min-height: 50px;
		/* adjust as needed */
	}

	/* style the message */
	.search-deals-container.no-search-deals-container .no-deals {
		margin: 0;
		text-align: center;
		font-size: 50px;
		color: #231F20;
	}

	/* smaller font on mobile */
	@media (max-width: 768px) {
		.city-dropdown summary {

			font-size: 14px;

		}

		.search-deals-container.no-search-deals-container .no-deals {
			font-size: 35px;
		}
	}

	.city-dropdown {
		position: relative;
		display: inline-block;
		width: fit-content;
	}

	.city-dropdown summary {
		list-style: none;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		background: #fff;
		border: 1.714px solid #00B3DC;
		border-radius: 42.857px;
		padding: 5px 18px 5px 18px;
		font-size: 16px;
		font-weight: 600;
		color: #000;
		font-family: 'Assistant', sans-serif;
		cursor: pointer;
		white-space: nowrap;
	}

	.city-dropdown summary::-webkit-details-marker {
		display: none;
	}

	.city-dropdown summary img {
		width: 12px;
		height: 12px;
	}

	/* Dropdown list matches your .mobile-dropdown-list style */
	.city-dropdown[open] .mobile-dropdown-list {
		display: block;
	}

	.mobile-dropdown-list {
		display: none;
		position: absolute;
		top: calc(100% + 4px);
		left: 50%;
		transform: translateX(-50%);
		width: 80%;
		max-width: 300px;
		background: #fff;
		border: 1px solid #00A6CE;
		border-radius: 8px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
		list-style: none;
		padding: 0;
		margin: 0;
		z-index: 1000;
	}

	.mobile-dropdown-list li {
		border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	}

	.mobile-dropdown-list li:last-child {
		border-bottom: none;
	}

	.mobile-dropdown-list li a {
		display: block;
		padding: 12px 16px;
		font-size: 18px;
		color: #000;
		text-align: center;
		text-decoration: none;
		transition: background 0.2s ease;
	}

	.mobile-dropdown-list li a:hover {
		background: rgba(0, 166, 206, 0.1);
		color: #00A6CE;

	}

	.city-dropdown .mobile-dropdown-list {
		display: none;
	}

	.city-dropdown[open] .mobile-dropdown-list {
		display: block;
	}

	@media (min-width: 992px) {

		.mobile-filter-bar,
		.filter-modal {
			display: none !important;
		}
	}

	/* INSIDE STICKY: appears at bottom when scroll reaches it */
	.sticky-search-wrapper-inside {
		position: sticky;
		bottom: 0;
		background: var(--Main-light-blue, #E8F5FF);
		z-index: 3;
		display: flex;
		justify-content: center;
	}

	.sticky-search-wrapper-inside button {
		width: 80%;
		font-size: 18px;
		padding: 14px 25px;
		font-weight: bold;
		border-radius: 8px;
		background: #00B3DC;
		color: #fff;
		border: none;
	}


	.filter-modal-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 0 10px 0;
	}

	.modal-divider {
		border: none;
		height: 1px;
		background-color: #00B3DC;
		margin: 5px 0 20px 0;
		width: 100%;
		opacity: 1;
		/* ✅ full strength */

	}

	.list-menu li {
		list-style: none;
	}

	.accordion-body li {
		background: #fff;
		border: 1.714px solid #00B3DC;
		color: #000;
		border-radius: 42.857px;
		padding: 10px 18px;
		font-size: 16px;
		font-weight: 600;
		text-align: center;
		font-family: 'Assistant', sans-serif;
		line-height: 100%;
		transition: all 0.3s ease;
		cursor: pointer;
		white-space: nowrap;
		min-width: 125px;
	}

	.accordion-body li.clear-filter {
		background: #fff;
		border: 1.714px solid #eb8f23;
		color: #eb8f23;
		border-radius: 42.857px;
		padding: 10px 18px;
		font-size: 16px;
		font-weight: 600;
		text-align: center;
		font-family: 'Assistant', sans-serif;
		line-height: 100%;
		transition: all 0.3s ease;
		cursor: pointer;
		white-space: nowrap;
	}

	.accordion-button::after {
		margin-right: auto;
		margin-left: inherit;
	}

	.accordion-item {
		background: none;
		border: none;
	}

	.accordion-button {
		background-color: transparent;
	}

	.accordion-button:not(.collapsed) {
		background:transparent;
		border:none;
		box-shadow:none;
	}

	.filter-subtitle {
		margin-bottom: 0;
	}

	.accordion-body ul {
	display: flex;
	padding: 0;
	margin: 0;
	flex-wrap: wrap;
	gap: 10px;
	}

	 .accordion-body ul a{
		text-decoration:none;
		font-weight: 600;
	}

	.accordion-body .badge{
		color:black  !important;
	}

	.li-spec-title {
		margin-bottom: 5px;
	font-weight: bold;
	text-align: right;
	padding-right: 5px;
	color: #00B3DC;
	}

	.checkbox-inline-specs {
		cursor:pointer;
	}

	.search-header {
		color: #00A6CE;
		font-size: 28px;
	}

	.search-deals-container-bar {
		grid-template-columns: repeat(1, 1fr);
		
	}

	.search-deals-container-bar .deal-content {
		min-width: 50%;
	}

	.badge-stock {
		position: absolute;
		top: 10px;
		right: 10px;
	}

	.bg-warning-stock {
		background: rgb(235 143 35) !important;
	}

	.specs-checkboxes {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
	}
	
	.list-menu a:hover {
		background-color: initial;
		border-color: initial;
	}
	
	.flatpickr-current-month .numInputWrapper input.cur-year {
	  color: #000 !important;
	  background: transparent; /* in case the background is also white-on-white */
	}
	
	.flatpickr-current-month .numInputWrapper {
	  display: inline-flex !important;
	  align-items: center;
	}

	.flatpickr-current-month .numInputWrapper input.cur-year {
	  color: #000;
	  background-color: #fff;
	  width: 3rem;      /* adjust as needed */
	  text-align: center;
	}