@charset "utf-8";

/* CSS Document */
.banner {
	max-height: 600px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.section-headline {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.section-headline h2 {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #4F2200;
}

/* Promotional Banners */
.promo-banners {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 80px;
}

.promo-card {
	border-radius: 24px;
	padding: 48px;
	position: relative;
	overflow: hidden;
	min-height: 366px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.promo-card.beige {
	background: #e9e8e8;
}

.promo-card.dark {
	background: #934204;
	color: white;
}

.promo-badge {
	display: inline-block;
	background: #c06b29;
	color: white;
	padding: 6px 16px;
	border-radius: 2px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 16px;
	width: fit-content;
}

.promo-content h3 {
	font-family: 'DM Serif Display', serif;
	font-size: 38px;
	font-style: italic;
	margin-bottom: 16px;
	line-height: 1.2;
	color: #471c12;
}

.promo-card.dark .promo-content h3 {
	color: white;
}

.promo-content p {
	font-size: 16px;
	margin-bottom: 32px;
	opacity: 0.9;
}

.promo-btn {
	background: #ff6a00;
	color: white;
	padding: 16px 40px;
	border-radius: 100px;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
	width: fit-content;
}

.discount-badge {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 42px;
	font-weight: 800;
	font-style: italic;
	color: white;
	letter-spacing: 0.84px;
}

.discount-label {
	font-family: 'Urbanist', sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: white;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
	width: 100%;
	background: #FFFFFF;
	padding: 80px 0;
}

/* Category Header */
.cat-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 56px;
}

.cat-header__text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cat-header__title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #4F2200;
	margin: 0;
}

.cat-header__subtitle {
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 22px;
	line-height: 1.41;
	color: #616160;
	margin: 0;
}

.cat-header__arrows {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.cat-arrow {
	width: 48px;
	height: 48px;
	border: none;
	background: transparent;
	cursor: pointer;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cat-arrow img {
	width: 48px;
	height: 48px;
}

/* Category Carousel (Bootstrap) */
#catCarousel .carousel-inner {
	overflow: hidden;
}

#catCarousel .carousel-item {
	transition: transform 0.5s ease;
}

/* Category Grid */
.cat-grid {
	display: flex;
	align-items: flex-start;
	gap: 24px;
}

.cat-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	text-decoration: none;
	flex: 1;
	min-width: 0;
}

.cat-card:hover {
	text-decoration: none;
}

.cat-card__image {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid #EAE7E7;
}

.cat-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cat-card__name {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.375;
	color: #616160;
	text-align: center;
}

.cat-card:hover .cat-card__name {
	color: #FF6A00;
}

/* Best Deal Card */
.cat-card--deal .cat-card__deal-bg {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}

.cat-card__deal-bg > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cat-card__deal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	padding: 0 10px;
}

.deal-upto {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 12px;
	letter-spacing: 0.57em;
	color: #FFFFFF;
	line-height: 1.5;
}

.deal-percent {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 52px;
	line-height: 1;
	background: linear-gradient(270deg, rgba(255, 164, 95, 1) 0%, rgba(227, 255, 217, 1) 50%, rgba(255, 164, 95, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.deal-discount {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.1em;
	color: #FFFFFF;
	line-height: 1.5;
}

/* Products Section */
.products-section {
	width: 100%;
	padding: 60px 0;
	background: #F8F1ED;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.product-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(40px);
	border-radius: 24px;
	overflow: hidden;
	transition: all 0.3s;
}

.product-card:hover {
	transform: translateY(-4px);
}

.product-image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 91%;
	background: #F6F6F6;
	border-radius: 20px;
	margin: 8px;
}

.product-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.product-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	background: #34C759;
	color: white;
	padding: 8px 16px;
	border-radius: 100px;
	font-size: 12px;
	font-weight: 700;
}

.product-actions {
	position: absolute;
	top: 16px;
	right: 16px;
	display: flex;
	gap: 8px;
}

.action-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.product-info {
	padding: 16px 24px 24px;
}

.product-title {
	font-size: 16px;
	color: #616160;
	margin-bottom: 8px;
	font-weight: 500;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-height: 48px;
}

.product-min-order {
	font-size: 14px;
	color: #979797;
	margin-bottom: 12px;
}

.product-price-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 12px;
}

