/* --- Gallery --- */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1720px;   /* Wider desktop experience */
    width: 95%;          /* Prevent edge-to-edge on ultra-wide screens */
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.car-gallery {
  margin-bottom: 20px;
}

.car-gallery__main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.car-gallery__main-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 12px;
  cursor: zoom-in;
}

.car-gallery__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.car-gallery__thumb {
  width: calc(20% - 8px);
  position: relative;
  cursor: pointer;
}

.car-gallery__thumb img {
    width: auto;
    height: 260px;
    border-radius: 10px;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
    margin: 0 auto;
    display: table;
}

.car-gallery__thumb:hover img {
  transform: scale(1.05);
}

.car-gallery__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 10px;
}

/* --- Fullscreen Modal --- */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.gallery-modal.active {
  display: block;
}

.gallery-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.gallery-modal__content {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #111;
  color: #fff;
  z-index: 10000;
}

/* Header stays pinned */
.gallery-modal__header {
  position: sticky;
  top: 0;
  background: #111;
  z-index: 10;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-modal__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin: 0px;
}

.gallery-modal__close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s;
}

.gallery-modal__close:hover {
  opacity: 0.7;
}

/* Scrollable body */
.gallery-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 30px 15px;
  height: 100vh;
}

.gallery-modal__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery-modal__item img {
width: auto;
    height: 150px;
    margin: 0 auto;
    border-radius: 10px;
    transition: transform 0.2s 
ease-in-out;
    display: table;
}

.gallery-modal__item:hover img {
  transform: scale(1.05);
}



.cookies-card__content {
	color:#fff;
}

.category-area {
	background-color:#f5f5f5;
}

.action-category-item {
	box-shadow:0 0 0 1px hsl(203.77deg 94.64% 21.96% / 24%);
	background:#fff;
}
.action-category-item .svg-color {
    stroke: #181411;
}

.action-category-item__text .site-title {
    margin-top: 0px;
    color: hsl(203.65deg 94.55% 21.57%);
	font-size:17px;
}

.action-category-item:hover .action-category-item__icon i {
	color:hsl(var(--base));
} 

.action-category-item:hover .svg-color {
    stroke: hsl(var(--base));
}
.products-section {
	padding-top:60px;
}

.product {
    border-radius: 8px;
    padding: 0;
    border: 0px;
	border-radius:0px;
    transition: all 0.4s ease-in-out;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 1px 20px #e0e0e0;
}
.product__thumb {
	border-radius:0px;	
	margin-top:1px;
	margin-bottom: 0px;
}
.product__thumb a img {
    border-radius: 0;
    width: 100%;
    height: 242px;
    margin: 0;
    object-fit: cover; /* or 'contain' depending on your needs */
    display: block;
}
.product:hover {
    border: 0px;
    transform: translateY(-3px);
    box-shadow: 0px 1px 30px #999999;
}
.product__top {
	padding:5px 20px 20px 20px;
	    margin-bottom: 0px;
}
.site-title {
	color: hsl(203.77deg 94.64% 21.96%);
}

.product__price {
display: block;
    font-size: 22px;
    font-weight: 600;
    color: hsl(203.77deg 94.64% 21.96%);
    padding: 0px 8px;
    background: hsl(var(--white) / 0.08);
    border-radius: 4px;
    transition: 0.3s all;
    margin: 0px;
    min-width: 30%;
}
.product__body .price-item .price-title {
	color:#000;
}
.product__body {
	padding:0px 20px;
	margin-bottom:10px;
}
.product__bottom {
	padding:0px 20px;
	margin-bottom:20px;
}
.product-btn  {
	color:#fff;
}
.uppcoming {
	padding-top:60px;
    background-color: #f5f5f5;
}

.form--control {
	color:#000;
}
.contact-left-wrap textarea.form--control {
    height: 150px;
    padding: 20px 20px;
}
.blog-sidebar-wrapper.product-sidebar .blog-sidebar {
    background: #fff;
    box-shadow: 0px 1px 20px #dadada;
    border-radius: 0px;
}

.blog-sidebar-wrapper.product-sidebar .blog-sidebar__title {
	color:hsl(203.65deg 94.55% 21.57%) !important;
}
.blog-sidebar-wrapper.product-sidebar .blog-sidebar .side-bar-item {
    background: transparent;
    border-bottom: 1px solid #dadada;
    padding: 20px;
    border-radius: 0px;
    margin: 0px;
}

input.first-slider-value:focus, input.second-slider-value:focus, input.first-slider-value, input.second-slider-value {
		color:hsl(203.65deg 94.55% 21.57%) !important;

}

.swiper {
	width: 100%;
	height: auto;
	position:relative;
	display:block;
}
.swiper-slide a {
	display:block;
	width:100%;
}
.swiper-slide a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

  /* Set slider background */
