@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Della+Respira&display=swap');

body {
	margin: 0 !important;
	font-family: var(--roboto) !important;
}

:root {
	--roboto: "Roboto", sans-serif;
	--della: "Della Respira", serif;
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	/* background-color: #121923; */
	background-color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container {
	margin: 40px auto;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent #9C0D0D transparent #9C0D0D;
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 100px;
	transform: translate(-50%, -50%);
}

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

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

.container {
	padding-left: 50px;
	padding-right: 50px;
	max-width: 1370px;
}

.p-60 {
	padding: 60px 0;
}

.p-70 {
	padding: 70px 0;
}

.section-bg {
	background-color: #9C0D0D1A;
}

input,
select {
	outline: none !important;
}
a{
	cursor:pointer;
	text-decoration:none;
}
a,
span {
	display: inline-block;
	transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #010101;
}

.bg-img {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.section-heading h2 {
	font-family: var(--della);
	color: #000;
	font-size: 36px;
	margin-bottom: 0;
	margin-top: 20px;
}

.section-heading h6 {
	font-size: 16px;
	position: relative;
	padding: 0 36px;
	display: inline-block;
	color: #9C0D0D;
	margin-bottom: 0;
}

.section-heading h6::before {
	left: 0;
}

.section-heading h6::after {
	right: 0;
}

.section-heading h6::before,
.section-heading h6::after {
	content: '';
	position: absolute;
	width: 25px;
	background-color: #9C0D0D;
	height: 2px;
	top: 8px;
}

p:last-child {
	margin-bottom: 0;
}

img {
	max-width: 100%;
	object-fit: cover;
}

.page-border {
	border-top: solid 1px #0000001A;
}

.form-control,
.form-select {
	box-shadow: none !important;
}

.btn-primary {
	background: linear-gradient(90deg, #9C0D0D 0%, #C42B2B 100%) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 12px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	font-weight: 500;
	font-size: 16px;
	border-radius: 12px;
}

.btn .fa-solid.rotate {
	transform: rotate(-45deg);
}

.btn-primary:hover {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;
}

.btn-secondary {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 12px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	font-weight: 500;
	font-size: 16px;
	border-radius: 12px;
}

.btn-secondary:hover {
	background: linear-gradient(90deg, #9C0D0D 0%, #C42B2B 100%) !important;
}

.white-btn {
	background-color: transparent;
	border: solid 2px #fff;
	color: #fff !important;
	padding: 12px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	font-weight: 500;
	font-size: 16px;
	border-radius: 12px;
}

.white-btn:hover {
	background-color: #9C0D0D;
	border-color: #9C0D0D;
}

.coming-soon .site-header,
.navbar-brand.mobile-only,
.my-account-page .site-header,
.my-account-page .site-footer,
.my-account-page .footer-bottom {
	display: none;
}

.site-header .navbar-outer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
}

/* .site-header .navbar-outer .navbar-menus {
	width: 55%;
	margin-left: 100px;
} */

.site-header .navbar-outer .navbar-brand {
	min-width: 210px;
	/* width: 15%; */
}

.site-header .navbar-outer .extra-links {
	min-width: 210px;
	display: flex;
	align-items: center;
	column-gap: 20px;
	justify-content: end;
	/* width: 30%; */
}

.navbar-outer .extra-links .btn-secondary {
	font-size: 14px !important;
	padding: 8px 12px !important;
	width: 80px;
}

.navbar-outer .extra-links .currency-dropdown {
	padding: 8px 8px;
	min-width: 80px;
}

.navbar-outer .extra-links .currency-dropdown ul {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	row-gap: 6px;
}

.navbar-outer .extra-links .currency-dropdown ul li a {
	width: 100%;
	color: #000;
}

.navbar-outer .extra-links .currency-dropdown ul li a:hover,
.navbar-outer .extra-links .currency-dropdown ul li a.active {
	color: #9C0D0D;
}

.navbar-outer .extra-links .currency-dropdown .ht-mcs-widget {
	margin: 0 !important;
	display: none;
}

.site-header .navbar-outer .extra-links .link-btn {
	min-width: 20px;
}

.navbar-menus #primary-menu {
	display: flex;
	align-items: center;
	column-gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
	width: 100%;
}

.navbar-menus #primary-menu li>a,
.navbar-menus #primary-menu li i {
	color: #010101;
}

.navbar-menus #primary-menu li:hover>a,
.navbar-menus #primary-menu li:hover i,
.navbar-menus #primary-menu li.current-menu-item>a,
.navbar-menus #primary-menu li.current_page_item i,
li.menu-item-has-children:has(ul li.current-menu-item)>a,
li.menu-item-has-children:has(ul li.current-menu-item) i {
	color: #9C0D0D !important;
}

.navbar-menus .menu ul.sub-menu {
	flex-direction: column !important;
	background-color: #fff !important;
	box-shadow: none !important;
	border-radius: 10px !important;
	padding: 15px !important;
	margin-top: 15px !important;
	position: absolute;
	display: none;
	z-index: 4;
	list-style: none;
	border: solid 1px #d9d9d9;
	min-width: max-content;
	row-gap: 10px;
	width: 100%;
}

.navbar-menus .menu ul.sub-menu.submenu-open,
li.menu-item-has-children.submenu-open ul.sub-menu {
	display: flex !important;
}

.navbar-menus #primary-menu .submenu-toggle {
	padding: 0;
	background-color: transparent;
	border: 0;
	font-size: 12px;
	margin-left: 8px;
}

.navbar-menus #primary-menu li.menu-item-has-children {
	position: relative;
}

.hero-section .slider-container {
	padding: 0;
	max-width: 1440px;
}

.currency-btn .selectron23 {
	z-index: 1 !important;
}

.hero-section .inner-item {
	margin: 0 20px;
	position: relative;
}

.hero-section .inner-item img {
	border-radius: 20px;
	height: 600px;
	width: 100%;
}

.hero-section .inner-item .text-box {
	position: absolute;
	z-index: 2;
	bottom: 40px;
	left: 10%;
	right: 10%;
	text-align: center;

}

.hero-section .inner-item .text-box h1 {
	font-family: var(--della);
	font-size: 42px;
	color: #fff;
	margin-bottom: 40px;
}

.hero-section .inner-item .text-box .btn {
	min-width: 150px;
}

.hero-slider {
	margin-bottom: 0;
}

.col-page-bg-img {
	border-radius: 20px;
	overflow: hidden;
}