.product-price {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #4F2200;
}

.price-badge {
	background: #FFF3EA;
	color: #934204;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	font-style: italic;
}

.product-country {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	color: #979797;
	font-style: italic;
}

.country-flag {
	width: 20px;
	height: 14px;
	border-radius: 2px;
}

.card.card-package {
	border-radius: 1rem;
	margin-bottom: 1rem;
	overflow: hidden;
}

.card-package .btn {
	text-transform: uppercase;
	position: absolute;
	left: 1.25rem;
	bottom: 1.25rem;
	font-size: 0.875rem;
	z-index: 1;
}

.category-box {
	background-color: #fff;
	border-radius: 0.25rem;
	border: 1px solid #dfdfdf;
	color: #333;
	display: flex;
	flex-direction: column;
	margin-bottom: 1.25rem;
	padding: 1rem;
	text-align: center;
}

.category-box-image {
	max-height: 200px;
	max-width: 200px;
	margin: 0 auto 1rem;
}

.category-box-image>img,
.card-item .card-image img {
	height: 96px;
	width: 96px;
}

.category-box h5 {
	display: -webkit-box;
	max-width: 100%;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card.card-ads {
	border-radius: 1rem;
	overflow: hidden;
}

.card-deal .card-image {
	width: 100%;
	margin: 0 auto 1rem;
	display: flex;
	justify-content: center;
	position: relative;
}

.card-deal .card-image a>img {
	max-height: 150px;
	max-width: 150px;
}

.card-deal .card-image .badge {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
}

span.like-icon {
	color: #333;
	font-size: 1.333rem;
	position: absolute;
	z-index: 101;
	left: 0;
	top: 0;
	cursor: pointer;
	background-color: #eee;
	display: block;
	line-height: 1;
	height: 32px;
	width: 32px;
	padding: 6px 0;
	border-radius: 30px;
	text-align: center;
	transition: all .4s;
}

.card-deal h5 {
	font-weight: normal;
	display: -webkit-box;
	max-width: 100%;
	height: 18px;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-deal h5>a {
	color: #333;
}

.card-deal h5>a:hover {
	color: var(--siteColor);
}

.star-rating {
	margin-bottom: 0.5rem;
}

.star-rating>span {
	border: 1px solid;
	border-radius: 0.1rem;
	color: #00cf2c;
	font-size: 0.875rem;
	padding: 0.1rem 0.25rem;
}

.star-rating.poor>span {
	color: #f00;
}

.star-rating.good>span {
	color: #fc0;
}

.star-rating.excellent>span {
	color: #0c0;
}

.star-rating>span>i {
	font-size: 1rem;
}

.star-rating>small {
	color: #777;
}

.qty-cart {
	align-items: center;
	display: flex;
	justify-content: center;
}

.cart-plus-minus {
	max-width: 96px;
	position: relative;
}

.cart-plus-minus .form-control {
	width: 100%;
	padding: 3px 32px;
	font-weight: 700;
	color: #333;
	height: 34px;
	text-align: center;
	border-radius: 34px;
}

.cart-plus-minus .form-control:focus {
	background-color: #fff;
	outline: 0;
	box-shadow: none;
}

.cart-plus-minus .qtybutton {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 32px;
	border-radius: 50%;
	background-color: #ccf5d5;
	border: 3px solid #fff;
	cursor: pointer;
	z-index: 1;
	user-select: none;
}

.cart-plus-minus .qtybutton>i {
	font-size: 1.5rem;
}

.cart-plus-minus .plus {
	left: auto;
	right: 1px;
}

.qty-cart .cart-icon {
	border: 1px solid var(--siteColor);
	color: var(--siteColor);
	line-height: 1;
	padding: 0.25rem 0.5rem;
	border-radius: 0.15rem;
	text-align: center;
	width: 100%;
}

.qty-cart .cart-icon i {
	font-size: 1.5rem;
	vertical-align: -3px;
}

.qty-cart .cart-icon:hover {
	background-color: var(--siteColor);
	color: #fff;
}

.qty-cart .cart-icon.inactive {
	border-color: #ccc;
	background-color: #ccc;
	color: #fff;
	cursor: default;
}

.item-price {
	color: #777;
}

.item-price .discount-price {
	color: #333;
	font-size: 1.35rem;
}

.item-price .discount-price>span {
	color: #000;
	font-weight: 600;
}

.delivery-date {
	color: #555;
}

.card .verified {
	position: absolute;
	right: 0;
	bottom: 1rem;
	border: 1px solid var(--webColor);
	border-radius: 0.1rem;
	height: 13px;
	width: 13px;
}

.card .verified::before {
	content: '';
	position: absolute;
	background-color: var(--webColor);
	top: 1px;
	left: 1.5px;
	height: 8px;
	width: 8px;
	border-radius: 8px;
}

.card.card-promo {
	border-radius: 1rem;
	margin-bottom: 1rem;
	overflow: hidden;
}

.card-item {
	margin-bottom: 1.5rem;
	padding-top: 1rem;
	text-align: center;
}

.card-item h4 {
	display: -webkit-box;
	font-size: 1.125rem;
	max-width: 100%;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.card-item .card-image {
	position: relative;
}

.card-item .card-image .badge {
	position: absolute;
	right: 1rem;
	top: 1rem;
	text-transform: uppercase;
	z-index: 2;
}

.card-item h4>a {
	color: #333;
}

.card-item h4>a:hover {
	color: var(--siteColor);
}

.card-item p {
	color: #777;
	font-size: 0.875rem;
	margin-bottom: 0;
}

.partner-carousel .card {
	align-items: center;
}

.partnetimage {
	height: 96px;
}

.card .nonverified {
	position: absolute;
	right: 0;
	bottom: 1rem;
	border: 1px solid #dc3545;
	border-radius: 0.1rem;
	height: 13px;
	width: 13px;
}

.card .nonverified::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 1px;
	background-color: initial;
	top: 0px;
	left: 1px;
	border-radius: inherit;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 10px solid #dc3545;
}

.card.card-promo .card-image img {
	width: 100%;
}

/*footer {
	padding-top: 6.5rem;
}*/
.footer-service {
	color: #eee;
	position: relative;
	width: 100%;
	z-index: 9
}

.footer-service .content {
	background-color: var(--siteColor);
	border-radius: 0.3rem;
	padding: 1.5rem 1rem;
}

.footer-service .content .d-sm-flex {
	align-items: center;
}

.footer-service .content .d-sm-flex small {
	font-style: italic;
}

/* RESPONSIVE */
@media (min-width: 992px) {
	.partner-carousel {
		margin-bottom: 1rem;
	}

	.footer-service {
		margin-bottom: -4rem;
	}
}

@media only screen and (max-width: 991.98px) {
	.footer-service {
		margin-bottom: 1rem;
	}

	.footer-service .content .row {
		margin-bottom: -1rem;
	}

	.footer-service .content .d-sm-flex {
		margin-bottom: 1rem;
	}
}

@media only screen and (max-width: 991.98px) {
	.categories-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}

	.products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.promo-banners {
		gap: 20px;
	}

	.categories-section,
	.products-section {
		padding: 50px 0;
	}
}

@media only screen and (max-width: 767px) {
	.banner .container {
		padding: 0;
	}

	.categories-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		margin-bottom: 40px;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.promo-banners {
		grid-template-columns: 1fr;
		gap: 16px;
		margin-bottom: 40px;
	}

	.promo-card {
		min-height: 280px;
		padding: 32px;
	}

	.categories-section,
	.products-section {
		padding: 40px 0;
	}

	ul#menu-v {
		display: none;
	}

	.card.card-package,
	.card.card-promo {
		border-radius: 0.5rem;
	}

	.category-box {
		margin-bottom: 1rem;
		padding: 0.75rem;
	}

	.card-item {
		margin-bottom: 1rem;
	}
}