.swiper {
  background-color: black;
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
color: #fff !important;
background: #0000007a;
padding: 30px 20px;
border-radius: 5px;
}

/* Pagination dots */
.swiper-pagination-bullet {
  background: white;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}
.blog-sidebar .btn {
	font-size:15px;
}

.custom--modal .modal-footer .btn--sm.btn.btn--base.outline {
	border:none;
}
.custom--modal .modal-body input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
    -webkit-text-fill-color: hsl(0deg 0% 0%) !important;
    font-size: 16px;
}
.account-form .form--control[type=password] {
	color:#000;
}
.account-form .form--label, .input-group.country-code .input-group-text {
	color:#000;
}
.account-form {
    border: 1px solid hsl(var(--white) / 0.08);
    background-color: #fff;
    padding: 30px;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0px 1px 10px #dadada;
}

.input-group.country-code .input-group-text {
	background:#fafafa;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.dashboard-header-wrap {
    border: 1px solid hsl(var(--white) / 0.08);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0px 1px 10px #dadada;
}

.dashboard-header-wrap .header-left h3 {
    color: #000;
}
.header-right a, .header-right .fas {
	color:#000 !important;
}
.header-right a:hover, .header-right a:hover .fas {
	color:hsl(var(--base-two)) !important
}

.dashboard_profile {
    background-color: #fff;
    box-shadow: 0px 1px 10px #dadada;
}
.dashboard_profile_wrap {
	padding:0px;
}
.dashboard_profile .logo-wrapper img {
    width: 200px;
    margin: 20px auto 0px auto;
    display: table;
}
.dashboard_profile .sidebar-menu-list__link {
    color: #000;
    border-bottom: 1px solid #efefef;
}

.dashboard-item-wrap .action-category-item {
    border-radius: 0px !important;
    background: #fff;
    border: none;
    box-shadow: 0px 1px 10px #dadada;
}
.sidebar-submenu-list__link {
	color:#000;
}
.apexcharts-wrap .apexcharts-legend-text {
    color: #000 !important;
}
.apexcharts-wrap .apexcharts-yaxis-texts-g text {
	fill:#000 !important;
}

.list--group--item {
	background: #f7f7f7;
    color: #000;
    border: 1px solid #e3e3e3;
}
.dashboard-boarder .form--label {
	color:#000;
}

.profile-left__contact .action-category-item__text .site-title {
	color:#000;
}
.profile-right-wrap .form--label {
	color:#000;
}
.timer_body {
	display: block;
    position: relative;
    float: none;
    margin-top: 10px;
    width: 100%;
    padding: 0px;
}
.buy_now::before {
	content: '';
    background-image: url(/assets/images/buynow.svg);
    width: 42.43px;
    height: 57.3px;
    background-size: 100% 100%;
    position: absolute;
    top: 0px;
    right: 5px;
}
.buy_now {
	display:block;
	background: #fff;
    box-shadow: 0px 1px 20px #dadada;
    border-radius: 0px;
}
.buy_now .descriptor {
	font-size: 12px;
    line-height: 17px;
    margin-top: 10px;
    border: 2px dashed #dadada;
    background: #f5fdff;
    padding: 10px 10px;
}
.products-container {
    padding:0px 40px;
}
/* 📦 Product image consistency */
.container.products-container {
	max-width: 1400px; /* wider than Bootstrap default (1140px) */
	width: 95%; /* fallback for smaller viewports */
	margin: 0 auto;
}
.breadcumb {
    position: relative;
    padding: 130px 0 20px;
    z-index: 1;
}
/* 🖼️ Product image wrapper */
.product-card__thumb {
	position: relative;
	width: 100%;
	height: 240px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius:0px;
	border-bottom: 5px solid #BB141A;
}

/* 🌫️ Blurred background behind each product */
.product-card__thumb::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: var(--bg-url);
	background-size: cover;
	background-position: center;
	filter: blur(12px);
	transform: scale(1.2);
	z-index: 0;
}

/* Foreground image */
.product-card__thumb img {
	position: relative;
	z-index: 1;
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	transition: transform 0.3s ease;
}

.product-card__thumb:hover img {
	transform: scale(1.05);
}

/* 🕒 Timer tag */
.auction-timer {
	font-size: 0.85rem;
	border-top-right-radius: 6px;
	z-index: 2;
	position: absolute;
}
.search-bar {
	position:relative;
}
.search-bar input {
	background: #fafafa;
    border: 1px solid #ced4da;
    border-radius: 25px;
    padding: 15px 15px 15px 60px;
	font-size:18px;
}
.search-bar i {
	font-size: 20px;
    position: absolute;
    top: 18px;
    left: 25px;
    color: #6c757d;
}
/* 🧭 Filter Row Layout */
.filter-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	width: 100%;
}

