/*
Theme Name:   Woostify Child
Template:     woostify
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root {
	--Bebas: "Bebas Neue", sans-serif;
	--Primary_Color: #E20001;
	--Sec_Color: #e0b144;
}

html {
	margin-top: 0 !important;
}

/* ------------------------------------------------------------------------------------- Header  */
header.site-header {
	position: fixed !important;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 997 !important;
}

.admin-bar header.site-header {
	top: 32px;
}

header.site-header {
	padding: 10px 0;
}

a.custom-logo-link {
	display: block;
}

a.custom-logo-link img.custom-logo {
	height: 76px;
	width: auto;
}

.nav-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.nav-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 65%;
	width: 100%;
	gap: 30px;
	z-index: 9999;
	position: relative;
}

.nav-wrapper:before,
.mobile-nav-area:before {
	content: "";
	position: absolute;
	left: -20px;
	top: 0;
	width: 100vw;
	height: 100%;
	background-color: var(--Primary_Color);
	border-radius: 6px;
	filter: drop-shadow(16px 8px 0 #29A0D0);
}

.mobile-nav-area {
	position: relative;
	padding: 10px 0;
}

.mobile-nav-area:before {
	left: -5px;
}

ul.header-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul.header-menu>li>a {
	line-height: 1;
	font-size: 24px;
	font-family: var(--Bebas);
	font-weight: 500;
	position: relative;
}

ul.header-menu>li:not(.nav-btn)>a:after {
	content: "";
	width: 30px;
	height: 1.8px;
	background-color: #fff;
	position: absolute;
	bottom: 12px;
	right: 0;
	transition: all 0.3s ease-in-out;
	display: none;
}

ul.header-menu>li.current-menu-item>a:after {
	display: block;
}


ul.header-menu li:hover,
ul.header-menu a:hover,
ul.header-menu span:hover,
ul.header-menu>li>a .woostify-svg-icon {
	color: #fff;
}

.icon-shopping-cart-2 img {
	width: auto;
	height: 30px;
}

.nav-links ul {
	display: flex;
	gap: 54px;
	list-style: none;
	padding-left: 30px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.right-items {
	display: flex;
	align-items: center;
	gap: 15px;
}

.mode-btn {
	background-color: white;
	border: none;
	border-radius: 99px;
	min-height: 40px;
	padding: 0 24px;
	line-height: 1;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.mode-btn>span {
	color: #000;
	position: relative;
	z-index: 3;
	transition: all 0.3s ease-in-out;
}

.mode-btn:after {
	content: "";
	position: absolute;
	left: 90%;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #000;
	border-radius: 99px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

body.dark-mode .mode-btn:after {
	left: 0%;
}

body.dark-mode .mode-btn>span {
	color: #fff;
}

.mobile-nav-area,
.close-menu {
	display: none;
}

/* --------------------------------------------------------------------Header (Mobile)  */
@media only screen and (max-width: 1280px) {
	.nav-wrapper {
		gap: 10px;
	}

	.nav-links ul {
		gap: 40px;
		padding-left: 20px;
	}
}

@media only screen and (max-width: 1024px) {
	#wpadminbar {
		display: none !important;
	}

	html {
		margin-top: 0 !important;
	}

	.admin-bar header.site-header {
		top: 0;
	}

	header.site-header {
		top: 0;
		padding: 4px 0;
		transition: all 0.5s ease-in-out;
		background-color: rgb(255, 255, 255, 0);
		backdrop-filter: blur(0px);
	}

	a.custom-logo-link img.custom-logo {
		height: 64px;
		width: auto;
	}

	.mobile-nav-area {
		display: flex;
		gap: 20px;
	}

	.nav-links ul {
		gap: 10px;
		padding-left: 0;
	}

	.nav-links a {
		padding: 10px 0;
	}

	.nav-wrapper:before {
		display: none;
	}

	.mobile-bg-layer {
		content: "";
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		background-color: rgba(255, 255, 255, 0.5);
		border-radius: 0;
		filter: none;
		z-index: 9998;
		transition: all 0.3s ease-in-out;
		opacity: 0;
		visibility: hidden;
		/* backdrop-filter: blur(6px); */
	}

	body.active-mobile-menu .mobile-bg-layer {
		opacity: 1;
		visibility: visible;
	}

	.nav-wrapper {
		background-color: rgb(0, 0, 0);
		position: fixed;
		left: 0;
		top: 0;
		padding: 90px 20px;
		height: 100vh;
		width: 100%;
		max-width: 340px;
		z-index: 9999;
		transform: translateX(-100%);
		transition: all 0.3s ease-in-out;
	}

	body.active-mobile-menu .nav-wrapper {
		transform: translateX(0%);
		transition-delay: 0.1s;
	}

	.nav-wrapper,
	.nav-wrapper>.nav-links>.header-menu {
		flex-direction: column;
	}

	.nav-links a {
		justify-content: center;
	}

	ul.header-menu>li>a {
		text-align: center;
	}

	ul.header-menu>li:not(.nav-btn)>a:after {
		width: 30px;
		height: 1.8px;
		bottom: 12px;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}

	.close-menu {
		display: block;
		position: absolute;
		top: 18px;
		right: 20px;
	}

	.ham-menu {
		background-color: transparent;
		border: none;
		outline: none;
		position: relative;
		z-index: 9;
	}

	.ham-menu>img {
		height: 24px !important;
		filter: invert(1);
	}

	.close-menu>img {
		filter: invert(1);
		height: 24px !important;
	}

	.close-menu {
		background: transparent;
		border: 0;
	}

	.logged-in.admin-bar #shop-cart-sidebar {
		top: 0;
	}

	.cart-sidebar-open body {
		padding-right: 0 !important;
	}

	.icon-shopping-cart-2 img {
		height: 24px;
	}

	.mode-btn {
		min-height: 30px;
		padding: 0 16px;
	}

	.right-items {
		display: none;
	}

	.mobile-nav-area .right-items {
		display: flex;
	}

	.site-tools .tools-icon {
		margin-left: 0;
	}

	.mobile-nav-area {
		padding-left: 15px;
	}

}

@media only screen and (max-width: 782px) {

	#wpadminbar {
		display: none !important;
	}

	html {
		margin-top: 0 !important;
	}
}


/* ------------------------------------------------------------------------------------ Footer */
.footer {
	background-color: #1e1e1e;
	color: #ccc;
	padding: 40px 0;
}

.footer-logo {
	width: 120px;
	margin-bottom: 20px;
}

.footer-left p {
	font-size: 14px;
	line-height: 1.6;
}

.social-icons {
	margin-top: 15px;
}

.social-icons a i {
	margin-left: 8px;
	color: #fff;
}

.footer-links h3,
.footer-subscribe h3 {
	font-size: 16px;
	color: #fff;
	margin-bottom: 10px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 6px;
}

.footer-links a {
	text-decoration: none;
	color: #ccc;
	font-size: 14px;
}

.footer-links a:hover {
	color: #fff;
}

@media only screen and (min-width: 992px) {
	.footer-links {
		padding-left: 90px;
	}
}

.subscribe-form {
	display: flex;
	margin-top: 20px;
	max-width: 400px;
}

.subscribe-form input {
	flex: 1;
	padding: 10px 20px;
	border: none;
	font-size: 14px;
	border-radius: 0;
	height: 48px;
	border-radius: 6px 0 0 6px;
}

.subscribe-form button {
	background-color: var(--Sec_Color);
	color: #fff;
	border: none;
	padding: 0px 24px;
	cursor: pointer;
	height: 48px;
	border-radius: 0 6px 6px 0;
}

.subscribe-form button:hover {
	background-color: var(--Sec_Color);
}

.subscribe-text {
	font-size: 12px;
	margin-top: 30px;
	padding-bottom: 20px;
	color: #aaa;
	border-bottom: 1px solid #989898;
	line-height: 1.6;
}

.footer-bottom {
	background-color: #111;
	color: #999;
	text-align: center;
	padding: 15px 10px;
	position: relative;
	font-size: 13px;
}

.footer-bottom>p {
	margin: 0 !important;
}

.site-footer {
	margin: 0 !important;
}

#shop-cart-sidebar {
	z-index: 999;
}