.col-page-banner {
	text-align: center;
	background-color: #000000BA;
	color: #fff !important;
	min-height: 385px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.col-page-banner h1 {
	color: #fff !important;
	font-size: 36px;
	font-family: var(--della);
}

.col-page-banner p {
	font-size: 18px;
	margin-bottom: 18px;
}

.discovery-item-box {
	position: relative;
}

.discovery-item-box img {
	border-radius: 15px;
	height: 350px;
	width: 100%;
}

.discovery-item-box .dis-btn {
	background-color: #fff;
	position: absolute;
	border-radius: 0 !important;
	left: 0;
	bottom: 32px;
	display: inline-flex;
	align-items: center;
	column-gap: 16px;
}

.discovery-item-box .dis-btn:hover {
	background-color: #000;
	color: #fff;
}

.discovery-text-box {
	/* height: 100%; */
	border: solid 1px #0000001A;
	border-radius: 15px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: end;
	height: 350px;
}

.discovery-text-box h2 {
	font-weight: 400;
	font-size: 24px;
	line-height: 32px;
	margin-bottom: 24px;
}

.discovery-text-box .view-btn,
.testi-box .view-btn {
	min-width: 40px;
	height: 40px;
	border-radius: 50%;
	color: #fff;
	background-color: #9C0D0D;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.discovery-text-box .view-btn:hover,
.testi-box .view-btn:hover {
	background-color: #000;
}

.shop-category .head-row,
.factor-section .head-row {
	align-items: center;
	margin-bottom: 50px;
}

.shop-category .box-row {
	row-gap: 40px;
}

.shop-category .cat-filters {
	display: flex;
	align-items: center;
	column-gap: 24px;
	justify-content: end;
}

.shop-category .cat-filters .tab-btn {
	background-color: #fff;
	padding: 6px 16px;
	border-radius: 30px;
	border: solid 2px #010101;
	font-size: 18px;
	color: #010101;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.shop-category .cat-filters .tab-btn.active,
.shop-category .cat-filters .tab-btn:hover {
	border-color: #9C0D0D;
	color: #9C0D0D;
}

.shop-category-box,
.shop-category-box .img-box {
	position: relative;
}

.woocommerce ul.products li.product a {
	display: block !important;
}

.shop-category-box .img-box {
	overflow: hidden;
	border-radius: 12px;
	border: solid 1px #0000001A;
	margin-bottom: 10px;
}

.shop-category-box img {
	/* border-radius: 12px; */
	margin-bottom: 0 !important;
	height: auto;
	aspect-ratio: 1;
	width: 100%;
}

.shop-category-box h3 {
	/* color: #374151; */
	font-size: 16px;
	font-weight: 400;
	line-height: 23.62px;
	margin-bottom: 10px;
}

.shop-category-box h6 .woocs_price_code,
.shop-category-box .text-box h6 {
	display: flex;
	width: 100%;
	align-items: start;
	flex-direction: row-reverse;
	justify-content: start;
	column-gap: 12px;
}

.shop-category-box h6 .old-price,
.shop-category-box h6 del bdi {
	color: #9CA3AF;
	text-decoration: line-through;
	margin-right: 16px;
}

.shop-category-box .img-box .sale {
	background-color: #9C0D0D;
	padding: 6px 8px;
	border-radius: 4px;
	color: #fff;
	position: absolute;
	left: 10px;
	top: 10px;
	line-height: 1;
	font-size: 14px;
	z-index: 3;
}

.shop-category .col-action-btn {
	margin-top: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.shop-category .col-action-btn .btn {
	min-width: 180px;
}

.collection-section {
	min-height: 670px;
	display: flex;
	align-items: center;
}

.collection-text {
	text-align: end;
}

.collection-section .collection-text h2,
.collection-section .collection-text h3 {
	font-size: 36px;
	font-family: var(--della);
	color: #fff;
}

.collection-section .collection-text h2 {
	margin-bottom: 15px;
}

.collection-section .collection-text h3,
.collection-section .collection-text p {
	margin-bottom: 24px;
	color: #fff;
}

.collection-section .collection-text .white-btn {
	min-width: 180px;
}

.special-offer-box {
	position: relative;
}

.special-offer-box img {
	border-radius: 20px;
	height: 460px;
}

.special-offer-box .text-box {
	position: absolute;
	padding: 24px;
	z-index: 2;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
}

.special-offer-box .text-box h2 {
	color: #fff;
	font-family: var(--della);
	font-size: 53px;
	margin-bottom: 14px;
}

.special-offer-box .text-box .white-btn {
	min-width: 150px;
}

.testi-slider {
	margin-bottom: 0;
}

.testi-slider .slick-slide,
.blog-slider .slick-slide {
	margin: 0 12px;
}

.test-arrows {
	margin-top: 40px;
	display: flex;
	align-items: center;
	column-gap: 24px;
}

.test-arrows button {
	background-color: transparent;
	border: 0;
	color: #fff;
	min-width: 24px;
	text-align: center;
}

.testi-box .product-info {
	display: flex;
	align-items: center;
	column-gap: 10px;
	margin-top: 40px;
}

.testi-box .product-info img {
	min-width: 72px;
	width: 72px;
	height: 72px;
	border-radius: 12px;
}

.testi-box .product-info h4 {
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	line-height: 23.62px;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.testi-box .product-info h5 {
	font-size: 18px;
	margin-bottom: 0;
	color: #fff;
}

.testi-box {
	padding: 24px;
	border: solid 1px #B4BBC55C;
	border-radius: 20px;
	background-color: #0000001A;
	color: #fff;
}

.testi-box .name-info h3 {
	color: #fff;
	font-size: 18px;
}

.testi-box .name-info ul {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
	color: #FF8800;
}

.testi-box .desc p {
	color: #fff;
	font-weight: 500;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 20px;
}

.blog-box img {
	width: 100%;
	height: 340px;
	border-radius: 15px;
	border: 1px solid #DFDFDF;
	margin-bottom: 16px;
}

.blog-box .date {
	color: #9C0D0D;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
}

.blog-box .text-box h3 a {
	color: #010101;
	font-weight: 500;
	font-size: 20px;
}

/* .blog-box .text-box p {
	color: #666666;
} */

.insta-slider .ti-widget {
	margin-top: 0 !important;
}

.insta-slider .sb_instagram_header {
	display: none !important;
}

.insta-list {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 24px;
	list-style: none;
	margin-top: 24px;
	color: #9C0D0D;
}

.insta-list li {
	display: inline-flex;
	align-items: center;
	column-gap: 10px;
	font-size: 14px;
}

.policy-box {
	padding: 20px;
	border: 1px solid #DFDFDF;
	border-radius: 15px;
	transition: all 0.3s;
	height: 100%;
}

.policy-box h2 {
	font-family: var(--roboto);
	font-weight: 600;
	font-size: 18px;
	margin-top: 24px;
	margin-bottom: 12px;
}

.site-footer {
	background-color: #010101;
	padding-top: 60px;
	padding-bottom: 90px;
}

.site-footer .footer-row {
	justify-content: space-between;
}

.site-footer .col-footer-logo {
	width: 35%;
}

.site-footer .col-quick-links {
	width: 12%;
}

.site-footer .col-contact-links {
	width: 20%;
}

.site-footer .col-info-links {
	width: 20%;
}

.footer-brand .custom-logo {
	filter: invert(1) brightness(200);
	margin-bottom: 24px;
}

.footer-logo-box .footer-desc {
	color: #fff;
	margin-bottom: 20px;
	max-width: 370px;
}

.footer-logo-box .footer-social {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	column-gap: 16px;
	list-style: none;
}

.footer-logo-box .footer-social li a {
	color: #fff;
}

.footer-link-heading {
	color: #fff;
	text-transform: uppercase;
	font-size: 20px;
	line-height: 22px;
	margin-bottom: 24px;
	font-weight: 600;
}

.footer-link-menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	padding: 0;
	row-gap: 12px;
	margin: 0;
}

.footer-link-menu li a {
	color: #fff;
}

.footer-link-menu li a:hover {
	color: #9C0D0D;
}

.contact-links {
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
	margin: 0;
}

.contact-links li .link {
	display: flex;
	align-items: center;
	column-gap: 12px;
	color: #fff;
}

.footer-bottom {
	background-color: #010101;
	padding: 15px 0;
	border-top: solid 1px #D9D9D91A;
}

.footer-bottom .copyright-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.copyright-text {
	color: #fff;
	font-size: 14px;
}

.my-account-page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url(../images/bg-login.png);
}

.my-account-page .container {
	padding: 0;
}

.my-account-page .main-section {
	width: 100%;
	min-width: 585px;
	border: solid 1px #0000001A;
	border-radius: 20px;
	padding: 40px 30px;
	max-width: 585px;
	margin: 60px 0;
	background-color: #fff;
}

.my-account-page .signup-section {
	width: 100%;
	min-width: 585px;
	border: solid 1px #0000001A;
	border-radius: 20px;
	padding: 40px 30px;
	max-width: 585px;
	margin: 60px 0;
	background-color: #fff;
}

.navbar-brand.account-page {
	text-align: center;
	margin-bottom: 50px;
}

.login-form-page form {
	padding: 0 !important;
	margin: 0 !important;
	border: 0 !important;
}

.login-form-page .form-heading {
	margin-bottom: 40px;
	text-align: center;
}

.login-form-page .form-heading h2 {
	font-family: var(--della);
	font-weight: 500;
	font-size: 48px;
	margin-bottom: 16px;
}

.login-form-page .form-heading p {
	color: #718096;
	font-size: 18px;
}

.login-form-page form label {
	line-height: 20px !important;
	/* color: #374151 !important; */
	margin-bottom: 14px !important;
	font-family: var(--roboto) !important;
	font-weight: 500;
}

.login-form-page form label .required {
	color: var(--wc-red);
	font-weight: 700;
	border: 0 !important;
	text-decoration: none;
}

.login-form-page form .form-row,
.login-form-page form .form-group {
	padding: 0 !important;
	margin-bottom: 16px !important;
	width: 100% !important;
	float: none !important;
}

.login-form-page form .form-row.action-div {
	margin-bottom: 0 !important;
}

.login-form-page form .form-row .woocommerce-Input,
.login-form-page form .form-control {
	border: 1px solid #CBD5E0 !important;
	background-color: #F7FAFC !important;
	color: #010101 !important;
	padding: 12px 12px !important;
	outline: none !important;
	border-radius: 12px !important;
	min-height: 50px;
}

.login-form-page form .form-row .woocommerce-Input::placeholder,
.login-form-page form .form-control::placeholder {
	color: #4A5568 !important;
}

.login-form-page form .form-row .woocommerce-Input:focus,
.login-form-page form .form-control:focus {
	border-color: #9C0D0D !important;
}

.login-form-page form .remember-div {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.login-form-page form .action-div .woocommerce-button,
.login-form-page form .action-div .woocommerce-Button {
	background: linear-gradient(90deg, #9C0D0D 0%, #C42B2B 100%) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 12px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	font-weight: 500;
	font-size: 16px;
	border-radius: 12px;
	margin: 0 !important;
	width: 100%;
	float: none !important;
	min-height: 50px;
}

.login-form-page form .action-div .woocommerce-button:hover,
.login-form-page form .action-div .woocommerce-Button:hover {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;
}

.login-form-page form .form-link {
	color: #9C0D0D !important;
	text-decoration: underline !important;
}

.login-form-page form .form-link:hover {
	color: #000 !important;
}

.login-form-page form .woocommerce-user-registration,
.login-form-page form .login-link {
	color: #718096;
	text-align: center;
	margin-top: 24px;
}

.login-form-page form .show-password-input::before {
	background-image: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 22px;
	width: 22px;
	content: "\f06e";
	font-family: "Font Awesome 6 Free";
	font-weight: 400;
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
}

.login-form-page form .show-password-input.display-password::before {
	content: "\f070";

}

.login-form-page form .form-group.pwd {
	position: relative;
}

.login-form-page form .form-group.pwd .eye-btn {
	position: absolute;
	top: 50px;
	right: 16px;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
}

.user-dashboard .navbar-brand.account-page {
	display: none;
}

.user-dashboard-page .user-dashboard {
	min-height: 50vh;
	padding: 60px 0;
	background-image: url(../images/bg-login.png);
}

/* .user-dashboard-page .user-dashboard .woocommerce {
	width: 100%;
	margin: 60px 0;
	border: solid 1px #0000001A;
	border-radius: 20px;
	padding: 40px 30px;
	background-color: #fff;
} */

.user-dashboard .woocommerce-MyAccount-navigation ul {
	list-style: none;
	width: 100%;
	border: solid 1px #0000001A;
	border-radius: 20px;
	padding: 30px;
	background-color: #fff;
	margin: 0;
	display: flex;
	flex-direction: column;
	row-gap: 24px;
}

.user-dashboard .woocommerce-MyAccount-navigation ul li a {
	width: 100%;
	background-color: #000;
	padding: 10px 12px;
	display: inline-block;
	color: #fff;
	border-radius: 12px;
	font-weight: 500;
	font-size: 18px;
}

.user-dashboard .woocommerce-MyAccount-navigation ul li.is-active a {
	background-color: #9C0D0D;
}

.filter-form-left,
.arrival-category-list {
	background-color: #fff;
	padding: 24px 10px;
	border-radius: 10px;
	border: 1px solid #DFDFDF;
}

.side-filter-main .col-filter-select form {
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* margin-bottom: 24px; */
}

.side-filter-main .col-filter-select form .filter-head-icon {
	opacity: 0;
	visibility: hidden;
}

.filter-form-left .filter-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 24px;
}

.filter-form-left .filter-head h3,
.arrival-category-list h3 {
	font-size: 20px;
}

.filter-form-left .accordion-button {
	background-color: #fff !important;
	border: 0 !important;
	color: #010101 !important;
	font-size: 16px !important;
	padding: 0 !important;
	font-weight: 500 !important;
	box-shadow: none !important;
	margin-bottom: 16px !important;
}

.filter-form-left .accordion-button::after {
	background-image: var(--bs-accordion-btn-icon) !important;
}

.filter-form-left .accordion {
	--bs-accordion-border-width: 0 !important;
}

.filter-form-left .accordion-item,
.filter-form-left .accordion-header,
.filter-form-left .accordion-body,
.filter-form-left .accordion-collapse {
	border: 0 !important;
	padding: 0 !important;
}

.filter-form-left .accordion-body {
	margin-bottom: 16px;
}

.filter-form-left .range-control-value {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #010101;
	font-weight: 500;
	font-size: 14px;
	margin-bottom: 16px;
}

.filter-form-left .range-control-input {
	display: flex;
	align-items: center;
	margin-bottom: 24px;
}

.filter-form-left .range-control-input input {
	width: 100%;
}

.form-range::-webkit-slider-runnable-track {
	height: 4px;
	border-radius: 0px;
	background: transparent;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	border: none;
}

/* WebKit Thumb (Chrome, Safari, Edge) */
.form-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	height: 12px;
	width: 12px;
	margin-top: -4px;
	/* adjust this to vertically center the thumb */
	border-radius: 50%;
	background: #9C0D0D !important;
	border: 2px solid #FFFFFF;
	cursor: pointer;
	box-shadow: none !important;
	position: relative;
	z-index: 2;
}

/* Firefox Track */
.form-range {
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 0px;
	background: white;
	/* fallback */
	outline: none;
	background-image: linear-gradient(to right, #0101011A 50%, #0101011A 50%);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transition: background 0.3s ease;
	box-shadow: none !important;
}

/* Firefox Thumb */
.form-range::-moz-range-thumb {
	height: 12px;
	width: 12px;
	border-radius: 50%;
	background: #9C0D0D !important;
	cursor: pointer;
	border: 2px solid #FFFFFF;
	box-shadow: none !important;
}

/* Firefox Track */

.form-range::-moz-range-track {
	height: 4px;
	background: transparent;
	border-radius: 5px;
}

.col-filter-right .col-prod-box {
	margin-bottom: 24px;
}

.filter-form-left .filter-btn-main {
	padding-top: 24px;
	margin-top: 24px;
	border-top: solid 1px #d9d9d9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 16px;
}

.filter-btn-main .btn-primary,
.filter-btn-main .btn-secondary {
	padding-left: 15px !important;
	padding-right: 15px !important;
}

.shop-category-box .yith-add-to-wishlist-button-block {
	position: absolute;
	margin: 0 !important;
	right: 10px;
	min-width: 40px;
	min-height: 40px;
	background-color: #fff;
	border-radius: 50%;
	top: 10px;
	z-index: 3;
}

.shop-category-box .yith-wcwl-add-to-wishlist-button {
	gap: 0 !important;
}

.shop-category-box .yith-wcwl-add-to-wishlist-button svg {
	color: #9C0D0D !important;
}

.shop-category-box .yith-wcwl-add-to-wishlist-button--added svg {
	color: #9C0D0D !important;
}

.shop-category-box .tanding-img2 {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0;
	transition: all 0.3s;
}

.shop-category-box:hover .tanding-img2 {
	z-index: 1;
	opacity: 1;
}

.shop-category-box .btn-wraper {
	opacity: 0;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
	column-gap: 16px;
	justify-content: space-between;
	padding: 0 10px 20px 10px;
}

.shop-category-box .btn-wraper:has(.added_to_cart) .add_to_cart_button {
	display: none;
}

.shop-category-box:hover .btn-wraper {
	opacity: 1;
}

.shop-category-box .btn-wraper .fill-btn {
	background-color: #fff;
	display: flex;
	align-items: center;
	column-gap: 6px;
	color: #010101;
	font-size: 14px;
	padding: 12px 12px;
	border: 0 !important;
}

.shop-category-box .btn-wraper .added_to_cart {
	background-color: #fff;
	display: flex;
	align-items: center;
	column-gap: 6px;
	color: #010101;
	font-size: 14px;
	padding: 12px 12px;
	border: 0 !important;
	border-radius: 6px;
}

.shop-category-box .btn-wraper .fill-btn:hover,
.shop-category-box .btn-wraper .added_to_cart:hover {
	background-color: #9C0D0D;
	color: #fff;
}

.shop-category-box .btn-wraper .fill-btn:hover i {
	color: #fff;
}

.shop-category-box .btn-wraper .fill-btn i {
	color: #9C0D0D;
	transition: all 0.3s;
}

.arrival-cat-tree {
	list-style: none;
	padding: 0;
	margin-top: 24px;
	margin-bottom: 0;
}

.arrival-cat-tree li a {
	color: #9C0D0D;
	text-decoration: underline;
	font-weight: 500;
}

.arrival-cat-tree li i {
	color: #9C0D0D;
}

/* .arrival-cat-tree li:hover a,
.arrival-cat-tree li:hover i {
	color: #000;
} */

.arrival-child-cat {
	list-style: disc;
}

.arrival-child-cat li::marker {
	color: #9C0D0D;
}

.contact-section .box-heading {
	font-size: 24px;
	font-family: var(--della);
	margin-bottom: 36px;
}

.contact-follow-box h3 {
	font-size: 24px;
	font-family: var(--della);
	margin-bottom: 24px;
}

.contact-form-box {
	padding: 40px;
	border-radius: 20px;
	background-color: #FFF2F2;
}

.contact-form-box p {
	margin-bottom: 0;
}

.contact-form-box span {
	width: 100%;
}

.contact-form-box label {
	margin-bottom: 8px;
	color: #000000;
	font-size: 14px;
	display: inline-block;
}

.contact-form-box input,
.contact-form-box textarea {
	background-color: transparent !important;
	border: solid 1px #DBDDE3 !important;
	padding: 12px 24px !important;
	width: 100%;
	border-radius: 12px;
	outline: none !important;
}

.contact-form-box textarea {
	height: 150px;
	resize: none;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
	border-color: #9C0D0D !important;
}

.contact-form-box .form-group {
	margin-bottom: 24px;
}

.contact-form-box .form-action {
	position: relative;
}

.contact-form-box .form-action .wpcf7-spinner {
	position: absolute;
	width: 24px;
	margin: 0;
	right: 16px;
	top: 12px;
}

.contact-form-box input.wpcf7-submit {
	background: linear-gradient(90deg, #661100 0%, #C42B2B 100%) !important;
	color: #fff !important;
	border: 0 !important;
	font-weight: 500;
	font-size: 16px;
}

.contact-form-box .wpcf7 form.invalid .wpcf7-response-output,
.contact-form-box .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-form-box .wpcf7 form.payment-required .wpcf7-response-output {
	display: none !important;
}

.contact-form-box .wpcf7-not-valid-tip {
	font-size: 13px !important;
	line-height: 1 !important;
	margin-top: 8px;
}

.contact-info-box .contact-list-box {
	border: solid 1px #EEEEEE;
	padding: 20px 16px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	column-gap: 16px;
	margin-bottom: 24px;
}

.contact-list-box .text-box span {
	width: 100%;
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 14px;
	color: #787878;
}

.contact-list-box .text-box a {
	color: #100C08;
	font-weight: 500;
	font-size: 16px;
	line-height: 22.4px;

}

.contact-list-box .text-box a:hover {
	color: #9C0D0D;
}

.contact-follow-box ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	column-gap: 32px;
}

.contact-follow-box ul li a {
	width: 42px;
	height: 42px;
	background-color: #9C0D0D1A;
	border-radius: 50%;
	color: #0B1F46;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.contact-follow-box ul li a:hover {
	background-color: #9C0D0D;
	color: #fff;
}

/* .editor-section p {
	color: #666666;
} */

.editor-section p strong,
.editor-section p b {
	color: #000;
}

.editor-section li {
	margin-bottom: 16px;
	/* color: #666666; */
}

.editor-section h2,
.editor-section h3,
.editor-section h4,
.editor-section h5,
.editor-section h6 {
	font-size: 24px;
	font-family: var(--della);
	line-height: 1.5;
	margin-bottom: 16px;
}

.editor-section a {
	text-decoration: underline;
	color: #9C0D0D;
}

.about-text h2,
.about-text h6 {
	margin-bottom: 24px;
}

.about-text p {
	/* margin-bottom: 16px; */
	/* color: #666666; */
	line-height: 24px;
}

.about-img img {
	border-radius: 0 100px 0 100px;
}

.about-cta-box {
	text-align: center;
}

.about-cta-box p {
	margin-top: 24px !important;
	margin: 0 auto;
	max-width: 810px;
	color: #000000;
	margin-bottom: 32px !important;
}

.about-cta-box .btn {
	min-width: 250px;
}

.factor-box {
	padding: 16px;
	border-radius: 10px;
	background-color: #fff;
	text-align: center;
	height: 100%;
	border: 1px solid #0000001A;
}

.factor-box h3 {
	font-size: 18px;
	margin-top: 12px;
}

.factor-box p {
	/* color: #666666; */
	line-height: 20px;
}

article.type-product .entry-header {
	display: none;
}

header.entry-header {
	text-align: center;
	margin-bottom: 30px;
	font-family: var(--della);
}

body.single-product .post-navigation {
	display: none;
}

article.type-product .single-product {
	padding-top: 60px;
	border-top: solid 1px #0000001A;
}

.single-product .woocommerce-product-gallery,
.single-product .summary {
	float: none !important;
}

.single-product div.product {
	display: flex;
	flex-wrap: wrap;
}

.single-product .product_title {
	color: #151313;
	font-size: 24px;
}

article.type-product .single-product .summary {
	padding-left: 30px;
	margin-bottom: 0 !important;
}

article.type-product .single-product .summary .woocommerce-product-details__short-description p {
	margin-bottom: 24px;
}

.single-product div.product span.onsale {
	background-color: #9C0D0D !important;
	color: #fff !important;
	min-width: 0 !important;
	min-height: 0 !important;
	padding: 10px 12px;
	border-radius: 10px;
	line-height: 1;
	top: 16px;
	left: 16px;
	z-index: 1 !important;
}

.single-product .woocommerce-product-gallery__image img {
	border-radius: 20px;
	height: 500px !important;
	object-fit: cover;
	border: solid 1px #0000001A !important;
}

.single-product .flex-control-thumbs {
	margin-top: 24px !important;
	display: flex;
	column-gap: 12px;
}

.single-product .flex-control-thumbs img {
	border-radius: 10px !important;
	height: auto !important;
	border: solid 1px #0000001A !important;
}

/* article.type-product .single-product .woocommerce-product-gallery {
	display: flex;
} */

.single-product .summary .price {
	color: #374151 !important;
	display: flex;
	flex-direction: row-reverse;
	column-gap: 16px;
	width: 100%;
	align-items: start;
	justify-content: start;
	font-size: 20px;
	margin-top: 16px;
}

.single-product .summary .price del span {
	text-decoration: line-through;
	color: #9CA3AF;
}

.single-product .summary select {
	border: solid 1px #dee2e6 !important;
	border-radius: 8px !important;
	background-color: #fff !important;
	padding: 6px 16px;
}

.single-product .summary .variations tr td,
.single-product .summary .product_meta {
	padding-bottom: 16px;
}

.single-product .summary .product_meta a {
	color: #9C0D0D;
	text-decoration: underline;
}

.single-product .summary .woocommerce-tabs ul.tabs {
	padding: 0 !important;
}

.single-product .summary .woocommerce-tabs ul.tabs li {
	border: 0 !important;
	border-bottom: solid 1px #d9d9d980 !important;
	background-color: #fff !important;
	color: #000000 !important;
}

.single-product .summary .woocommerce-tabs ul.tabs li::after,
.single-product .summary .woocommerce-tabs ul.tabs li::before {
	display: none !important;
}

.single-product .summary .woocommerce-tabs ul.tabs li.active {
	color: #9C0D0D !important;
	border-color: #9C0D0D !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
	z-index: 1 !important;
}

.single-product .summary .single_add_to_cart_button,
.wc-block-components-checkout-return-to-cart-button {
	background: linear-gradient(90deg, #9C0D0D 0%, #C42B2B 100%) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 12px 24px !important;
	text-align: center !important;
	font-weight: 500 !important;
	font-size: 16px !important;
	border-radius: 12px !important;
}

.wc-block-components-checkout-return-to-cart-button svg {
	display: none !important;
}

.single-product .summary .single_add_to_cart_button:hover,
.wc-block-components-checkout-return-to-cart-button:hover {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;

}

/* .pro-cat-page {
	border-top: solid 1px #0000001A;
	padding-top: 60px;
} */

.pro-cat-page .term-description {
	display: none;
}

.pro-cat-page ul.products {
	display: flex !important;
	flex-wrap: wrap;
	row-gap: 24px;
	margin: 0 -12px;
}

.pro-cat-page ul.products::before,
.pro-cat-page ul.products::after {
	display: none !important;
}

.pro-cat-page ul.products li {
	width: 25% !important;
	margin: 0 !important;
	float: none !important;
	padding: 0 12px !important;
}


.wp-block-woocommerce-proceed-to-checkout-block a,
.wc-block-components-button,
.wc-block-components-totals-coupon__content button {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 12px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
	font-weight: 500;
	font-size: 16px;
	border-radius: 12px !important;
}

.wp-block-woocommerce-proceed-to-checkout-block a:hover,
.wc-block-components-totals-coupon__content button:hover,
.wc-block-components-button:hover {
	background: linear-gradient(90deg, #9C0D0D 0%, #C42B2B 100%) !important;
}

.cart-page .wc-block-cart {
	margin: 0 !important;
}

button:disabled {
	opacity: 50%;
}

.wc-block-cart-item__quantity {
	display: flex;
	align-items: start;
	column-gap: 12px;
}

.wc-block-cart-item__remove-link {
	background-color: #9C0D0D !important;
	padding: 0 !important;
	border-radius: 6px !important;
	text-decoration: none !important;
	color: transparent !important;
	font-weight: 500 !important;
	position: relative;
	width: 30px;
	height: 30px;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	overflow: hidden !important;
}

.wc-block-cart-item__remove-link::before {
	content: "\f2ed";
	display: inline-block;
	font-family: "Font Awesome 6 Free";
	font-feature-settings: normal;
	font-style: normal;
	font-synthesis: none;
	font-variant: normal;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	text-rendering: auto;
	width: 20px;
	color: #fff;
	position: absolute;
}

.wc-block-components-sidebar-layout .wc-block-components-main {
	padding: 24px !important;
	background-color: #fff;
	border-radius: 20px;
	border: solid 1px #ccc;
}

.wc-block-checkout__billing-fields .wc-block-components-text-input input {
	outline: none !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
	padding: 20px !important;
	background-color: #fff;
	border-radius: 20px !important;
	border: solid 1px #ccc !important;
}

.wp-block-woocommerce-checkout-order-summary-block .wc-block-components-product-metadata__description {
	display: none;
}

.cart-page .wc-block-grid__products {
	margin-top: 40px !important;
}

.cart-page .wc-block-grid__products li .wc-block-grid__product-onsale {
	background-color: #9C0D0D !important;
	padding: 6px 8px !important;
	border-radius: 4px !important;
	color: #fff !important;
	position: absolute !important;
	left: 10px !important;
	top: 10px !important;
	line-height: 1 !important;
	font-size: 14px !important;
	z-index: 3 !important;
	right: auto !important;
	border: 0 !important;
}

.cart-page .wc-block-grid__products li .wc-block-grid__product-image img {
	border-radius: 12px !important;
	height: 370px !important;
}

.cart-page .wc-block-grid__products li .wc-block-grid__product-title {
	color: #374151 !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 23.62px !important;
	margin-bottom: 10px !important;
	text-align: left !important;
}

.cart-page .wc-block-grid__products li .wc-block-grid__product-price {
	font-size: 16px !important;
	text-align: left !important;
}

.cart-page .wc-block-grid__products li .wc-block-grid__product-rating {
	display: none;
}

.cart-page .wc-block-grid__products li .wc-block-grid__product-price del>span {
	color: #9CA3AF;
	text-decoration: line-through;
	margin-right: 16px;
}

.cart-page .wc-block-grid__products li .wp-block-button a {
	background: linear-gradient(90deg, #9C0D0D 0%, #C42B2B 100%) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 12px 24px !important;
	text-align: center !important;
	font-weight: 500 !important;
	font-size: 16px !important;
	border-radius: 12px !important;
}

.cart-page .wc-block-grid__products li .wp-block-button a:hover {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;
}

article.type-product .single-product .quantity {
	float: none !important;
	width: auto;
	margin-bottom: 24px !important;
}

article.type-product .single-product .quantity-wrapper {
	width: auto;
}

article.type-product .single-product .quantity-wrapper input {
	border: solid 1px #0000001A;
	width: 150px;
	height: 40px;
	appearance: textfield;
	pointer-events: none;
}

article.type-product .single-product .quantity .qty-btn {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;
	border: 0;
	color: #fff;
	height: 40px;
	width: 40px;
	padding: 0 0 0 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;

}

article.type-product .single-product .quantity .qty-btn.minus {
	border-radius: 20px 0 0 20px;
}

article.type-product .single-product .quantity .qty-btn.plus {
	border-radius: 0 20px 20px 0;
	padding: 0 6px 0 0;
}

.single-main-blog-image .bgimg {
	border-radius: 24px;
	margin-bottom: 24px;
}

#payment-method .wc-block-components-radio-control-accordion-option {
	box-shadow: none !important;
}

#payment-method .wc-block-components-radio-control--highlight-checked::after {
	border: solid 1px #0000001A !important;
}

.woocommerce ul.order_details {
	display: flex;
	align-items: center;
	justify-content: center;
}

.woocommerce ul.order_details~p {
	text-align: center;
	display: flex;
	align-items: center;
	column-gap: 16px;
	justify-content: center;
}

.woocommerce ul.order_details~p #btn-razorpay {
	background-color: #9C0D0D !important;
	color: #fff !important;
	border: 0;
	border-radius: 10px;
	padding: 8px 12px;
}

.woocommerce ul.order_details~p #btn-razorpay-cancel {
	background-color: #000 !important;
	color: #fff !important;
	border: 0;
	border-radius: 10px;
	padding: 8px 12px;
}


/* .woocommerce ul.order_details+p,
form[name="razorpayform"]+p {
	text-align: center;
} */

body.single-product .comments-area .comment-respond {
	padding-left: 50px;
	padding-right: 50px;
	max-width: 1370px;
	margin: 0 auto;
}

body.single-product .comments-area {
	background-color: #9C0D0D1A;
	padding: 70px 0;
}

body.single-product .comments-area .comment-notes {
	display: none;
}

body.single-product .comments-area .comment-form p label {
	width: 100%;
	display: inline-block;
	margin-bottom: 10px;
}

body.single-product .comments-area .comment-form label span.required {
	color: #9C0D0D !important;
}

body.single-product .comments-area .comment-form {
	max-width: 600px;
	margin: 0 auto;
	padding: 16px;
	background-color: #fff;
	border: solid 1px #0000001A;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

body.single-product .comments-area .comment-form textarea {
	border-radius: 8px;
	border: solid 1px #0000001A;
	width: 100%;
	padding: 4px 16px;
	outline: none;
}

body.single-product .comments-area .comment-form input {
	min-height: 40px;
	width: 100%;
	border-radius: 8px;
	border: solid 1px #0000001A;
	padding: 4px 16px;
}

body.single-product .comments-area .comment-form-comment {
	order: 1;
}

body.single-product .comments-area .form-submit {
	order: 2;
	margin-bottom: 0 !important;
}

body.single-product .comments-area .comment-form p,
body.single-product .comments-area .comments-rating {
	margin-bottom: 20px;
}

body.single-product .comments-area .form-submit input {
	background: linear-gradient(90deg, #9C0D0D 0%, #C42B2B 100%) !important;
	color: #fff !important;
	border: 0 !important;
	padding: 12px 24px !important;
	text-align: center !important;
	font-weight: 500 !important;
	font-size: 16px !important;
	border-radius: 12px !important;
}

body.single-product .comments-area .form-submit input:hover {
	background: linear-gradient(90deg, #000 0%, #000 100%) !important;
}

.woocommerce table.my_account_orders .button {
	white-space: nowrap;
	margin: 0 8px;
	background-color: #9C0D0D !important;
	color: #fff !important;
}

.woocommerce-account .woocommerce-MyAccount-content button {
	white-space: nowrap;
	background-color: #9C0D0D !important;
	color: #fff !important;
}

.woocommerce-MyAccount-content button.show-password-input {
	background: #fff !important;
}

.woocommerce table.my_account_orders .button:hover,
.woocommerce-account .woocommerce-MyAccount-content button:hover {
	background-color: #000 !important;
}

.woocommerce-MyAccount-content .woocommerce-Address header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.woocommerce-message {
	border-top-color: #9C0D0D !important;
}

.woocommerce-message::before {
	color: #9C0D0D !important;
}

.woocommerce-MyAccount-content .woocommerce-Address header::before,
.woocommerce-MyAccount-content .woocommerce-Address header::after {
	display: none !important;
}

.woocommerce-account .woocommerce-MyAccount-content {
	border: solid 1px #0000001A;
	border-radius: 20px;
	padding: 30px;
	background-color: #fff;
}

.woocommerce-MyAccount-content .woocommerce-Address header h2 {
	font-size: 24px !important;
}

.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
.select2-container .select2-dropdown,
.select2-container .select2-selection {
	border-color: #0000001A !important;
}

.woocommerce-input-wrapper,
.woocommerce-input-wrapper span {
	width: 100% !important;
}

.woocommerce-input-wrapper span.select2-selection__arrow {
	width: 20px !important;
}

.woocommerce-account .woocommerce-MyAccount-content .col-1.woocommerce-Address {
	padding-right: 30px;
	border-right: solid 1px #ccc;
}

.woocommerce-MyAccount-content a {
	color: #9C0D0D !important;
	text-decoration: underline;
}

.woocommerce-MyAccount-content a:hover {
	color: #000 !important;
}

body.single-product .comments-area .comment-body {
	max-width: 600px;
	margin: 0 auto 24px auto;
	padding: 16px;
	background-color: #fff;
	border: solid 1px #0000001A;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
}

body.single-product .comments-area .comment-reply-title {
	text-align: center;
	font-family: var(--della);
	margin-bottom: 24px;
	font-size: 24px;
}

body.single-product .comments-area .comments-title {
	text-align: center;
	font-family: var(--della);
	margin-bottom: 24px;
	font-size: 24px;
}

body.single-product .comments-area .comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

body.single-product .comments-area .comment-reply-title #cancel-comment-reply-link {
	font-size: 12px;
	margin-left: 12px;
	color: #9C0D0D;
	width: 100%;
}

body.single-product .comments-area .comment-body .avatar {
	/* display: none; */
	border-radius: 50%;
}

body.single-product .comments-area .comment-form p.comment-form-cookies-consent {
	display: flex;
	align-items: center;
	column-gap: 16px;
}

body.single-product .comments-area .comment-form p.comment-form-cookies-consent input,
body.single-product .comments-area .comment-form p.comment-form-cookies-consent label {
	width: auto !important;
}

.woocommerce form .form-row #account_email,
.woocommerce form .form-row #billing_email {
	pointer-events: none;
	background-color: #f2f2f2;
	color: #808080;
}

.woocommerce-checkout #payment {
	background-color: #fff !important;
	border: solid 1px #0000001A !important;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
	float: none !important;
	background-color: #9C0D0D !important;
	margin-top: 24px;
}

.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover {
	background-color: #000 !important;
}

.woocommerce-order .woocommerce-notice {
	text-align: center;
	margin-bottom: 24px;
}

.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
	font-size: 24px;
	margin-bottom: 16px;
	font-family: var(--della) !important;
}

.woocommerce-order-details .tracking-info {
	list-style: none;
	padding: 12px 12px !important;
	margin: 0 !important;
	border: solid 1px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.single-product .summary .woocommerce-tabs .panel {
	margin: 0 !important;
}

.comment-form-email label {
	display: none !important;
}

ul.page-numbers {
	display: none;
}

/* desktop css end  */
@media (max-width:1300px) {

	.container,
	body.single-product .comments-area .comment-respond {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media (max-width:1200px) {
	.navbar-mobile-outer {
		padding: 20px 0;
		width: 100%;
		display: flex;
		align-items: center;
		column-gap: 16px;
		justify-content: space-between;
	}

	.navbar-mobile-outer .navbar-brand.mobile-only {
		display: block !important;
	}

	.navbar-mobile-outer .navbar-toggler {
		box-shadow: none !important;
	}

	.site-header .navbar-outer .navbar-brand {
		display: none;
	}

	.site-header .navbar-outer .navbar-menus,
	.site-header .navbar-outer .extra-links {
		width: 100%;
		margin-left: 0;
	}

	.navbar-menus #primary-menu {
		flex-direction: column;
		align-items: start;
		row-gap: 16px;
	}

	.site-header .navbar-outer {
		flex-direction: column;
		align-items: start;
	}

	.site-header .navbar-outer .extra-links {
		justify-content: start;
		margin-top: 16px;
	}
}

@media (max-width:1024px) {

	.p-70,
	.p-60,
	body.single-product .comments-area {
		padding: 40px 0;
	}

	.hero-section .inner-item img {
		height: 450px;
	}

	.hero-slider .slick-list,
	article.type-product .single-product .summary {
		padding: 0 !important;
	}

	.shop-category .head-row,
	.factor-section .head-row,
	.col-contact-info {
		margin-bottom: 24px;
	}

	.discovery-section .box-row,
	.factor-section .box-row {
		row-gap: 24px;
	}

	.pro-cat-page ul.products li {
		width: 50% !important;
	}

	.shop-category .cat-filters {
		justify-content: center;
		margin-top: 32px;
	}

	.shop-category .section-heading {
		text-align: center;
	}

	.collection-section {
		min-height: 450px;
		padding-top: 40px;
		align-items: start;
	}

	.collection-section .collection-text h2,
	.section-heading h2,
	.login-form-page .form-heading h2 {
		font-size: 28px;
	}

	.special-offer-box img {
		height: auto;
		width: 100%;
		min-height: 300px;
	}

	.special-offer-section .box-row,
	.testimonials-section .main-row {
		row-gap: 32px;
	}

	.site-footer .col-footer-logo,
	.site-footer .col-quick-links,
	.site-footer .col-contact-links,
	.site-footer .col-info-links {
		width: 50%;
	}

	.site-footer {
		padding: 40px 0;
	}

	.policy-section .box-row,
	.related-products-section .row {
		row-gap: 24px;
	}

	#navbarSupportedContent {
		position: absolute;
		width: 100%;
		top: 100%;
		z-index: 5;
		left: 0;
		right: 0;
		padding: 0 15px;
	}

	#navbarSupportedContent .navbar-outer {
		padding: 20px;
		border: solid 1px #0000001A;
		background-color: #fff;
		border-radius: 20px;
	}

	.shop-category-box .btn-wraper {
		opacity: 1 !important;
	}

	.hero-section .inner-item {
		margin: 0 !important;
	}

	.site-footer .footer-row {
		row-gap: 24px;
	}

	.navbar-menus .menu ul.sub-menu {
		position: static !important;
	}

	article.type-product .single-product {
		padding-top: 40px;
	}

}

@media (max-width:576px) {
	.hero-section .inner-item .text-box h1 {
		font-size: 22px;
		margin-bottom: 16px;
	}

	.section-heading h2,
	.special-offer-box .text-box h2,
	.login-form-page .form-heading h2 {
		font-size: 24px;
	}

	.insta-list {
		padding: 0;
		flex-wrap: wrap;
		align-items: center;
		justify-content: start;
		row-gap: 16px;
		margin-bottom: 0;
	}

	.shop-category .cat-filters .tab-btn {
		font-size: 14px;
	}

	.shop-category .cat-filters {
		justify-content: start;
		margin-top: 32px;
		flex-wrap: wrap;
		row-gap: 16px;
		column-gap: 16px;
	}

	.collection-section {
		background-position: right center;
		align-items: center;
		padding-bottom: 40px;
	}

	.collection-text {
		text-align: center;
	}

	.collection-section .collection-text h2,
	.collection-section .collection-text h3 {
		font-size: 24px;
	}

	.site-footer .col-footer-logo,
	.site-footer .col-quick-links,
	.site-footer .col-contact-links,
	.site-footer .col-info-links {
		width: 100%;
	}

	.footer-bottom .copyright-row {
		flex-direction: column-reverse;
		row-gap: 16px;
	}

	.my-account-page .main-section,
	.my-account-page .signup-section {
		width: calc(100% - 20px);
		min-width: auto;
		margin: 40px auto;
		max-width: 100%;
		padding: 24px;
	}

	.navbar-brand.account-page,
	.login-form-page .form-heading {
		margin-bottom: 20px;
	}

	.login-form-page .form-heading p,
	.login-form-page form .form-link,
	.login-form-page form label {
		font-size: 14px;
	}

	.pro-cat-page ul.products li {
		width: 100% !important;
	}

	.woocommerce-result-count,
	.woocommerce-ordering {
		float: none !important;
	}

}









.comments-rating {
	border: none;
	padding: 0;
	margin-left: 0;
}

.comments-rating label {
	display: inline-block;
}

.rating-container {
	font-size: 0;
	display: flex;
	justify-content: flex-end;
	flex-direction: row-reverse;
}

.rating-container * {
	font-size: 1.4rem;
}

.rating-container > input {
	display: none;
}

.rating-container > input + label {
	/* only enough room for the star */
	font-family: 'dashicons';
	display: inline-block;
	overflow: hidden;
	text-indent: 9999px;
	width: 1em;
	white-space: nowrap;
	cursor: pointer;
	margin: 0;
}

.rating-container > input + label:before {
	display: inline-block;
	text-indent: -9999px;
	content: "\f154";
	color: #888;
}

.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
	content: "\f155";
	color: #e52;
	text-shadow: 0 0 1px #333;
}

.rating-container > .star-cb-clear + label {
	text-indent: -9999px;
	width: .5em;
	margin-left: -.5em;
}

.rating-container > .star-cb-clear + label:before {
	width: .5em;
}

.rating-container:hover > input + label:before {
	content: "\f154";
	color: #888;
	text-shadow: none;
}

.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
	content: "\f155";
	color: #e52;
	text-shadow: 0 0 1px #333;
}

.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
	text-indent: 9999px;
}

.comment-respond .rating-container > input + label {
	text-indent: -9999px;
}