/* 🧩 Left Section: Category + Price */
.filter-left {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1 1 auto;
	min-width: 0; /* prevent overflow */
}

/* 🎚️ Category select */
#categoryFilter {
	flex: 0 1 280px;
}

/* 💲 Min/Max Price */
.price-filters {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex: 0 1 auto;
}
.price-filters input {
	width: 120px;
}

/* 🧮 Sort (right aligned) */
.filter-right {
	flex-shrink: 0;
	margin-left: auto;
}
#sortFilter {
	min-width: 180px;
}
.filter-bg {
	background: #fff;
    padding: 20px 20px 5px 20px;
    box-shadow: 0px 1px 3px #dadada;
    margin-bottom: 30px;
}
.pd-cat {
	font-size: 12px;
    display: block;
    text-align: center;
    width: 100%;
    margin: 0px;
    padding: 0px;
	color:#555;
}
.pd-cat i {
	color:#777;
}
/* ✨ Inputs style */
.filter-row .form-select,
.filter-row .form-control {
	height: 48px;
	font-size: 15px;
	border-radius: 8px;
	color: #000;
}

/* 🖋️ Placeholder color */
.filter-row .form-control::placeholder,
.filter-row .form-control::-webkit-input-placeholder,
.filter-row .form-control:-ms-input-placeholder,
.filter-row .form-control::-ms-input-placeholder {
	color: #000;
	opacity: 1;
}
.auction-timer {
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	background: #BB141A;
	border-radius: 5px;
	font-weight: 500;
	font-size: 16px;
	white-space: nowrap;
}
.product-card__body h6 {
	font-size:18px;
	text-align:center;
}
.catalog-btn {
	display: inline-flex; /* ✅ use flex for icon + text alignment */
	align-items: center;
	justify-content: center;
	gap: 10px; /* space between icon, text, and price */
	background-color: #BB141A;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	padding: 10px 15px;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.2s ease;
	border: none;
	width: auto; /* auto-size based on content */
	margin: 0 auto; /* ✅ centers the button horizontally in parent */
}

/* Hover effect */
.catalog-btn:hover {
	background-color: #b71c1c;
	transform: translateY(-2px);
	color: #fff;
}

/* Optional: Center the button container */
.text-center .catalog-btn,
.catalog-btn-wrapper {
	display: flex;
	justify-content: center; /* ✅ ensures centering within a wrapper */
}
.home-btn {
	margin:40px auto 0px auto;
	float:none;
	display:table;
}
.custom--modal .modal-content {
    background-color: #ffffff !important;
    border-radius: 10px !important;
}
.custom--modal .modal-title {
	color:#000 !important;
}
.custom--modal .modal .form--control {
    background: #ededed !important;
}
.custom--modal .modal-footer .btn--sm.btn.btn--base.outline {
	color:#000 !important; 
}
.breadcumb__title
{
	color:#000;
}
.bidding-form {
	display:none;
	background: hsl(var(--base-two));
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    margin: 0 auto;
    font-size: 13px;
}
.product-details .table tbody tr:last-child td:last-child {
	border-left:1px solid hsl(var(--base)/0.1);
}
.product-details .table tbody tr:last-child td:first-child {
	border-right:1px solid hsl(var(--base)/0.1);
}
/* 🧩 Responsive product image sizes */
@media (max-width: 1200px) {
	.product-card__thumb {
		height: 220px;
	}
	.container.products-container {
		max-width: 1200px;
	}
}

@media (max-width: 992px) {
	#bidding-form {
		margin-top:20px;
	}
	.bidding-form {
		    display: table;
	}
	#categoryFilter {
		flex: 0 1 50px;
	}
	.filter-right {
		margin-left:0px;
	}
	.filter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-left {
		width: 100%;
		flex-direction: column;
	}

	#categoryFilter,
	.price-filters input,
	#sortFilter {
		width: 100%;
	}

	.price-filters input {
		width: 100%;
	}
	.product-card__thumb {
		height: 200px;
	}
	.container.products-container {
		max-width: 960px;
	}
}

@media (max-width: 768px) {
	.product-card__thumb {
		height: 210px;
	}
	.container.products-container {
		max-width: 720px;
	}
}

@media (max-width: 576px) {
	.product-card__thumb {
		height: 160px;
	}
	.container.products-container {
		max-width: 100%;
		padding: 0 10px;
	}
}


@media(max-width:900px) {
    .breadcumb__title {
     font-size:23px;
    }   
    .breadcumb__list {
     display:none;   
    }
    .breadcumb {
     padding: 90px 0 10px;
    }
    .car-gallery__thumb img {
        width: auto;
        height: 60px;
    }
}


@media (max-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding-left: 12px;
        padding-right: 12px;
    }
}
@media screen and (max-width: 575px) {
    .header-wrapper .logo-wrapper img {
        width: auto;
        height: 34px;
    }
}