.single-products-item {
	margin-bottom: 30px;
	position: relative;
	overflow: hidden;
}
.single-products-item img {
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.single-products-item .content {
	left: 40px;
	bottom: 60px;
	position: absolute;
}
.single-products-item .content h3 {
	font-size: 28px;
	margin-bottom: 6px;
}
.single-products-item .content span {
	display: block;
	font-size: 16px;
	color: var(--paragraphColor);
}
.single-products-item .content .default-btn {
	margin-top: 18px;
	color: var(--blackColor);
	background-color: var(--whiteColor);
	border: 1px solid var(--blackColor);
}
.single-products-item .content .default-btn:hover {
	background-color: #e82b2b;
	border-color: #e82b2b;
	color: var(--whiteColor);
}
.single-products-item:hover img {
	-webkit-transform: scale(1.04);
	transform: scale(1.04);
}

/*================================================
OS Limited Offer Area CSS
=================================================*/
.os-limited-offer-product {
	background-color: #fff8f0;
	text-align: center;
	padding: 30px;
	padding-bottom: 0;
	margin-bottom: 30px;
}
.os-limited-offer-product span {
	color: #67a504;
	display: block;
	margin-bottom: 10px;
	font-size: 25px;
	font-family: var(--headingFontFamily);
}
.os-limited-offer-product h3 {
	color: var(--blackColor);
	font-size: 40px;
	margin-bottom: 30px;
	font-weight: 900;
	letter-spacing: 5px;
	font-family: 'Inter', sans-serif;
}
.os-limited-offer-product #timer div {
	display: inline-block;
	background-color: var(--whiteColor);
	color: var(--blackColor);
	width: 80px;
	height: 80px;
	padding-top: 13px;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	margin-right: 7px;
	margin-bottom: 30px;
}
.os-limited-offer-product #timer div span {
	display: block;
	text-transform: capitalize;
	margin-top: -4px;
	margin-bottom: 6px;
	font-size: 15px;
	font-weight: normal;
	color: var(--blackColor);
}
.os-limited-offer-product #timer div:last-child::before {
	display: none;
}
.os-limited-offer-product #timer div:last-child::after {
	display: none;
}
.os-limited-offer-product .default-btn {
	margin-bottom: 30px;
}
.os-limited-offer-product .offer-product-img {
	text-align: center;
	margin-top: 20px;
}


.os-best-seller-content h2 {
	text-align: center;
	font-size: 36px;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	font-family: 'Inter', sans-serif;
	color: #000627;
}
.os-best-seller-content h2::before,
.os-best-seller-content h2::after {
	content: "";
	position: absolute;
	top: 20px;
	left: 0;
	width: 15%;
	height: 2px;
	background-color: #dde0e3;
	z-index: -1;
}
.os-best-seller-content h2::after {
	left: auto;
	right: 0;
}
.os-best-seller-content .row .os-single-latest-products {
	-webkit-transition: var(--transition);
	transition: var(--transition);
}
.os-best-seller-content .row:hover .os-single-latest-products {
	-webkit-filter: blur(2px);
	filter: blur(2px);
}
.os-best-seller-content .row:hover .os-single-latest-products:hover {
	-webkit-filter: blur(0);
	filter: blur(0);
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
    .os-limited-offer-product span {
		font-size: 20px;
	}
	.os-limited-offer-product h3 {
		font-size: 25px;
		letter-spacing: normal;
	}
	.os-limited-offer-product h3 img {
		display: none;
	}
    .os-best-seller-content h2 {
		font-size: 25px;
		margin-bottom: 20px;
	}
	.os-best-seller-content h2::before,
	.os-best-seller-content h2::after {
		display: none;
	}
}

/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .os-limited-offer-product span {
		font-size: 20px;
	}
	.os-limited-offer-product h3 {
		font-size: 25px;
		letter-spacing: normal;
	}
	.os-limited-offer-product h3 img {
		display: none;
	}
    .os-best-seller-content h2 {
		margin-bottom: 20px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.os-best-seller-content h2::before,
	.os-best-seller-content h2::after {
		display: none;
	}
}