.selling-price-text {
	color: #FF520C;
	font-size: 14px;
	line-height: 16.94px;
}

.product-list-card{
	border: 1px solid #ECECEC;
	border-radius: 15px;
}

.product-list-filter{
	border: 1px solid #ECECEC;
	padding: 15px;
	border-radius: 10px;
}

.input-group>.form-control:not(:last-child),
.input-group>.custom-select:not(:last-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.form-control {
	padding: 0.3rem !important;
}

.products-group {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -0.75rem;
	list-style: none;
	padding: 0;
}

.products-group .product-item {
	padding: 0 0.75rem;
	margin-bottom: 1.5rem;
	flex: 0 0 16.666%;
}

.img-wrap {
	position: relative;
}

.fav-badge {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	background: rgba(255, 255, 255, 0.8);
	padding: 0.25rem;
	border-radius: 50%;
	font-size: 1.25rem;
	color: #e74c3c;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .2s;
}

.fav-badge:hover {
	background: rgba(255, 255, 255, 1);
}

#loadMore {
	background-color: #007bff;
	border: none;
	color: white;
	border-radius: 50px;
	padding: 0.5rem 1.5rem;
	font-size: 1rem;
	cursor: pointer;
}

#loadMore:hover {
	background-color: #0056b3;
}



.input-group>.form-control:not(:last-child),
.input-group>.custom-select:not(:last-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.form-control {
	padding: 0.3rem !important;
}

.product-item {
	margin-bottom: 1.5rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}

.img-wrap {
	position: relative;
}

.fav-badge {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0.25rem;
	border-radius: 50%;
	font-size: 1.25rem;
	color: #000;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color .2s;
}

.products-group {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	/* Adjust gap for consistent spacing between items */
	gap: 1rem;
	/* Reduced gap for more compact layout */
}

.single-line-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-card .item-sub-cat-fs-fw {
	font-size: 0.625rem;
	font-weight: 400;
}

.item-card .item-name-fs-fw {
	font-size: 0.875rem;
	font-weight: 400;
}

.item-card .item-price-fs-fw {
	font-size: 0.875rem;
	font-weight: 500;
}

.item-card .img-wrapper {
	position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-card img {
    display: block;
    width: auto;
    height: 130px;
    object-fit: cover;
}

.gap-for-5-card {
	gap: 2rem !important;
}

.gap.for-6-card {
	gap: 1rem !important;
}

.max-width-for-5-card {
	max-width: calc(20% - 1rem) !important;
}

/* 5 items per row */
.col-5th {
    flex: 0 0 20%;
    max-width: 20%;
}

/* Tablet */
@media (max-width: 991.98px) {
    .col-5th {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .col-5th {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .col-5th {
        flex: 0 0 100%;
        max-width: 100%;
    }
}