#woostify-overlay {
	z-index: 998;
}

/* -----------------------------Slick slider */
.slick-track {
	display: flex !important;
}

.slick-slide {
	height: inherit !important;
}

.slick-arr {
	border: none;
	outline: none;
	background-color: transparent;
	font-size: 20px;
	line-height: 1;
	text-transform: uppercase;
	color: #001065;
	padding: 0;
	margin: 0;
	display: inline-flex;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 9;
}

.slick-arr i {
	font-size: 22px;
	margin: 0 12px;
}

.slick-left {
	left: 0;
}

.slick-right {
	right: 0;
}

ul.slick-dots {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	text-align: center;
}

/* ---------------------------------------------- Product  */
.add_to_cart_button,
.added_to_cart {
	display: inline-flex;
	gap: 6px;
	align-items: center;
}

.product-loop-meta a .woostify-svg-icon {
	margin-right: 0;
}

/* .product-loop-meta .added {
    display: inline-flex!important;
} */


/* ---------------------------------------------------------------------------- Home */
.site-content-boxed-container .site-content {
	padding: 0 0;
}

/* ------------------------------------------------------------------------- Home - Hero Section */
.hero-section .swiper-slide-image {
	height: 100vh;
	width: 100%;
	object-fit: cover;
}

@media (min-width: 1024px) {
	.hero-section .swiper-slide-image {
		height: 100vh;
		width: 100%;
		object-fit: cover;
	}
}