@media only screen and (max-width: 575.98px) {
	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-bottom: 32px;
	}

	.products-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.category-image {
		width: 80px;
		height: 80px;
	}

	.footer-service .d-sm-flex img.me-3 {
		height: 48px;
		width: 48px;
	}

}

/* ===== DEALS SECTION ===== */
.deals-section {
    background: #6E3102;
    position: relative;
    overflow: hidden;
    padding: 56px 0;
}

.deals-light-effect {
    position: absolute;
    top: -238px;
    left: -3px;
    width: 2270px;
    height: 1322px;
    pointer-events: none;
    z-index: 0;
}

.deals-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(30px);
    opacity: 0.5;
    z-index: 0;
}

.deals-content {
    position: relative;
    z-index: 1;
    max-width: 1460px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.deals-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 56px;
}

.deals-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.deals-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 46px;
    line-height: 1.22;
    background: linear-gradient(90deg, #FFA45F 0%, #FAFAFA 50%, #FFA45F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.deals-heading p {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    line-height: 1.41;
    color: #FFFFFF;
    margin: 0;
}

.deals-timer-wrap {
    position: relative;
    width: 292px;
    height: 115px;
    flex-shrink: 0;
}

.deals-end-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 292px;
    height: 33px;
    background: linear-gradient(90deg, rgba(152,66,1,0) 0%, rgba(192,107,41,1) 50%, rgba(152,66,1,0) 100%);
    box-shadow: 0px 1px 9.3px rgba(0,0,0,0.05);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deals-end-label span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
}

