/* @import url('https://fonts.googleapis.com/css2?family=Quattrocento+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap'); */
/* font-family: 'Quattrocento Sans', sans-serif; */
.offer-slider {
	/* height: 400px; */
	overflow: hidden;
	position: relative;
	border-radius: 10px;
}
.offer-slider .slick-dots {
	display: none !important;
}
.offer-slider .slick-arrow {
	transition: all 0.3s ease-in-out;
}
.offer-slider .slick-arrow:hover {
	background: #f12711; /* fallback for old browsers */
	background: -webkit-linear-gradient(
    to right,
    #f5af19,
    #f12711
	); /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(
    to right,
    #f5af19,
    #f12711
	); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.offer-slider .slick-next {
	right: 10px;
}
.offer-slider .slick-prev {
	left: 10px;
}
.offer-slider .slide {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	display: none;
	padding: 0 15px;
	animation: slide 2s ease;
}
@keyframes slide {
	0% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
.offer-slider .slide.active {
	display: block;
}
.offer-slider .arrow-control {
	position: absolute;
	z-index: 200;
	top: 50%;
	height: 40px;
	width: 40px;
	margin-top: -20px;
	color: var(--white);
	background-color: var(--theme-color);
	text-align: center;
	line-height: 40px;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.5s ease;
	border-radius: 5px;
}
.offer-slider .arrow-control.prev {
	left: 25px;
}
.offer-slider .arrow-control.next {
	right: 25px;
}
.offered-category {
	text-align: center;
	padding: 2rem 0 3rem;
}
.offered-category-heading h2,
.best-category-deals h2 {
	font-size: 2rem;
	font-weight: 600;
	font-family: cursive;
	margin-bottom: 1.5rem;
	color: var(--theme-color);
}
.offered-category-banner a img {
	border-radius: 8px;
	box-shadow: 6px 2px 9px 3px rgb(0 0 0 / 6%);
}
.offer-product-grid {
	padding: 4rem 0;
}
.offer-product-grid-heading h2 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	font-family: 'POPPINS';
}
.offer-product-card {
	border: 1px solid #efefef;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 !important;
}
.offer-btn {
	border: 1px dotted;
	border-radius: 5px;
}
.offer-deals {
	margin: 5px 0 50px;
	padding: 70px 0;
	background-image: url("../img/Offer/background.webp");
}
.offer-deal-heading h2 {
	font-size: 1.6rem;
	text-transform: capitalize;
	font-weight: 700;
	margin-bottom: 10px;
}
.deal-box {
	background: var(--white);
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #d9d9d9;
	border-radius: 9px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
.deal-product-img,
.deal-product-content {
	flex: 50%;
}
.deal-product-content {
	padding-inline-start: 10px;
}
.deal-product-content .title {
	font-size: 1.2rem;
	font-weight: 400;
	font-family: "Poppins";
}
.deal-box .star-rating-count-review {
	justify-content: start;
}
.deal-box .star-rating-count-review .rating {
	background-color: var(--theme-color);
}
.deal-box .product-price-div {
	justify-content: flex-start;
}
.deal-box .product-price {
	font-weight: 600;
	font-size: 18px;
	color: #161618;
}
/* color: #007185;
    color: #f2b705;
    color: #536e2d;
    color: #ffb900;
color: coral; */
.deal-box .offer-para {
	color: #161618;
	letter-spacing: 1px;
	background-color: #f2b705;
	width: fit-content;
	padding: 4px 5px;
	border-radius: 4px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 0.25rem;
	font-size: 14px;
}
.deal-box .del {
	font-size: 1rem;
	color: red;
	font-weight: 500;
}
.deal-box .countdowntimer {
	display: flex;
	flex-direction: column;
	justify-content: center;
	/*align-items: center;*/
}
.timer-desc {
	font-size: 16px;
	font-weight: 400;
	color: #202020;
	position: relative;
	display: block;
	margin-bottom: 10px;
}
.product-countdown {
	/* max-width: 200px; */
	display: flex;
	align-items: center;
	justify-content: start;
	margin: 0 0 0.5rem;
}
.timer-box {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 10px;
}
.timer-box span:first-child {
	margin-bottom: 0.25rem;
	display: block;
	position: relative;
	width: 45px;
	line-height: 45px;
	color: #202020;
	border: 3px solid var(--primary-color);
	background-color: #dddddd;
	border-radius: 6px;
	font-size: 1.2rem;
	font-weight: 600;
}
.deal-btn {
	border: 2px solid var(--theme-color);
	background-color: var(--theme-color);
	border-radius: 5px;
	color: var(--white);
	margin: 0;
	transition: all 0.3s ease;
}
.deal-btn:hover {
	background-color: var(--white);
	color: var(--theme-color);
}
.discount-badge {
	text-align: center;
	padding: 5px;
	line-height: 1;
	font-size: 13px;
	z-index: 2;
	font-weight: 600;
	text-transform: capitalize;
	color: #ff6b35;
}
.discount-product-btn {
	padding: 0.3rem 0 0.3rem;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 14px;
	border: none;
	border-bottom: 1px solid;
	border-radius: 0;
	transition: all 0.3s ease;
}
.discount-product-btn:hover {
	padding: 0.3rem 10px;
	color: #e3270b;
}
.best-category-deals {
	background-color: #fef9f9;
}
/* category Banner */
.banner {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	width: 100%;
	height: 450px;
	box-shadow: 0px 0px 25px rgb(0 0 0 / 7%);
}
.banner:hover img {
	transform: scale(1.1);
}
.banner-image {
	display: block;
	width: 100%;
	height: 100%;
}
.banner-image a img {
	width: 100%;
	height: 100%;
	display: block;
}
.info {
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
	background: rgba(255, 255, 255, 0.77);
	border-radius: 8px;
	width: 80%;
}
.info .sub-title {
	text-transform: capitalize;
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 9px;
}
.info .title {
	font-size: 1.35rem;
	text-transform: capitalize;
	font-family: "Poppins";
	margin-bottom: 16px;
	font-weight: 600;
}
.category-btn {
	border: 2px solid var(--theme-color);
	background-color: var(--theme-color);
	border-radius: 5px;
	color: var(--white);
	font-size: 13px;
	margin: 0;
	padding: 10px 18px;
	transition: all 0.3s ease;
	font-weight: 600;
	letter-spacing: 1.1px;
}
.category-btn:hover {
	color: var(--white);
}
@media (max-width: 1200px) {
	.deal-box .offer-para {
		font-size: 11px;
		padding: 3px 4px;
	}
}
@media (max-width: 576px) {
	.offer-product-grid-heading h2 {
		font-size: 1rem;
		margin-bottom: 1rem;
		font-family: 'POPPINS';
	}
	.offer-deals{
		margin: 0 0 20px;
		padding: 40px 0;
	}
	.deal-box {
		flex-direction: column;
	}
	.deal-product-content {
		text-align: center;
	}
	.deal-box .star-rating-count-review {
		justify-content: center;
	}
	.deal-box .product-price-div {
		justify-content: center;
	}
	.deal-box .offer-para {
		margin: 0 auto;
	}
	/* .product-countdown {
		margin: 0 0 0.5rem;
	} */
	.deal-btn {
		margin: 0 auto;
	}
	.offer-btn {
		padding: 0.35rem;
	}
}
.popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	/*background-color: #fff;*/
	display: none;
	overflow: hidden;
	border-radius: 10px;
}
.contentBox {
	position: relative;
	width: 600px;
	/*height: 435px;*/
	border-radius: 10px;
	display: flex;
	box-shadow: 0 5px 15px rgb(0 0 0 / 30%);
	/*border: 3px solid red;*/
}
.contentBox .imgBx {
	position: relative;
	width: 100%;
	height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contentBox .imgBx .popup-image {
	width: 100%;
	height: 100%;
}
.contentBox .close {
	position: absolute;
	top: 5px;
	right: 5px;
	height: 35px;
	width: 35px;
	background-color: #f3f3f3;
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: center;
	cursor: pointer;
	border-radius: 50%;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 300;
	font-size: 2rem;
	transform: rotate(134deg);
	transition: all 0.3s ease;
}
.contentBox .close:hover {
	color: #fff;
	background-color: tomato;
}
.offer-fixed-bottom {
	position: fixed;
	width: 100% !important;
	bottom: 0px !important;
	left: 0% !important;
	z-index: 999;
	-webkit-box-shadow: 0 0 16px rgb(82 53 40/16%);
    box-shadow: 0 0 16px rgb(82 53 40/16%);
    overflow: hidden;
	background: #ffffff;
}

.fixed-bottom-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
}
.fixed-bottom-timer-title {
	font-size: 1rem;
	color: #161618;
	font-weight: 500;
	margin-bottom: 0;
}
.fixed-bottom-row .strong-text{
	background-color: yellow;
	padding: 3px 5px;
	/* background-color: seashell; */
}
.offer-fixed-bottom .shop-btn {
	color: #161618;
	font-weight: 600;
	font-size: 1rem;
	text-decoration: underline;
}
.offer-fixed-btn{
    position: relative;
    padding: .5rem 1rem;
    border-radius: 4px;
    transition: all .3s ease;
}
.offer-fixed-btn:hover{
	transform: scale(1.05);
}
.offer-fixed-btn .fixed-btn-link:hover{
	color: #fff;
}
.offer-fixed-bottom .cbdg1{
	background-color: red;
	width: 16px;
	height: 16px;
	bottom: 16px;
    left: 30px;
	font-size: 11px;
	padding: 0;
	line-height: 18px;
	border-radius: 50%;
}
.offer-fixed-bottom .icon-basket {
	font-size: 1.25rem;
}
.cart-fixed-mobile{
	display: none;
}
.cart-fixed-mobile .con-para{
	color: #161618;
	font-weight: 600;
}
.fixed-bottom-timer-title .total-amount {
	color: #161618;
	font-size: 16px;
	font-weight: 700;
	margin-left: 5px;
	color: navy;
}
.cart-fixed-mobile .btn{
	padding: 12px 20px;
}
.cart-fixed-mobile .disable-btn{
	color: #161618;
    border: none;
    background-color: darkgrey;
    cursor: not-allowed;
}
.product-detail-price {
	color: #333;
	font-size: 1rem;
	font-weight: 500;
}
.product-detail-price span {
	font-size: 1.2rem;
	font-weight: 600;
	color: #161618;
}
.product-detail-price span {
	font-size: 1.2rem;
	font-weight: 600;
	color: #161618;
}
.empty-cart-sec {
	max-width: 500px;
	margin: 0 auto;
}
/* offer small model */
.modal-dialog.modal-dialog-centered.small-modal {
    max-width: 400px !important;
}
.small-modal .modal-title {
	/* font-family: 'Quattrocento Sans', sans-serif; */
	font-weight: 600;
	font-size: 1.15rem;
	line-height: 1.35;
	margin-bottom: 0;
	padding-right: 1.25rem;
	color: #ffffff;
}
.small-modal .modal-title.font-small{
	font-size: 17px;
	margin-bottom: 1rem;
}
.small-modal .para{
	font-weight: 600;
	font-size: 1rem;
	line-height: 1.5;
	color: #777;
	margin-bottom: 1rem;
	font-family: 'Quattrocento Sans', sans-serif;
}
.small-modal .para span{
	font-family: 'POPPINS';
}
.small-modal .modal-body-btns {
	display: flex;
	gap: 1rem;
	justify-content: center;
}
@media (max-width: 767px) {
	.contentBox {
		width: 500px;
		height: 400px;
	}
	.cart-fixed-mobile{
		display: block;
		z-index: 1000;
	}
}
@media (max-width: 567px) {
	.contentBox {
		transform: scale(0.7);
	}
	.fixed-bottom-timer-title{
		font-size: .85rem;
	}
	.offer-fixed-bottom .shop-btn{
		font-size: .85rem;
	}
}
@media (max-width: 425px) {
	.contentBox {
		transform: scale(0.7);
	}
	.fixed-bottom-timer-title .total-amount {
		color: #161618;
		font-size: 14px;
		font-weight: 700;
		margin-left: 3px;
		color: navy;
	}
	.cart-fixed-mobile .btn{
		padding: 12px 17px;
	}
}