.hero-slider .swiper-pagination-bullets {
	bottom: 40px !important;
}

/* ------------------------------------------------------------------------- Home - Section 2 */
.prod-slider-wrap .products.columns-3 .product {
	display: block !important;
	width: auto !important;
	float: none !important;
	margin-right: 0 !important;
	padding: 0 20px;
}

.prod-slider-wrap .product-loop-image-wrapper .woocommerce-loop-product__link {
	display: flex;
	justify-content: center;
}

@media (min-width: 992px) {
	.prod-slider-wrap .products.columns-3 .product {
		width: auto !important;
		float: none !important;
		margin-right: 0 !important;
	}
}

.prod-slider-wrap .slick-arr {
	top: 35%;
}




/* ----------------------------------------------------------------------------- Shop  */
.shop-section-1 {
	padding: 120px 0 90px 0;
}

h2.category-title {
	text-align: center;
	margin-bottom: 30px;
}

.single-product .site-content {
	margin-top: 60px !important;
}

.single-product .woostify-trust-badge-box,
.single-product .wc-tabs-wrapper {
	display: none;
}


/* -------------------------------------------------------------------------- Contact Form */
/* Container styling */
.custom-form {
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
}

/* All inputs and textarea */
.custom-form input[type="text"],
.custom-form input[type="email"],
.custom-form input[type="tel"],
.custom-form textarea {
	width: 100%;
	padding: 12px 24px;
	border: none;
	background-color: #f5f5f5;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 300;
	color: #333;
	font-family: inherit;
	box-sizing: border-box;
}

/* Placeholder styling */
.custom-form ::placeholder {
	color: #b0b0b0;
}

/* Textarea specific */
.custom-form textarea {
	height: 120px;
	resize: none;
}

/* Submit button styling */
.custom-form input[type="submit"] {
	background-color: #1a1a1a;
	color: #fff;
	padding: 10px 30px;
	border: none;
	border-radius: 4px;
	font-family: "Bebas Neue", Sans-serif;
	font-size: 28px;
	font-weight: 400;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 2px;
}