.deals-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.timer-box {
    width: 66px;
    height: 66px;
    border-radius: 24px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-box--primary {
    background: #FF6A00;
}

.timer-box span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
}

.timer-sep {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
}

/* Deal Products Grid */
.deals-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.deal-card {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
	transition: 0.3s;
}

.deal-card--light {
    background-color: #fff;
    box-shadow: none;
}
.deal-card--light:hover {
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.deal-card--dark {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(80px);
	color: #fff;
}

.deal-card--dark:hover{
    background-color: #fff;
    backdrop-filter: blur(80px);
	color: #616160;
}
.deal-card--light .deal-price{
	color: #4F2200;
}
.deal-warehouse {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: #F6F6F6;
    padding: 1px 4px;
    border-radius: 2px;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #979797;
}
.deal-price--dark {
    color: #4F2200;
}
.deal-card--light .deal-card__title a{
    color: #616160;
}
.deal-card--light .deal-card__title a:hover{
    color: #FF6A00;
}
.deal-card--dark .deal-card__title a{
    color: #fff;
}
.deal-card--dark:hover .deal-card__title a{
	color: #616160;
}
.deal-card--dark:hover .deal-card__title a:hover{
    color: #FF6A00;
}

.deal-card--dark:hover .deal-price-info--dark{
	background: #FFF3EA;
    color: #934204;
}
.deal-card--dark:hover .deal-price{
	color: #4F2200;
}
.deal-card--dark:hover .deal-warehouse--dark{
	background-color: rgba(0,0,0,0.1);
	color: #616160;
}
.deal-card--dark .deal-order-hint--light{
	color: #eee;
}
.deal-card--dark:hover .deal-order-hint--light{
	color: #616160;
}

.deal-warehouse--dark {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(14px);
    color: #F6F6F6;
}

.deal-order-hint--light {
    color: #F6F6F6;
}


.deal-card__image {
    position: relative;
    padding: 8px;
    width: 100%;
    aspect-ratio: 330 / 280;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.deal-card__image a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.deal-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #FF6A00;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 4px 12px;
    z-index: 2;
}

.deal-badge--corner {
    border-radius: 20px 0 12px 0;
}

.deal-badge--pill {
    top: 12px;
    left: 12px;
    border-radius: 100px;
    padding: 4px;
    width: 54px;
    height: 23px;
    justify-content: center;
}

.badge-icon {
    width: 12px;
    height: 12px;
}

.deal-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.deal-wishlist img {
    width: 40px;
    height: 40px;
}

/* Deal Card Info */
.deal-card__info {
    padding: 12px;
}

.deal-card__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.375;
	min-height: 50px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deal-card__meta {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.deal-order-hint {
    font-family: 'Roboto', sans-serif;
	font-style: italic;
    font-weight: 500;
    font-size: 14px;
    color: #979797;
}

.deal-card__min-order {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0 0 5px;
}

.deal-card--light .deal-card__min-order {
    color: #616160;
}

.deal-card__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
	margin-bottom: 0.75rem;
}

.deal-price {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;    
}

.deal-price-info {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    font-size: 12px;
    height: 24px;
	font-style: italic;
}

.deal-price-info img {
    width: 16px;
    height: 16px;
}

.deal-price-info--light {
    background: #FFF3EA;
    color: #934204;
    backdrop-filter: blur(80px);
}

.deal-price-info--dark {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(234,231,231,0.1);
    color: #FFFFFF;
    backdrop-filter: blur(80px);
}

/* Deal Card Actions */
.deal-card__actions {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.deal-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 1000px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}
.btn-deal{
    font-size: 1.125rem;
    padding: 0.325rem 0.625rem;
}

.deal-qty-control {
    display: flex;
    align-items: center;
    background: #F6F6F6;
    border: 1px solid #EAE7E7;
    border-radius: 1000px;
    height: 48px;
    flex: 1;
    justify-content: space-between;
    padding: 0 8px;
}

.deal-qty-control--dark {
    background: rgba(255,255,255,0.1);
    border: none;
    backdrop-filter: blur(80px);
}

.deal-qty-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-qty-btn img {
    width: 38px;
    height: 38px;
}

.deal-qty-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
}

.deal-card--light .deal-qty-value {
    color: #616160;
}

.deal-card--dark .deal-qty-value {
    color: #FFFFFF;
}

.deal-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 48px;
    background: #FF6A00;
    border-radius: 1000px;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.deal-add-to-cart:hover {
    opacity: 0.9;
    color: #FFFFFF;
    text-decoration: none;
}

/* Deals Bottom Buttons */
.deals-buttons {
    display: flex;
    gap: 16px;
}

.deals-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 1000px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.deals-btn img {
    width: 24px;
    height: 24px;
}

.deals-btn--primary {
    background: #FF6A00;
    color: #FFFFFF;
}

.deals-btn--primary:hover {
    opacity: 0.9;
    color: #FFFFFF;
    text-decoration: none;
}

.deals-btn--white {
    background: #FFFFFF;
    color: #FF6A00;
}

.deals-btn--white:hover {
    opacity: 0.9;
    color: #FF6A00;
    text-decoration: none;
}
.ads-banner{
	position: relative;
}

.ads-banner .btn i{
	font-size: 1.25rem;
}
.warehouse-process-image{
	position: relative;
}
.warehouse-process-image .secure{
	border-radius: 1rem;
	display: inline-flex;
	align-items: center;
	padding: 1rem;
	position: absolute;
	top: 3rem;
	left: 0;
}
.warehouse-process-image .secure .flex-shrink-0{
	background-color: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	font-size: 2.5rem;
    padding-block: 3px;
    text-align: center;
}
.warehouse-process-image .buyers{
	border: 1px solid #E9D9CF;
	border-radius: 1rem;
	min-width: 180px;
	padding: 1rem;
	position: absolute;
	bottom: 3rem;
	right: 0;
}
.warehouse-process-image .buyers .flex-shrink-0{
	background-color: #FFA45F;
	border-radius: 50%;
	height: 60px;
	width: 60px;
	padding-block: 10px;
	text-align: center;
}
.warehouse-process-image .buyers h2, .warehouse-process-image .secure h2{
	font-size: 3rem;
	font-weight: 900;
}