/* Hover effect */
.custom-form input[type="submit"]:hover {
	background-color: #000;
}


/* -------------------------------------------------------- Cart Box  */
#shop-cart-sidebar .continue-shopping,
#shop-cart-sidebar .shop-cart-count {
	background-color: var(--Primary_Color);
}


/* --------------------------------------------------------------------------------------  Bistro  */
/* --------------------------------------------------------  Bistro Menu  */
.la-menu-item {
	padding: 0 14px;
}

.la-menu-category {
	padding: 20px 0px;
}

.la-menu-thumbnail {
	position: relative;
}

.la-menu-thumbnail>img {
	position: relative;
	width: 100% !important;
	max-width: 100% !important;
	height: 200px !important;
	object-fit: cover;
	border-radius: 16px !important;
	margin-top: 20px;
}

.food-type-veg {
	position: absolute;
	right: 12px;
	top: 12px;
	z-index: 3;
	padding: 5px 10px;
	border-radius: 99px;
	background-color: green;
	color: #fff;
	line-height: 1.3;
	font-size: 12px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.la-category-title {
	text-align: center;
	font-size: 18px !important;
}

.la-menu-title {
	font-size: 16px !important;
	line-height: 1.2;
	font-weight: 400;
	margin-top: 12px !important;
	margin-bottom: 0 !important;
}

.la-menu-price {
	font-size: 12px !important;
	margin: 0 !important;
	font-weight: 400;
}

/* Desktop */
@media (min-width: 1024px) {
	.la-menu-title {
		font-size: 18px !important;
	}

	.la-menu-price {
		font-size: 14px !important;
	}

	.la-category-title {
		font-size: 32px !important;
	}
}

.prod-cat-wrap {
	position: relative;
}

.menu-loader {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #fff;
	z-index: 9;
}

.loader {
	width: 40px;
	height: 40px;
	border: 4px solid #ccc;
	border-top: 4px solid var(--Primary_Color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin: 8px auto;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.menu-load-btn-wrap {
	text-align: center;
	margin-top: 40px;
}

.load-more-menu-cat {
	background-color: #000;
	color: #fff;
	padding: 10px 24px;
	font-size: 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.load-more-menu-cat:hover {
	background-color: #333;
}

.menu-loader.hidden,
.menu-load-btn-wrap:not(.loading-data) .loading-menu {
	display: none;
}

.menu-load-btn-wrap.loading-data .load-more-menu-cat {
	display: none;
}

.onsale {
	background-color: var(--Primary_Color) !important;
}

/* ----------------------------------------------- Testimonials  */
.testimonial-slider .slick-slide>div {
	height: 100%;
	padding: 0 15px;
}

.testimonial-slider .slick-left {
	left: -40px;
}

.testimonial-slider .slick-right {
	right: -40px;
}

.testimonial-item {
	height: 100%;
	background-color: #fff;
	padding: 60px 40px;
	border-radius: 20px;
}

.test-quote {
	height: 48px !important;
}

.test-title {
	font-size: 24px;
	line-height: 1.3;
	color: #000;
	margin: 40px 0 0 0;
}

.test-rating {
	margin: 20px 0 0 0;
}

.test-rating .fa-star {
	color: #ccc;
	font-size: 20px;
}

.test-rating .fa-star.filled {
	color: #F5C60D;
}

.test-content {
	font-size: 16px;
	line-height: 1.6;
	color: #404040;
	margin: 20px 0 0 0;
}

.test-desig {
	font-size: 24px;
	line-height: 1.3;
	color: #000;
	margin: 20px 0 0 0;
}

@media (max-width: 576px) {
	.test-quote {
		height: 40px !important;
	}

	.testimonial-slider .slick-slide>div {
		padding: 0;
	}

	.testimonial-slider .slick-left {
		left: -40px;
	}

	.testimonial-slider .slick-right {
		right: -40px;
	}

	.testimonial-item {
		padding: 40px 30px;
		border-radius: 15px;
	}

	.test-title {
		font-size: 20px;
		margin: 20px 0 0 0;
	}

	.test-rating {
		margin: 10px 0 0 0;
	}

	.test-rating .fa-star {
		font-size: 20px;
	}

	.test-content {
		font-size: 16px;
		margin: 10px 0 0 0;
	}

	.test-desig {
		font-size: 18px;
		margin: 20px 0 0 0;
	}
}


/* ---------------------------------------------------- review popup  */
.openReviewPopup .elementor-button {
	cursor: pointer;
}

/* Popup */
.review-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-popup {
	background: white;
	padding: 30px;
	border-radius: 12px;
	max-width: 500px;
	width: 90%;
	position: relative;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	max-height: calc(100vh - 120px);
	overflow-y: auto;
}

.review-popup h3 {
	margin-bottom: 15px;
	font-size: 22px;
}

.close-popup {
	position: absolute;
	top: 10px;
	right: 15px;
	border: none;
	background: transparent;
	font-size: 24px;
	cursor: pointer;
}

/* Stars */
.stars {
	text-align: center;
	margin-bottom: 15px;
}

.stars span {
	font-size: 40px;
	cursor: pointer;
	color: #ccc;
	transition: color 0.2s;
}

.stars span.hover,
.stars span.selected {
	color: #4fc3f7;
}

/* Inputs */
textarea,
input {
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 0;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
}

.char-count {
	text-align: right;
	font-size: 12px 16px;
	color: #888;
	margin-bottom: 20px;
	line-height: 1;
}

.popup-buttons {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

.popup-buttons button {
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

#cancelReview {
	background: #ccc;
	color: white;
}

#submitReview {
	background: #4fc3f7;
	color: white;
}

/* --------------------------------  Cart & Checkout Page & Account  */
.woocommerce-checkout .woocommerce,
.woocommerce-cart .woocommerce,
.woocommerce-account .woocommerce {
	display: block;
	max-width: 1200px;
	width: 100%;
	padding: 100px 30px 0px 30px;
	margin: 0 auto;
}


@media (min-width: 992px) {

	.woocommerce-checkout .woocommerce,
	.woocommerce-cart .woocommerce,
	.woocommerce-account .woocommerce {
		display: flex;
		padding: 160px 30px 90px 30px;
	}
}


/* ------------------------------------------- Checkout Page  */
.woocommerce-checkout .col-right-inner {
	position: sticky !important;
	top: 160px !important;
	left: auto !important;
	width: auto !important;
}

.woocommerce-checkout p.form-row>label[for='coupon_code'] {
	display: none;
}

.woocommerce-checkout [name=checkout] {
	float: none;
}

.woocommerce-checkout label.woocommerce-form__label.woocommerce-form__label-for-checkbox.checkbox {
	display: flex;
	gap: 10px;
}

.woocommerce-checkout input {
	width: 24px;
	padding: 0;
	margin: 0;
}

.woocommerce-checkout #customer_details {
	float: none;
}

@media (max-width: 767px) {
	.has-order-sticky-button #place_order {
		position: static !important;
	}
}

/* --------------------------------  Cart */
.woocommerce-cart .button.wc-backward {
	margin-top: 0px;
}

@media (min-width: 992px) {
	.woocommerce-cart .woocommerce {
		display: flex;
		flex-wrap: wrap;
	}

	.woocommerce-cart.cart-page-layout-2 .woocommerce-cart-form,
	.woocommerce-cart.cart-page-layout-2 .cart-collaterals {
		float: none;
	}

	.woocommerce-cart .woocommerce-notices-wrapper,
	.woocommerce-cart .wc-empty-cart-message {
		width: 100%;
	}

	.woocommerce-cart .cart-collaterals {
		width: auto;
		flex: 1;
	}

	.woocommerce-cart.cart-page-layout-2 .woocommerce-cart-form {
		padding-right: 90px;
	}

	.woocommerce-cart .site-main {
		min-height: calc(100vh - 380px);
	}
}

@media (max-width: 991px) {

	.woocommerce-cart-form__contents:not(.elementor-menu-cart__products) tbody tr td,
	.cart.wishlist_table:not(.elementor-menu-cart__products) tbody tr td {
		padding: 12px 0;
	}
}


@media (min-width: 992px) {
	.woocommerce-columns {
		display: flex;
		justify-content: space-between;
	}

	.woocommerce-column {
		float: none !important;
		height: auto;
		margin-bottom: 0 !important;
	}

}

/* --------------------------- Account   */
.woocommerce-column,
.woocommerce-MyAccount-navigation,
.woocommerce-MyAccount-content {
	float: none !important;
	height: auto;
	margin-bottom: 20px !important;
}


/* ------------------------------------------------------------ Single Product  */
.product-page-container {
	padding-top: 90px;
}

@media (min-width: 992px) {
	.product-page-container {
		padding-top: 160px;
	}
}

/* ------------------------------------------- Account Page  */
button.show-password-input {
	width: 22px;
	height: 22px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	padding: 0;
	margin: 0;
}

.woocommerce-orders-table__cell-order-actions {
	width: 100%;
}

/* --------------------------------------------------------------------- Shoping Cart Sidebar  */
.shop-cart-sidebar {
    max-height: 100vh;
    padding-bottom: 60px;
}
.woocommerce-mini-cart__buttons.buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
	margin-top: 12px;
}
/* ------------------------------------------------------------------------- Dark Mode  */
:root {
	--lite_1: #fff;
	--dark_1: #404040;
	--dark_2: #333;
}

body.dark-mode {
	background-color: #000;
	color: var(--lite_1);
	/* filter: brightness(0.6); */
}

body.dark-mode *, body.dark-mode *:hover {
	color: var(--lite_1);
}
/* --------------------------------------- About  */
body.dark-mode .about-s2>div {
	background-color: #000 !important;
}
body.dark-mode .about-s1{
	background-color: var(--dark_1)!important;
}

/* -------------------------- Bistro  */
body.dark-mode .load-more-menu-cat {
	background-color: var(--dark_1);
}

body.dark-mode .testimonial-section {
	background-color: #000 !important;
}

body.dark-mode .testimonial-section h2 {
	color: var(--lite_1) !important;
}

body.dark-mode .testimonial-item, 
body.dark-mode .openReviewPopup a {
	background-color: var(--dark_1)!important;
}

/* -------------------------- Footer  */
body.dark-mode .subscribe-form input {
	color: #474747;
}

/* ------------------------ Contact  */
body.dark-mode .contact-s1 .elementor-button {
	background-color: var(--dark_1) !important;
}

body.dark-mode .contact-s2 .elementor-icon-list-icon svg {
	fill: var(--lite_1) !important;
}

body.dark-mode .contact-s2 .elementor-icon-list-text {
	color: var(--lite_1) !important;
}

body.dark-mode .contact-s2 .custom-form input,
body.dark-mode .contact-s2 .custom-form textarea {
	color: #474747;
}

body.dark-mode .contact-s2 .custom-form input[type="submit"] {
	color: #fff!important;
	background-color: var(--dark_1) !important;
}

/* ----------------------------------- Product  */
body.dark-mode .loop-add-to-cart-btn,
body.dark-mode .woocommerce-Price-amount,
body.dark-mode .woostify-svg-icon.icon-close, 
body.dark-mode .woocommerce-mini-cart__total strong {
	color: var(--lite_1) !important;
} 
body.dark-mode .mini-cart-product-qty .woostify-svg-icon svg * {
	color: var(--lite_1) !important;
}
body.dark-mode #shop-cart-sidebar {
	background-color: var(--dark_1) !important;
}
body.dark-mode .woostify-svg-icon.icon-close .woostify-svg-icon svg *{
	color: #000!important;
}