.warehouse-process{
	position: relative;
}
.warehouse-process h2{
	color: #4F2200;
	font-family: 'Poppins';
}
.warehouse-process .d-flex{
	align-items: center;
	padding-block: 1rem;
	position: relative;
}
.warehouse-process .d-flex::before{
	content: '';
	position: absolute;
	left: 29px;
    top: 25px;
    border-inline-start: 2px dashed #aaa;
    height: calc(100% - 10px);
    width: 2px;
}
.warehouse-process .d-flex.active::before{
    border-inline-start-color: #FF6A00;
}
.warehouse-process .d-flex:last-child:before{
	display: none;
}
.warehouse-process .d-flex h4{
	color: #4F2200;
}
.warehouse-process .d-flex .flex-shrink-0{
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 50%;
	height: 56px;
	width: 56px;
	text-align: center;
	padding-block: 12px;
	font-size: 1.5rem;
	z-index: 9;
}
.warehouse-process .d-flex.active .flex-shrink-0{
	background-color: #FFF3EA;
	box-shadow: 0 0 0 5px #fff;
	border: none;
	color: #FF6A00;
	font-size: 1.75rem;
	transform: scale(1.1);
}
.section.testimonial{
	background-size: cover;
	border-radius: 1rem;
	color: #fff;
	padding-block: 5rem;
}
.testimonial h2, .testimonial h4{
	color: #fff;
}
.testimonial .carousel{
	background-color: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(20px);
	border-radius: 1rem;
	padding: 2rem 3rem;
}
.testimonial .pd-review-stars i {
    font-size: 18px;
    color: #FFC806;
}
.testimonial .pd-review-stars i.empty {
    color: #ddd;
}

.testimonial .carousel-control-prev, .testimonial .carousel-control-next{
	background-color: #FF6A00;
	border-radius: 50%;
	height: 40px;
	width: 40px;
	top: 50%;
    transform: translateY(-50%);
}

.testimonial .carousel-control-prev {
    left: -20px;
}

.testimonial .carousel-control-next {
    right: -20px;
}

.testimonial .carousel-indicators{
	bottom: -40px;
	justify-content: end;
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
}
.testimonial .carousel-indicators [data-bs-target]{
	border-radius: 50%;
    width: 10px;
    height: 10px;	
}
.testimonial .carousel-indicators .active{
	transform: scale(1.25);
}
.request-sample{
	background-image: linear-gradient(to left, #f76700, #933f00);
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
}

.request-sample .d-flex .icon{
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	padding: 4px;
    height: 30px;
    width: 30px;
    display: inline-block;
    text-align: center;
	margin-inline-end: 3px;
}

.request-sample .circle{
	height: 560px;
    width: 560px;
    border-radius: 50% 0 0 50%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.request-sample .circle .img-fluid {
    transform: scale(1.1, 1.1) translateY(50px);
}

/* Deals Section Responsive */
@media (max-width: 1500px) {
    .deals-products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .deals-products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .deals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .deals-heading h2 {
        font-size: 32px;
    }

    .deals-heading p {
        font-size: 18px;
    }

    .deals-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .deals-section {
        padding: 32px 0;
    }

    .deals-heading h2 {
        font-size: 24px;
    }

    .deals-heading p {
        font-size: 16px;
    }

    .deals-products {
        grid-template-columns: 1fr;
        max-width: 347px;
        margin: 0 auto;
    }

    .deals-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
}


/* END HOME */