/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
	--primary-theme-color: linear-gradient(135deg, #efd096 0%, #AC9261 100%);
	/* linear-gradient(135deg, #0cc5b7 0%,#2bd891 100%); /* #ca0d46 ; 023152 0f84d6 15a213 0a2963 ed143d*/
	--secondary-theme-color: #000000;
	--font-awesome-color: #ffffff;
	--font-white-color: #ffffff;
	--font-black-color: #000000;
	--footer-theme-color: #000000;
	--icon-theme-color: #AC9261;
}

html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	font-family: "Montserrat", sans-serif;
	background-color: #f7f5f2 !important; /* Premium Linen off-white tint */
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-family: "Montserrat", sans-serif;
}

p {
	font-size: 14px;

	color: var(--primary-theme-color);
	font-weight: 400;
	line-height: 26px;
	margin: 0 0 15px 0;
	font-family: "Montserrat", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 28px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 16px;
}


img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #bccccb;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	padding: 20px 0px 35px 0px;
	text-align: center;
}

.sublistcategory {
	padding-left: 20px !important;
	font-size: 14px !important;
	font-weight: 500;
}

.section-title h2 {
	color: #1c1c1c;
	font-weight: 600;
	position: relative;
}

.section-title h2:after {
	position: absolute;
	left: 0;
	bottom: -15px;
	right: 0;
	height: 4px;
	width: 80px;
	background: var(--primary-theme-color);
	content: "";
	margin: 0 auto;
}

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

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */

.primary-btn {
	display: inline-block;
	font-size: 14px;
	padding: 14px 28px 10px;
	color: var(--font-black-color);
	text-transform: uppercase;
	font-weight: 600;
	background: #999;
	/*letter-spacing: 2px;*/
}

.site-btn {
	font-size: 14px;
	color: var(--font-black-color);
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	padding: 13px 30px 12px;
	background: var(--primary-theme-color);
	border: none;
	background: #9999;
	width: 100px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	/*background: var(--primary-theme-color);*/
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #da091d;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #4de010;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f58109;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #da091d;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #4de010;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f58109;
		border-left-color: transparent;
	}
}

/*---------------------
  Header
-----------------------*/
.fa {
	color: inherit;
}

.header__top {
	background: var(--primary-theme-color);
	background: white;
}

.header__top__left {
	padding: 10px 0 13px;
}

.header__top__left ul li {
	font-size: 14px;
	color: var(--font-black-color);
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.header__top__left ul li:after {
	position: absolute;
	right: -25px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: var(--primary-theme-color);
	opacity: 0.1;
	content: "";
}

.header__top__left ul li:last-child {
	margin-right: 0;
}

.header__top__left ul li:last-child:after {
	display: none;
}

.header__top__left ul li i {
	color: #252525;
	margin-right: 5px;
}

.header__top__right {
	text-align: right;
	padding: 10px 0 13px;
}

.header__top__right__social {
	position: relative;
	display: inline-block;
	margin-right: 35px;
}

.header__top__right__social:after {
	position: absolute;
	right: -20px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: var(--primary-theme-color);
	opacity: 0.1;
	content: "";
}

.header__top__right__social a {
	font-size: 14px;
	display: inline-block;
	color: #1c1c1c;
	margin-right: 20px;
}

.header__top__right__social a:last-child {
	margin-right: 0;
}

.header__top__right__language {
	position: relative;
	display: inline-block;
	margin-right: 40px;
	cursor: pointer;
}

.header__top__right__language:hover ul {
	top: 23px;
	opacity: 1;
	visibility: visible;
}

/*.header__top__right__language:after {
	position: absolute;
	right: -21px;
	top: 1px;
	height: 20px;
	width: 1px;
	background: var(--primary-theme-color);
	opacity: 0.1;
	content: "";
}*/
.header__top__right__language img {
	margin-right: 6px;
}

.header__top__right__language div {
	font-size: 14px;
	color: var(--font-black-color);
	display: inline-block;
	margin-right: 4px;
}

.header__top__right__language span {
	font-size: 14px;
	color: #1c1c1c;
	position: relative;
	top: 2px;
}

.header__top__right__language ul {
	background: var(--secondary-theme-color);
	width: 160px;
	text-align: left;
	padding: 5px 0;
	position: absolute;
	left: 0;
	top: 43px;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__top__right__language ul li {
	list-style: none;
	padding: 5px;
}

.header__top__right__language ul li i {
	padding-left: 5px;
}

.header__top__right__language ul li a {
	font-size: 13px;
	color: var(--font-white-color);
	padding: 5px 10px;
}

.header__top__right__language ul li a:hover {
	color: var(--font-white-color);
	font-weight: 600;
}

.header__top__right__auth {
	display: inline-block;
}

.header__top__right__auth a {
	display: block;
	font-size: 14px;
	color: var(--font-black-color);
}

.header__top__right__auth a i {
	margin-right: 6px;
}

/*
.header__logo {
	padding: 15px 0;
	padding-bottom: 5px;
}
*/
.header__logo a {
	display: inline-block;
}

.header__menu {
	padding: 8px 0;
	/*background-color: #272626;*/
	text-align: center;
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 50px;
	position: relative;
}

.header__menu ul li .header__menu__dropdown {
	position: absolute;
	left: 0;
	top: 50px;
	background: #222222;
	width: 180px;
	z-index: 9;
	padding: 5px 0;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
}

.header__menu ul li .header__menu__dropdown li {
	margin-right: 0;
	display: block;
}

.header__menu ul li .header__menu__dropdown li:hover>a {
	color: var(--secondary-theme-color);
}

.header__menu ul li .header__menu__dropdown li a {
	text-transform: capitalize;
	color: var(--font-black-color);
	font-weight: 400;
	padding: 5px 15px;
}

.header__menu ul li.active a {
	color: var(--secondary-theme-color);
}

.header__menu ul li:hover .header__menu__dropdown {
	top: 30px;
	opacity: 1;
	visibility: visible;
}

.header__menu ul li:hover>a {
	color: var(--secondary-theme-color);
}

.header__menu ul li:last-child {
	margin-right: 0;
}

.header__menu ul li a {
	font-size: 14px;
	color: var(--font-white-color);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1.0px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	padding: 5px 0;
	display: block;
}

.header__cart {
	text-align: right;
	padding: 20px 0;
}

.header__cart ul {
	display: inline-block;
	margin-right: 25px;
	padding-top: 10px;
}

.mobile_view_cart ul {
	padding-top: 15px;
}

.header__cart ul li {
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

.header__cart ul li:last-child {
	margin-right: 0;
}

.header__cart ul li a {
	position: relative;
}

.header__cart ul li a i {
	font-size: 18px;
	color: #1c1c1c;
}

.header__cart ul li a span {
	height: 13px;
	width: 13px;
	background: var(--primary-theme-color);
	font-size: 10px;
	color: var(--font-white-color);
	line-height: 13px;
	text-align: center;
	font-weight: 600;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: -7px;
	right: 5px;
}

.header__cart .header__cart__price {
	font-size: 14px;
	color: var(--primary-theme-color);
	font-weight: 600;
	display: inline-block;
}

.header__cart .header__cart__price span {
	color: var(--font-white-color);
	font-weight: 600;
}

.humberger__menu__wrapper {
	display: none;
}

.humberger__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/

.hero {
	/*padding-bottom: 50px;*/
}

.hero.hero-normal {
	padding-bottom: 30px;
}

.hero.hero-normal .hero__categories {
	position: relative;
}

.hero.hero-normal .hero__categories ul {
	display: none;
	position: absolute;
	left: 0;
	top: 46px;
	width: 100%;
	z-index: 9;
	background: var(--font-white-color);
}

.hero.hero-normal .hero__search {
	margin-bottom: 0;
}

.hero__categories__all {
	background: var(--secondary-theme-color);
	position: relative;
	padding: 10px 25px 10px 40px;
	cursor: pointer;
}

.hero__categories__all i {
	font-size: 16px;
	color: var(--font-white-color);
	margin-right: 10px;
}

.hero__categories__all span {
	font-size: 18px;
	font-weight: 600;
	color: var(--font-white-color);
}

.hero__categories__all:after {
	position: absolute;
	right: 18px;
	top: 9px;
	content: "3";
	font-family: "ElegantIcons";
	font-size: 18px;
	color: var(--font-white-color);
}

.hero__categories ul {
	border: 1px solid #ebebeb;
	padding-left: 40px;
	padding-top: 10px;
	padding-bottom: 12px;
}

.hero__categories ul li {
	list-style: none;
}

.hero__categories ul li a {
	font-size: 16px;
	color: #1c1c1c;
	line-height: 39px;
	display: block;
}

.hero__search {
	overflow: hidden;
	margin-bottom: 0px;
	margin-top: 15px;
}

.hero__search__form {
	width: 100%;
	height: 50px;
	border: 1px solid gainsboro;
	border-radius: 4px;
	overflow: hidden;
	position: relative;

}

.hero__search__form form .hero__search__categories {
	width: 20%;
	float: left;
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 600;
	padding-left: 0px;
	padding-top: 0px;
	position: relative;
}

.hero__search__form form .hero__search__categories:after {
	position: absolute;
	right: 0;
	top: 14px;
	height: 20px;
	width: 1px;
	background: var(--primary-theme-color);
	opacity: 0.1;
	content: "";
}

.hero__search__form form .hero__search__categories span {
	position: absolute;
	right: 14px;
	top: 14px;
}

.hero__search__form form input {
	width: 100%;
	border: none;
	height: 48px;
	font-size: 15px;
	color: #b2b2b2;
	padding-left: 10px;
}

.hero__search__form form input::placeholder {
	color: #b2b2b2;
}

.hero__search__form form button {
	position: absolute;
	right: 0;
	top: -1px;
	height: 50px;
}

.hero__search__phone {
	float: right;
}

.hero__search__phone__icon {
	font-size: 18px;
	color: var(--secondary-theme-color);
	height: 50px;
	width: 50px;
	background: var(--primary-theme-color);
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
	float: left;
	margin-right: 20px;
}

.hero__search__phone__text {
	overflow: hidden;
}

.hero__search__phone__text h5 {
	color: #1c1c1c;
	font-weight: 600;
	margin-bottom: 5px;
}

.hero__search__phone__text span {
	font-size: 14px;
	color: #6f6f6f;
}

.hero__item {
	height: 431px;
	display: flex;
	align-items: center;
	padding-left: 75px;
}

.hero__text span {
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 4px;
	color: var(--secondary-theme-color);
}

.hero__text h2 {
	font-size: 46px;
	color: #252525;
	line-height: 52px;
	font-weight: 600;
	margin: 10px 0;
}

.hero__text p {
	margin-bottom: 35px;
}

/*---------------------
  Categories
-----------------------*/

.categories__item {
	position: relative;
	cursor: pointer;
	margin-bottom: 10px;
	padding: 10px;
	margin: 0 auto;
	/* border-top-right-radius:50%;
    border-top-left-radius: 50%;
    border: 2px solid var(--icon-theme-color);
   	background: #ffffff;*/
}

.categories__item img {
	height: 260px;
	padding: 30px;
}

.categories__item h5 {
	position: absolute;
	left: 0;
	width: 100%;
	/*padding: 0 20px;*/
	bottom: 0px;
	text-align: center;
}

.categories__item h5 a:hover {
	color: var(--font-white-color);
	background: var(--secondary-theme-color);
	border: 1px solid var(--icon-theme-color);
}


.categories__item h5 a {
	font-size: 14px;
	color: var(--font-white-color);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 12px 0 10px;
	background: var(--primary-theme-color);
	display: block;
}

.categories__slider .col-lg-3 {
	max-width: 100%;
}

.categories__slider.owl-carousel .owl-nav button {
	font-size: 25px;
	color: #1c1c1c;
	height: 25px;
	width: 25px;
	line-height: 24px;
	border-radius: 50%;
	text-align: center;
	/*border: 1px solid #ebebeb;*/
	position: absolute;
	left: 10px;
	top: 65%;
	-webkit-transform: translateY(-35px);
	background: var(--primary-theme-color);
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 0px;
}

/*---------------------
  Featured
-----------------------*/

.featured {
	padding-top: 10px;
	padding-bottom: 10px;
}

.featured__controls {
	text-align: center;
	margin-bottom: 50px;
}

.featured__controls ul li {
	list-style: none;
	font-size: 18px;
	color: #1c1c1c;
	display: inline-block;
	margin-right: 25px;
	position: relative;
	cursor: pointer;
}

.featured__controls ul li.active:after {
	opacity: 1;
}

.featured__controls ul li:after {
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 100%;
	height: 2px;
	background: var(--secondary-theme-color);
	content: "";
	opacity: 0;
}

.featured__controls ul li:last-child {
	margin-right: 0;
}

.featured__item {
	margin-bottom: 50px;
}

.featured__item:hover .featured__item__pic .featured__item__pic__hover {
	bottom: 20px;
}

.featured__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
	background-position: center center;
}

.featured__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.featured__item__pic__hover li:last-child {
	margin-right: 0;
}

.featured__item__pic__hover li:hover a {
	background: var(--secondary-theme-color);
	border-color: var(--secondary-theme-color);
}

.featured__item__pic__hover li:hover a i {
	color: var(--font-white-color);
	transform: rotate(360deg);
}

.featured__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #ebebeb;
	background: var(--font-white-color);
	display: block;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.featured__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.featured__item__text {
	text-align: center;
	padding-top: 15px;
	padding-bottom: 10px;
	background: var(--primary-theme-color);
}

.featured__item__text h6 {
	margin-bottom: 10px;
}

.featured__item__text h6 a {
	color: var(--secondary-theme-color);
}

.featured__item__text h5 {
	color: var(--secondary-theme-color);
	font-weight: 600;
}

/*---------------------
  Latest Product
-----------------------*/

.latest-product {
	padding-top: 80px;
	padding-bottom: 0;
}

.latest-product__text h4 {
	font-weight: 600;
	color: #1c1c1c;
	margin-bottom: 45px;
}

.latest-product__slider.owl-carousel .owl-nav {
	position: absolute;
	right: 20px;
	top: -75px;
}

.latest-product__slider.owl-carousel .owl-nav button {
	height: 30px;
	width: 30px;
	background: #F3F6FA;
	border: 1px solid #e6e6e6;
	font-size: 14px;
	color: #636363;
	margin-right: 10px;
	line-height: 30px;
	text-align: center;
}

.latest-product__slider.owl-carousel .owl-nav button span {
	font-weight: 600;
}

.latest-product__slider.owl-carousel .owl-nav button:last-child {
	margin-right: 0;
}

.latest-product__item {
	margin-bottom: 20px;
	overflow: hidden;
	display: block;
}

.latest-product__item__pic {
	float: left;
	margin-right: 26px;
}

.latest-product__item__pic img {
	height: 110px;
	width: 110px;
}

.latest-product__item__text {
	overflow: hidden;
	padding-top: 10px;
}

.latest-product__item__text h6 {
	color: #252525;
	margin-bottom: 8px;
}

.latest-product__item__text span {
	font-size: 18px;
	display: block;
	color: #252525;
	font-weight: 600;
}

/*---------------------
  Form BLog
-----------------------*/

.from-blog {
	padding-top: 50px;
	padding-bottom: 50px;
}

.from-blog .blog__item {
	margin-bottom: 30px;
}

.from-blog__title {
	margin-bottom: 70px;
}

/*---------------------
  Breadcrumb
-----------------------*/

.breadcrumb-section {
	display: flex;
	align-items: center;
	padding: 10px 0 10px;
	background: var(--secondary-theme-color);
	background: rgba(0, 0, 0, 0.48) !important;
}

.breadcrumb__text h2 {
	font-size: 20px;
	color: var(--font-white-color);
	font-weight: 600;
}

.breadcrumb__option a {
	display: inline-block;
	font-size: 16px;
	color: var(--font-white-color);
	font-weight: 600;
	margin-right: 20px;
	position: relative;
}

.breadcrumb__option a:after {
	position: absolute;
	right: -12px;
	top: 13px;
	height: 1px;
	width: 10px;
	background: var(--font-white-color);
	content: "";
}

.breadcrumb__option span {
	display: inline-block;
	font-size: 16px;
	color: var(--font-white-color);
}

/*---------------------
  Sidebar
-----------------------*/

.sidebar__item {
	margin-bottom: 35px;
	border: 1px solid var(--icon-theme-color);
	background: #ffffff;
	box-shadow: 2px 0px 5px 1px #3a3838
}

.sidebar__item.sidebar__item__color--option {
	overflow: hidden;
}

.sidebar__item h4 {
	color: var(--font-white-color);
	font-weight: 600;
	margin-bottom: 0px;
	padding: 10px;
	font-size: 18px;
	background: var(--primary-theme-color);
	background: gainsboro;
}

.sidebar__item ul li {
	list-style: none;
}

.sidebar__item ul li a {
	font-size: 16px;
	color: #1c1c1c;
	line-height: 25px;
	display: block;
	padding-left: 10px;
}

.sidebar__item .latest-product__text {
	position: relative;
}

.sidebar__item .latest-product__text h4 {
	margin-bottom: 45px;
}

.sidebar__item .latest-product__text .owl-carousel .owl-nav {
	right: 0;
}

.price-range-wrap .range-slider {
	margin-top: 10px;
}

.price-range-wrap .range-slider .price-input {
	position: relative;
}

.price-range-wrap .range-slider .price-input:after {
	position: absolute;
	left: 38px;
	top: 13px;
	height: 1px;
	width: 5px;
	background: #dd2222;
	content: "";
}

.price-range-wrap .range-slider .price-input input {
	font-size: 16px;
	color: #dd2222;
	font-weight: 600;
	max-width: 20%;
	border: none;
	display: inline-block;
}

.price-range-wrap .price-range {
	border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content {
	border: none;
	background: #ebebeb;
	height: 5px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background: var(--primary-theme-color);
	border: none;
	-webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
	outline: none;
	cursor: pointer;
}

.price-range-wrap .price-range .ui-slider-range {
	background: #dd2222;
	border-radius: 0;
}

.price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
	background: #dd2222;
}

.sidebar__item__color {
	float: left;
	width: 40%;
}

.sidebar__item__color.sidebar__item__color--white label:after {
	border: 2px solid #333333;
	background: transparent;
}

.sidebar__item__color.sidebar__item__color--gray label:after {
	background: #E9A625;
}

.sidebar__item__color.sidebar__item__color--red label:after {
	background: #D62D2D;
}

.sidebar__item__color.sidebar__item__color--black label:after {
	background: #252525;
}

.sidebar__item__color.sidebar__item__color--blue label:after {
	background: #249BC8;
}

.sidebar__item__color.sidebar__item__color--green label:after {
	background: #3CC032;
}

.sidebar__item__color label {
	font-size: 16px;
	color: #333333;
	position: relative;
	padding-left: 32px;
	cursor: pointer;
}

.sidebar__item__color label input {
	position: absolute;
	visibility: hidden;
}

.sidebar__item__color label:after {
	position: absolute;
	left: 0;
	top: 5px;
	height: 14px;
	width: 14px;
	background: #222;
	content: "";
	border-radius: 50%;
}

.sidebar__item__size {
	display: inline-block;
	margin-right: 16px;
	margin-bottom: 10px;
	padding-left: 10px;
}

.sidebar__item__size label {
	font-size: 12px;
	color: #6f6f6f;
	display: inline-block;
	padding: 8px 25px 6px;
	background: #dedede;
	cursor: pointer;
	margin-bottom: 0;
}

.sidebar__item__size label input {
	position: absolute;
	visibility: hidden;
}

/*---------------------
  Shop Grid
-----------------------*/

.product {
	padding-top: 20px;
	padding-bottom: 20px;
}

.product__discount {
	padding-bottom: 0px;
}

.product__discount__title {
	text-align: left;
	/*margin-bottom: 25px;*/
	float: left;
}

.product__discount__title h2 {
	display: inline-block;
}

.product__discount__title h2:after {
	margin: 0;
	width: 100%;
}

.product__discount__item {
	margin-bottom: 10px;
	position: relative;
}

.product__discount__item:hover .product__discount__item__pic .product__item__pic__hover {
	bottom: 30%;
}

.product__discount__item__pic {
	height: 225px;
	/*padding: 10px 45px 10px 45px;*/
	position: relative;
	overflow: hidden;
	border: 1px solid var(--icon-theme-color);
	padding: 0px;
	display: flex;
	background: #ffffff;
	/*  box-shadow: 0px 0px 5px -1px #444a4a;*/
	border: 0;
}

.product__discount__item__pic img {
	padding: 0px;
	max-height: 200px;
	margin: 0 auto;
	width: 100%;
}

.product__discount__item__pic .product__discount__percent {
	/*height: 45px;
	width: 45px;
	background: var(--primary-theme-color);
	border-radius: 50%;
	font-size: 14px;
	color: var(--font-white-color);
	line-height: 45px;
	text-align: center;
	position: absolute;
	left: 15px;
	top: 15px;
	cursor: pointer;*/
	height: 35px;
	width: 35px;
	background: var(--primary-theme-color);
	border-radius: 50%;
	font-size: 18px;
	color: var(--font-white-color);
	line-height: 38px;
	text-align: center;
	position: absolute;
	left: 80%;
	top: 5px;
	cursor: pointer;
}

.product__discount__item__pic .product__discount__percent:hover {
	background: #333638;
}

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	border-color: var(--icon-theme-color);
	color: var(--font-white-color) !important;
}

.product__item__pic__hover li:hover a i {
	color: var(--font-white-color);
	transform: rotate(360deg);
}

.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #d51212;
	background: var(--font-white-color);
	display: block;
	border-radius: 10%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li a i {
	position: relative;
	/*transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;*/
}

.product__discount__item__text {
	text-align: center;
	padding: 3px 0 3px 0px;
	background: var(--primary-theme-color);
	cursor: pointer;

}


.product__discount__item__text span {
	font-size: 14px;
	color: #000000;
	display: block;
	/*margin-bottom: 4px;*/
}

.product__discount__item__text h5 {
	margin-bottom: 6px;
}

.product__discount__item__text h5 a {
	color: #1c1c1c;
}

.product__discount__item__text .product__item__price {
	font-size: 18px;
	color: #54655D;
	font-weight: 600;
}

.product__discount__item__text .product__item__price span {
	display: inline-block;
	font-weight: 400;
	text-decoration: line-through;
	margin-left: 10px;
}

.product__discount__slider .col-lg-4 {
	max-width: 100%;
}

.product__discount__slider.owl-carousel .owl-dots {
	text-align: center;
	margin-top: 30px;
}

.product__discount__slider.owl-carousel .owl-dots button {
	height: 12px;
	width: 12px;
	border: 1px solid #b2b2b2;
	border-radius: 50%;
	margin-right: 12px;
}

.product__discount__slider.owl-carousel .owl-dots button.active {
	background: #707070;
	border-color: #6f6f6f;
}

.product__discount__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

.filter__item {
	padding-top: 10px;
	/*border-top: 1px solid #ebebeb;*/
	padding-bottom: 0px;
}

.filter__sort {
	margin-bottom: 5px;
}

.filter__sort span {
	font-size: 16px;
	font-weight: 600;
	display: inline-block;
}

.filter__sort .nice-select {
	background-color: #fff;
	border-radius: 0;
	border: none;
	display: inline-block;
	float: none;
	height: 0;
	line-height: 0;
	padding-left: 18px;
	padding-right: 30px;
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 600;
	cursor: pointer;
}

.filter__sort .nice-select span {
	color: #1c1c1c;
}

.filter__sort .nice-select:after {
	border-bottom: 1.5px solid #1c1c1c;
	border-right: 1.5px solid #1c1c1c;
	height: 8px;
	margin-top: 0;
	right: 16px;
	width: 8px;
	top: -5px;
}

.filter__sort .nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale(1) translateY(0);
	-ms-transform: scale(1) translateY(0);
	transform: scale(1) translateY(0);
}

.filter__sort .nice-select .list {
	border-radius: 0;
	margin-top: 0;
	top: 15px;
}

.filter__sort .nice-select .option {
	line-height: 30px;
	min-height: 30px;
}

.filter__found {
	text-align: center;
	margin-bottom: 15px;
}

.filter__found h6 {
	font-size: 16px;
	color: #b2b2b2;
}

.filter__found h6 span {
	color: #1c1c1c;
	font-weight: 600;
	margin-right: 5px;
}

.filter__option {
	text-align: right;
	margin-bottom: 15px;
}

.filter__option span {
	font-size: 24px;
	color: #b2b2b2;
	margin-right: 10px;
	cursor: pointer;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.filter__option span:last-child {
	margin: 0;
}

.filter__option span:hover {
	color: var(--secondary-theme-color);
}

.product__item {
	margin-bottom: 50px;
}

.product__item:hover .product__item__pic .product__item__pic__hover {
	bottom: 20px;
}

.product__item__pic {
	height: 270px;
	position: relative;
	overflow: hidden;
}

.product__item__pic__hover {
	position: absolute;
	left: 0;
	bottom: -50px;
	width: 100%;
	text-align: center;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__pic__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 6px;
}

.product__item__pic__hover li:last-child {
	margin-right: 0;
}

.product__item__pic__hover li:hover a {
	/*background: var(--primary-theme-color);
	border-color: var(--primary-theme-color);*/
}

.product__item__pic__hover li:hover a i {
	color: var(--font-white-color);
	transform: rotate(360deg);
}

/*.product__item__pic__hover li a {
	font-size: 16px;
	color: #1c1c1c;
	height: 30px;
	width: 30px;
	line-height: 30px;
	text-align: center;
	border: 1px solid var(--primary-theme-color);
	background: var(--font-white-color);
	display: block;
	border-radius: 10%;
	-webkit-transition: all, 0.5s;
	-moz-transition: all, 0.5s;
	-ms-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}*/

/*.product__item__pic__hover li a i {
	position: relative;
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}*/

.product__item__text {
	text-align: center;
	padding-top: 15px;
	padding-bottom: 10px;
	background: var(--primary-theme-color);
}

.product__item__text h6 {
	margin-bottom: 10px;
}

.product__item__text h6 a {
	color: var(--secondary-theme-color);
}

.product__item__text h5 {
	color: var(--secondary-theme-color);
	font-weight: 600;
}

.product__pagination,
.blog__pagination {
	padding-top: 10px;
}

.product__pagination a,
.blog__pagination a {
	display: inline-block;
	width: 30px;
	height: 30px;
	border: 1px solid #b2b2b2;
	font-size: 14px;
	color: #b2b2b2;
	font-weight: 600;
	line-height: 28px;
	text-align: center;
	margin-right: 16px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__pagination a:hover,
.blog__pagination a:hover {
	background: var(--secondary-theme-color);
	border-color: var(--secondary-theme-color);
	color: var(--font-white-color);
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
	margin-right: 0;
}

/*---------------------
  Shop Details
-----------------------*/

.product-details {
	padding-top: 80px;
}

.product__details__pic__item {
	margin-bottom: 20px;
}

.product__details__pic__item img {
	min-width: 100%;
}

.product__details__pic__slider img {
	cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
	width: auto;
}

.product__details__text h3 {
	color: #252525;
	font-weight: 600;
	margin-bottom: 16px;
}

.product__details__text .product__details__rating {
	font-size: 14px;
	margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
	margin-right: -2px;
	color: #EDBB0E;
}

.product__details__text .product__details__rating span {
	color: #dd2222;
	margin-left: 4px;
}

.product__details__text .product__details__price {
	font-size: 30px;
	color: #54655D;
	font-weight: 600;
	margin-bottom: 15px;
}

.product__details__text p {
	/*margin-bottom: 45px;*/
	color: var(--font-black-color);
}

.product__details__text .primary-btn {
	padding: 16px 28px 14px;
	margin-right: 6px;
	/*margin-bottom: 5px;*/
}

.product__details__text .heart-icon {
	display: inline-block;
	font-size: 16px;
	color: #6f6f6f;
	padding: 13px 16px 13px;
	background: #f5f5f5;
}

.product__details__text ul {
	/*border-top: 1px solid #ebebeb;*/
	padding-top: 15px;
	margin-top: 15px;
}

.product__details__text ul li {
	font-size: 16px;
	color: #1c1c1c;
	list-style: none;
	line-height: 36px;
}

.product__details__tab__desc p ul li,
.product__details__tab__desc p ol li {
	list-style: inside !important;
}

.product__details__text ul li b {
	font-weight: 600;
	width: 170px;
	display: inline-block;
}

.product__details__text ul li span samp {
	color: #dd2222;
}

.product__details__text ul li .share {
	display: inline-block;
}

.product__details__text ul li .share a {
	display: inline-block;
	font-size: 15px;
	color: #1c1c1c;
	margin-right: 25px;
}

.product__details__text ul li .share a:last-child {
	margin-right: 0;
}

.product__details__quantity {
	display: inline-block;
	margin-right: 50px;
}

.clsaddtocart:hover {
	background: #fff;
	color: #0a6e2a;
	border: 1px solid #0a6e2a;
}

.pro-qty {
	width: 50px;
	height: 50px;
	display: inline-block;
	position: relative;
	text-align: center;
	background: var(--primary-theme-color);
	margin-bottom: 0px;
}

.pro-qty input {
	height: 100%;
	width: 100%;
	font-size: 20px;
	color: #6f6f6f;
	width: 70px;
	/*border: none;*/
	background: var(--font-white-color);
	text-align: center;
}

.pro-qty .qtybtn {
	width: 35px;
	font-size: 22px;
	color: var(--font-white-color);
	cursor: pointer;
	display: inline-block;
}

.product__details__tab {
	padding-top: 0px;
}

.product__details__tab .nav-tabs {
	border-bottom: none;
	justify-content: center;
	position: relative;
}

.product__details__tab .nav-tabs:before {
	position: absolute;
	left: 0;
	top: 12px;
	height: 1px;
	width: 500px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs:after {
	position: absolute;
	right: 0;
	top: 12px;
	height: 1px;
	width: 500px;
	background: #ebebeb;
	content: "";
}

.product__details__tab .nav-tabs li {
	margin-bottom: 0;
	margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
	margin-right: 0;
}

.product__details__tab .nav-tabs li a {
	font-size: 25px;
	color: var(--icon-theme-color) !important;
	font-weight: 600;
	border: none;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0;
}

.product__details__tab .product__details__tab__desc {
	padding-top: 20px;
}

.product__details__tab .product__details__tab__desc h6 {
	font-weight: 600;
	color: #333333;
	margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
	color: #666666;
}

/*---------------------
  Shop Details
-----------------------*/

.related-product {
	padding-bottom: 30px;
}

.related__product__title {
	margin-bottom: 70px;
}

/*---------------------
  Shop Cart
-----------------------*/

.shoping-cart {
	padding-top: 80px;
	padding-bottom: 80px;
}

.shoping__cart__table {
	margin-bottom: 30px;
}

.shoping__cart__table table {
	width: 100%;
	text-align: center;
}

.shoping__cart__table table thead tr {
	border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table thead th {
	font-size: 20px;
	font-weight: 600;
	color: #1c1c1c;
	padding: 10px;
}

.shoping__cart__table table thead th.shoping__product {
	text-align: left;
}

.shoping__cart__table table tbody tr td {
	padding-top: 5px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table tbody tr td.shoping__cart__item {
	width: 630px;
	text-align: left;
}

.shoping__cart__table table tbody tr td.shoping__cart__item img {
	display: inline-block;
	max-height: 150px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item h5 {
	color: #1c1c1c;
	display: inline-block;
	font-weight: 600;
}

.shoping__cart__table table tbody tr td.shoping__cart__price {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 600;
	width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__total {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 600;
	width: 110px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close {
	text-align: right;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close span {
	font-size: 24px;
	color: #b2b2b2;
	cursor: pointer;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity {
	width: 225px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty {
	width: 140px;
	height: 40px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input {
	color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input::placeholder {
	color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty .qtybtn {
	width: 25px;
}

.primary-btn.cart-btn {
	color: var(--font-white-color);
	padding: 14px 30px 12px;
	background: var(--primary-theme-color);
	background: gainsboro;
	border-radius: 25px;
	color: #000;
	margin: 19px 0 0 0;
}

.primary-btn.cart-btn span {
	font-size: 14px;
}

.primary-btn.cart-btn.cart-btn-right {
	float: right;
}

.shoping__discount {
	margin-top: 45px;
}

.shoping__discount h5 {
	font-size: 20px;
	color: #1c1c1c;
	font-weight: 600;
	margin-bottom: 25px;
}

.shoping__discount form input {
	width: 255px;
	height: 46px;
	border: 1px solid #cccccc;
	font-size: 16px;
	color: #b2b2b2;
	text-align: center;
	display: inline-block;
	margin-right: 15px;
	vertical-align: top;
}

.shoping__discount form input::placeholder {
	color: #b2b2b2;
}

.shoping__discount form button {
	padding: 0 30px;
	font-size: 14px;
	letter-spacing: 2px;
	background: #6f6f6f;
	width: auto;
	height: 46px;
	color: #fff;
	border: none;
	vertical-align: top;
}

.shoping__checkout {
	background: #f0f0f0;
	padding: 30px;
	padding-top: 10px;
	/*margin-top: 50px;*/
}

.shoping__checkout h5 {
	color: #1c1c1c;
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 28px;
}

.shoping__checkout ul {
	margin-bottom: 28px;
}

.shoping__checkout ul li {
	font-size: 16px;
	color: #1c1c1c;
	font-weight: 600;
	list-style: none;
	overflow: hidden;
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 13px;
	margin-bottom: 18px;
}

.shoping__checkout ul li:last-child {
	padding-bottom: 0;
	border-bottom: none;
	margin-bottom: 0;
}

.shoping__checkout ul li span {
	font-size: 18px;
	color: #AC9261;
	float: right;
}

.shoping__checkout .primary-btn {
	display: block;
	text-align: center;
}

/*---------------------
  Checkout
-----------------------*/

.checkout {
	padding-top: 15px;
	padding-bottom: 60px;
}

.checkout h6 {
	color: #999999;
	text-align: center;
	background: #f5f5f5;
	border-top: 1px solid #6AB963;
	padding: 12px 0 12px;
	margin-bottom: 75px;
}

.checkout h6 span {
	font-size: 16px;
	color: #6AB963;
	margin-right: 5px;
}

.checkout h6 a {
	text-decoration: underline;
	color: #999999;
}

.checkout__form h4 {
	color: #1c1c1c;
	font-weight: 600;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 5px;
	margin-bottom: 15px;
	font-size: 18px;
}

.checkout__form p {
	column-rule: #b2b2b2;
}

.checkout__input {
	margin-bottom: 20px;
}

.checkout__input p {
	color: #1c1c1c;
	margin-bottom: 20px;
}

.checkout__input p span {
	color: #dd2222;
}

.checkout__input input {
	width: 100%;
	height: 46px;
	border: 1px solid #ebebeb;
	padding-left: 20px;
	font-size: 16px;
	color: var(--icon-theme-color);
	border-radius: 4px;
}

.checkout__input input.checkout__input__add {
	margin-bottom: 20px;
}

.checkout__input input::placeholder {
	color: #b2b2b2;
}

.checkout__input__checkbox {
	margin-bottom: 10px;
}

.checkout__input__checkbox label {
	position: relative;
	font-size: 16px;
	color: #1c1c1c;
	padding-left: 40px;
	cursor: pointer;
}

.checkout__input__checkbox label input {
	position: absolute;
	visibility: hidden;
}

.checkout__input__checkbox label input:checked~.checkmark {
	background: #7fad39;
	border-color: #7fad39;
}

.checkout__input__checkbox label input:checked~.checkmark:after {
	opacity: 1;
}

.checkout__input__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 4px;
	height: 16px;
	width: 14px;
	border: 1px solid #a6a6a6;
	content: "";
	border-radius: 4px;
}

.checkout__input__checkbox label .checkmark:after {
	position: absolute;
	left: 1px;
	top: 1px;
	width: 10px;
	height: 8px;
	border: solid white;
	border-width: 3px 3px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	content: "";
	opacity: 0;
}

.checkout__order {
	background: #f0f0f0;
	padding: 40px;
	padding-top: 30px;
}

.checkout__order h4 {
	color: #1c1c1c;
	font-weight: 600;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.checkout__order .checkout__order__products {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 600;
	margin-bottom: 10px;
}

.checkout__order .checkout__order__products span {
	float: right;
}

.checkout__order ul {
	margin-bottom: 12px;
}

.checkout__order ul li {
	font-size: 16px;
	color: #6f6f6f;
	line-height: 40px;
	list-style: none;
}

.checkout__order ul li span {
	font-weight: 600;
	float: right;
}

.checkout__order .checkout__order__subtotal {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 600;
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #e1e1e1;
	padding-bottom: 15px;
	margin-bottom: 15px;
	padding-top: 15px;
}

.checkout__order .checkout__order__subtotal span {
	float: right;
}

.checkout__order .checkout__input__checkbox label {
	padding-left: 20px;
}

.checkout__order .checkout__order__total {
	font-size: 18px;
	color: #1c1c1c;
	font-weight: 600;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 15px;
	margin-bottom: 25px;
}

.checkout__order .checkout__order__total span {
	float: right;
	color: #AC9261;
}

.checkout__order button {
	font-size: 18px;
	letter-spacing: 2px;
	width: 100%;
	margin-top: 10px;
}

/*---------------------
  Blog
-----------------------*/
.pointer {
	cursor: pointer;
}

.blog__item {
	margin-bottom: 60px;
}

.blog__item__pic img {
	min-width: 100%;
}

.blog__item__text {
	/*padding-top: 25px;*/
	/*padding: 10px;
		margin-bottom: 20px;*/
}

.blog__item__text ul {
	margin-bottom: 15px;
}

.blog__item__text ul li {
	font-size: 16px;
	color: #b2b2b2;
	list-style: none;
	display: inline-block;
	margin-right: 15px;
}

.blog__item__text ul li:last-child {
	margin-right: 0;
}

.blog__item__text h5 {
	margin-bottom: 12px;
}

.blog__item__text h5 a {
	font-size: 20px;
	color: #1c1c1c;
	font-weight: 600;
}

.blog__item__text p {
	margin-bottom: 10px;
}

.blog__item__text .blog__btn {
	display: inline-block;
	font-size: 14px;
	color: var(--font-white-color);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	/*background: var(--primary-theme-color);*/
	background: #432616;
	padding: 7px 20px 10px;
	border-radius: 25px;
}

.blog__item__text .blog__btn span {
	position: relative;
	top: 1px;
	margin-left: 5px;
}

.blog__item__text .blog__btn__text {
	display: inline-block;
	font-size: 14px;
	color: var(--icon-theme-color);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	/*background: var(--font-white-color);*/
	background: #432616;
	border: 1px solid var(--icon-theme-color);
	padding: 3px 10px 4px;
	border-radius: 25px;

}

.blog__item__text .blog__btn__text span {
	position: relative;
	top: 1px;
	margin-left: 5px;
}

.blog__pagination {
	padding-top: 5px;
	position: relative;
}

.blog__pagination:before {
	position: absolute;
	left: 0;
	top: -29px;
	height: 1px;
	width: 100%;
	background: var(--primary-theme-color);
	opacity: 0.1;
	content: "";
}

#IdSubmitLogin:hover {
	color: #ffffff !important;
}

/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar {
	padding-top: 50px;
}

.blog__sidebar__item {
	margin-bottom: 50px;
}

.blog__sidebar__item h4 {
	color: #1c1c1c;
	font-weight: 600;
	margin-bottom: 25px;
}

.blog__sidebar__item ul li {
	list-style: none;
}

.blog__sidebar__item ul li a {
	font-size: 16px;
	color: #666666;
	line-height: 48px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__sidebar__item ul li a:hover {
	color: var(--secondary-theme-color);
}

.blog__sidebar__search {
	margin-bottom: 50px;
}

.blog__sidebar__search form {
	position: relative;
}

.blog__sidebar__search form input {
	width: 100%;
	height: 46px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 15px;
	border: 1px solid #e1e1e1;
	border-radius: 20px;
}

.blog__sidebar__search form input::placeholder {
	color: #6f6f6f;
}

.blog__sidebar__search form button {
	font-size: 16px;
	color: #6f6f6f;
	background: transparent;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	padding: 0px 18px;
}

.blog__sidebar__recent .blog__sidebar__recent__item {
	display: block;
}

.aspect-ratio {
	background-color: #f3f4f5;
	position: relative;
	width: 100%;
	aspect-ratio: 2 / 1;
}

.product-img {
	aspect-ratio: 2 / 1;
	background-color: #f3f4f5;
}

.product-img img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.slider-img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.blog__sidebar__recent .blog__sidebar__recent__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar__recent__item {
	overflow: hidden;
	margin-bottom: 20px;
}

.blog__sidebar__recent__item__pic {
	float: left;
	margin-right: 20px;
}

.blog__sidebar__recent__item__text {
	overflow: hidden;
}

.blog__sidebar__recent__item__text h6 {
	font-weight: 600;
	color: #333333;
	line-height: 20px;
	margin-bottom: 5px;
}

.blog__sidebar__recent__item__text span {
	font-size: 12px;
	color: #999999;
	text-transform: uppercase;
}

.blog__sidebar__item__tags a {
	font-size: 16px;
	color: #6f6f6f;
	background: #f5f5f5;
	display: inline-block;
	padding: 7px 26px 5px;
	margin-right: 6px;
	margin-bottom: 10px;
}

/*---------------------
  Blog Details Hero
-----------------------*/

.blog-details-hero {
	height: 350px;
	display: flex;
	align-items: center;
}

.blog__details__hero__text {
	text-align: center;
}

.blog__details__hero__text h2 {
	font-size: 46px;
	color: var(--font-white-color);
	font-weight: 600;
	margin-bottom: 10px;
}

.blog__details__hero__text ul li {
	font-size: 16px;
	color: var(--font-white-color);
	list-style: none;
	display: inline-block;
	margin-right: 45px;
	position: relative;
}

.blog__details__hero__text ul li:after {
	position: absolute;
	right: -26px;
	top: 0;
	content: "|";
}

.blog__details__hero__text ul li:last-child {
	margin-right: 0;
}

.blog__details__hero__text ul li:last-child:after {
	display: none;
}

/*---------------------
  Blog Details
-----------------------*/

.related-blog {
	padding-top: 70px;
	padding-bottom: 10px;
}

.related-blog-title {
	margin-bottom: 70px;
}

.blog-details {
	padding-bottom: 75px;
	border-bottom: 1px solid #e1e1e1;
}

.blog__details__text {
	margin-bottom: 45px;
}

.blog__details__text img {
	margin-bottom: 30px;
}

.blog__details__text p {
	font-size: 18px;
	line-height: 30px;
}

.blog__details__text h3 {
	color: #333333;
	font-weight: 600;
	line-height: 30px;
	margin-bottom: 30px;
}

.blog__details__author__pic {
	float: left;
	margin-right: 15px;
}

.blog__details__author__pic img {
	height: 92px;
	width: 92px;
	border-radius: 50%;
}

.blog__details__author__text {
	overflow: hidden;
	padding-top: 30px;
}

.blog__details__author__text h6 {
	color: #1c1c1c;
	font-weight: 600;
}

.blog__details__author__text span {
	font-size: 16px;
	color: #6f6f6f;
}

.blog__details__widget ul {
	margin-bottom: 5px;
}

.blog__details__widget ul li {
	font-size: 16px;
	color: #6f6f6f;
	list-style: none;
	line-height: 30px;
}

.blog__details__widget ul li span {
	color: #1c1c1c;
	font-weight: 600;
}

.blog__details__widget .blog__details__social a {
	display: inline-block;
	font-size: 20px;
	color: #6f6f6f;
	margin-right: 24px;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__widget .blog__details__social a:hover {
	color: var(--secondary-theme-color);
}

.blog__details__widget .blog__details__social a:last-child {
	margin-right: 0;
}

/*---------------------
  Footer
-----------------------*/

.footer {
	background: var(--footer-theme-color);
	padding-top: 30px;
	padding-bottom: 0;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about ul li {
	font-size: 16px;
	line-height: 36px;
	list-style: none;
}

.footer__about__logo {
	margin-bottom: 15px;
}

.footer__about__logo a {
	display: inline-block;
}

.footer__widget {
	margin-bottom: 30px;
	overflow: hidden;
}

.footer__widget h6 {
	font-weight: 600;
	margin-bottom: 10px;
}

.footer__widget ul {
	/*width: 50%;*/
	float: left;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	color: var(--font-white-color);
	font-size: 14px;
	line-height: 32px;
}

.footer__widget p {
	font-size: 14px;
	color: var(--font-white-color);
	margin-bottom: 30px;
}

.footer__widget form {
	position: relative;
	margin-bottom: 30px;
}

.footer__widget form input {
	width: 100%;
	font-size: 16px;
	padding-left: 20px;
	color: #1c1c1c;
	height: 46px;
	border: 1px solid #ededed;
}

.footer__widget form input::placeholder {
	color: #1c1c1c;
}

.footer__widget form button {
	position: absolute;
	right: 0;
	top: 0;
	padding: 0 26px;
	height: 100%;
}

.footer__widget .footer__widget__social a {
	display: inline-block;
	height: 41px;
	width: 41px;
	font-size: 16px;
	color: #404040;
	border: 1px solid #ededed;
	border-radius: 50%;
	line-height: 38px;
	text-align: center;
	background: var(--font-white-color);
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 10px;
}

.footer__widget .footer__widget__social a:last-child {
	margin-right: 0;
}

/*.footer__widget .footer__widget__social a:hover {
	background: var(--primary-theme-color);
	color: #ffffff !important;
	border-color: var(--secondary-theme-color);
}
*/
.footer__copyright {
	border-top: 1px solid var(--font-white-color);
	padding: 10px 0;
	overflow: hidden;
	margin-top: 0px;
}

.footer__copyright__text {
	font-size: 14px;
	text-align: center;
	line-height: 25px;
}

.footer__copyright__payment {
	float: right;
}

/*---------------------
  Contact
-----------------------*/

.contact {
	padding-top: 20px;
	padding-bottom: 20px;
}

.contact__widget {
	margin-bottom: 20px;
}

.contact__widget span {
	font-size: 35px;
	width: 60px;
	color: var(--secondary-theme-color);
	border: 1px solid var(--font-white-color);
	padding: 5px;
	border-radius: 10px;
}

.contact__widget h4 {
	color: #1c1c1c;
	font-weight: 600;
	margin-bottom: 6px;
	margin-top: 18px;
}

.contact__widget p {
	color: #666666;
	margin-bottom: 0;
}

.contact__widget h5 {
	color: var(--font-white-color);
	font-size: 14px;
	padding-top: 10px;
	padding-right: 80px;
	text-transform: uppercase;
}

/*---------------------
  Map
-----------------------*/

.map {
	height: 500px;
	position: relative;
}

.map iframe {
	width: 100%;
}

.map .map-inside {
	position: absolute;
	left: 50%;
	top: 160px;
	-webkit-transform: translateX(-175px);
	-ms-transform: translateX(-175px);
	transform: translateX(-175px);
}

.map .map-inside i {
	font-size: 48px;
	color: var(--secondary-theme-color);
	position: absolute;
	bottom: -75px;
	left: 50%;
	-webkit-transform: translateX(-18px);
	-ms-transform: translateX(-18px);
	transform: translateX(-18px);
}

.map .map-inside .inside-widget {
	width: 350px;
	background: var(--font-white-color);
	text-align: center;
	padding: 23px 0;
	position: relative;
	z-index: 1;
	-webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
	box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

.map .map-inside .inside-widget:after {
	position: absolute;
	left: 50%;
	bottom: -30px;
	-webkit-transform: translateX(-6px);
	-ms-transform: translateX(-6px);
	transform: translateX(-6px);
	border: 12px solid transparent;
	border-top: 30px solid var(--font-white-color);
	content: "";
	z-index: -1;
}

.map .map-inside .inside-widget h4 {
	font-size: 22px;
	font-weight: 600;
	color: #1c1c1c;
	margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
	list-style: none;
	font-size: 16px;
	color: #666666;
	line-height: 26px;
}

/*---------------------
  Contact Form
-----------------------*/

.contact__form__title {
	margin-bottom: 30px;
	text-align: center;
}

.contact__form__title h2 {
	color: #1c1c1c;
	font-weight: 600;
}

.contact-form {
	padding-top: 0px;
	padding-bottom: 80px;
}

.contact-form form input {
	width: 100%;
	height: 40px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 20px;
	margin-bottom: 10px;
	border: 1px solid var(--icon-theme-color);
	/*border-radius: 4px;*/
}

.contact-form form select {
	width: 100%;
	height: 40px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 20px;
	margin-bottom: 10px;
	border: 1px solid var(--icon-theme-color);
	/*border-radius: 4px;*/
}

.contact-form form input::placeholder {
	color: #6f6f6f;
}

.contact-form form textarea {
	width: 100%;
	height: 100px;
	font-size: 16px;
	color: #6f6f6f;
	padding-left: 20px;
	margin-bottom: 24px;
	border: 1px solid var(--icon-theme-color);
	/*border-radius: 4px;*/
	padding-top: 12px;
	resize: none;
}

.contact-form form textarea::placeholder {
	color: #6f6f6f;
}

.contact-form form button {
	/*font-size: 18px;*/
	letter-spacing: 2px;
}

.top-header {
	color: #fff;
	padding: 5px 0;
}


/* Custom CSS */
.header__top__right__language {
	font-size: 13px;
}

.display-all-category {
	border: none;
	height: 45px;
	font-size: 15px;
	border-radius: 0px;
}

.sticky {
	position: fixed;
	top: 0;
	background: var(--font-white-color);
	z-index: 9999;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	border-bottom: 3px solid var(--font-black-color);
}

.subcategory__list {
	padding-bottom: 10px;
}

.subcategory__chip {
	display: inline-block;
	padding: 0 15px;
	height: 35px;
	font-size: 14px;
	line-height: 35px;
	border-radius: 25px;
	margin-left: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	background-color: #e8e8e8;
}

.subcategory__chip.active {
	color: var(--secondary-theme-color) !important;
	background: var(--primary-theme-color);
}

.subcategory__chip img {
	float: left;
	margin: 0 10px 0 -25px;
	height: 50px;
	width: 50px;
	border-radius: 50%;
}

/* logo slider */

.slick-slide {
	margin: 0px 20px;
}

.slick-slide img {
	width: 100%;
	border-radius: 10%;
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: '';
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px;
}

[dir='rtl'] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

@media only screen and (max-width: 992px) {
	.cart_icon_total_amount {
		display: none;
	}

}

@media only screen and (max-width: 767px) {
	.cart_icon_total_amount {
		display: none;
	}

	.fa-bars:before {
		color: #0a6e2a;
	}

	.humberger__open {
		border: 1px solid #0a6e2a;
	}

	.loginmodel .sign-in-popup {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0;
		width: 100% !important;
		border-radius: 0;
	}
}

li a .fa,
.humberger__open i,
.headertopright__language i {
	color: var(--icon-theme-color);
}


.header__menu ul li .header__mega__menu__dropdown {
	position: absolute;
	left: -250px;
	top: 50px;
	background: #222222;
	width: 600px;
	z-index: 9;
	padding: 5px 0;
	-webkit-transition: all, 0.3s;
	-moz-transition: all, 0.3s;
	-ms-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	opacity: 0;
	visibility: hidden;
}

.header__menu ul li .header__mega__menu__dropdown li {
	margin-right: 0;
	display: block;
	text-align: left;
}

.header__menu ul li .header__mega__menu__dropdown li:hover>a {
	color: #cccccc;
	font-size: 15px;
}

.header__menu ul li .header__mega__menu__dropdown li a {
	text-transform: capitalize;
	color: var(--font-white-color);
	font-weight: 400;
	padding: 5px 0px;
}

.header__menu ul li:hover .header__mega__menu__dropdown {
	top: 30px;
	opacity: 1;
	visibility: visible;
}

.mega-dropdown-header {
	font-size: 16px;
	text-align: left;
	padding: 5px;
	font-weight: 600;
	border-bottom: 1px solid var(--font-white-color);
}

.product__discount__item__text h6 a {
	color: #54655D;

}

@media (min-width: 992px) {
	.col-pg-3 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 20%;
	}
}

.mobile_view_cart {
	display: none;
}

/*style */
.exo-menu {
	width: 100%;
}

.exo-menu>li {
	display: inline-block;
	float: left;
}

li.drop-down ul>li>a:hover {
	background: #333638;
	color: #fff;
}

.exo-menu li a {
	font-size: 14px;
	color: var(--font-black-color);
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0s ease 0s, all 0.3s ease 0s;
	padding: 5px 0px;
	display: block;
	color: #432616;
}

.animated li a {
	font-size: 11px;
}

li.drop-down,
.flyout-right,
.flyout-left {
	position: relative;
}

li.drop-down>ul {
	left: 0px;
	min-width: 230px;
	z-index: 9;
	list-style: none;
}

.drop-down-ul {
	display: none;
}

.flyout-right>ul,
.flyout-left>ul {
	top: 0;
	min-width: 230px;
	display: none;
	list-style: none;
}

li.drop-down>ul>li>a,
.flyout-right ul>li>a,
.flyout-left ul>li>a {
	color: #000000;
	display: block;
	padding: 12px 22px;
	text-decoration: none;
	background: var(--primary-theme-color);
	border-bottom: 1px solid var(--font-white-color);
	-webkit-transition: color 0.2s linear, background 0.2s linear;
	-moz-transition: color 0.2s linear, background 0.2s linear;
	-o-transition: color 0.2s linear, background 0.2s linear;
	transition: color 0.2s linear, background 0.2s linear;
}

.flyout-right ul>li>a,
.flyout-left ul>li>a {
	background-color: #303131;
}



.drop-down-ul:hover,
li.flyout-right>ul:hover,
li.flyout-right a:hover+ul,
li.flyout-left>ul:hover,
li.flyout-left a:hover+ul,
li.drop-down>a:hover+.drop-down-ul {
	display: block;
}

@media (min-width:767px) {
	.exo-menu>li>a {
		display: block;
		padding: 10px 15px;
	}

	.flyout-right>ul,
	.flyout-left>ul,
	li.drop-down>ul {
		position: absolute;
	}

	.flyout-right>ul,
	.flyout-left>ul {
		left: 100%;
	}
}

@media (max-width:767px) {
	.exo-menu {
		min-height: 58px;
		background-color: #23364B;
		width: 100%;
		display: none;
	}

	.exo-menu>li>a {
		width: 100%;
		display: none;
	}

	.exo-menu>li {
		width: 100%;
	}

	.flyout-right>ul,
	.flyout-left>ul,
	li.drop-down>ul {
		position: relative;
	}

}

.OrderInfoHeader {
	background: var(--primary-theme-color) !important;
	color: var(--font-white-color) !important;
}

.order-product-list {
	width: 100%;
	border: 1px solid #d7d7d8;
}

.order_list_attrbute {
	padding: 3px;
	font-size: 14px;
	font-weight: 600;
}

.no-product-available {
	width: 100%;
	border: 1px solid var(--icon-theme-color);
	height: 100px;
	background-color: #ffffff;
}

.no-product-available p {
	text-align: center;
	font-size: 25px;
	padding: 30px;
	color: var(--icon-theme-color);
}

#SweetAlertMsg {
	visibility: hidden;
	min-width: 600px;
	margin-left: -125px;
	color: #fff;
	text-align: center;
	border-radius: 50px 0px 0px 50px;
	padding: 7px;
	margin-top: 3px;
	position: fixed;
	z-index: 99999;
	right: -40%;
	top: 1%;
	font-size: 15px;
}


.storename {
	background: var(--primary-theme-color);
	color: var(--font-white-color);
	font-size: 14px;
	padding: 8px 10px;
}

.middle {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.product_size_hover {
	transition: .5s ease;
	/*opacity: 0;*/
	position: absolute;
	top: 62%;
	left: 20px;
	font-weight: 600;
	font-size: 14px;
	background: var(--primary-theme-color);
	color: #ffffff !important;
	text-align: center;
	width: 85%;
}

.product__discount__item:hover .product_size_hover {
	opacity: 1;
}

.vendorimg:hover .vendorlogo {
	opacity: 0.3;
}

.vendorimg:hover .middle {
	opacity: 1;
	cursor: pointer;
}


/* Login Model */

[data-popup] {
	display: none;
	position: fixed;
	z-index: 9999;
	right: 0;
	left: 0;
	margin: 45px auto;
	width: 50%;
	min-width: 200px;
	/*background : #fff;*/
	transition: box-shadow 2s;
	/*box-shadow : 0 0 0 1900px hsla(220,7%,18%,0.6),*/
	/*        0 10px 30px -5px hsla(220,7%,18%,0.6);*/
	/*        border-radius: 8px;*/
	padding: 20px;
}

[data-popup] h2 span {
	float: right;
}

.login-container {
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	/* Enables flexbox */
	justify-content: center;
	/* Centers horizontally */
	align-items: center;
	/* Centers vertically */
	min-height: 100vh;
	/* Ensures the body takes up the full height of the viewport */
	margin: 0;
	/* Removes default margin */
	padding: 0;
	/* Removes default padding */
}

/* Style for the login box */
.login-box-body {
	background: #fff;
	color: #080000;
	border-radius: 20px;
	width: 393px;
	max-width: 90%;
	/* Ensures responsiveness on smaller screens */
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	/* Optional: adds a subtle shadow */
	position: relative;
}

/* Media query for smaller screens */
@media screen and (max-width: 480px) {
	.login-box-body {
		width: 100%;
		/* Full width on very small screens */
		padding: 10px;
		/* Reduced padding for smaller screens */
	}
}

/* Login model end */
label {
	font-size: 14px !important;
	font-weight: 600 !important;
	color: var(--font-black-color);
	;
}

.required .control-label:after {
	content: "*";
	color: red;
}

.error {
	color: red;
}

.profile:after {
	border-bottom: 1px solid var(--primary-theme-color);
}

.btn-order-delete {
	font-size: 14px;
	color: var(--font-white-color);
	font-weight: 600;
	text-transform: uppercase;
	display: inline-block;
	padding: 5px 10px 5px 10px;
	background: var(--primary-theme-color);
	margin-top: 5px;
	border-radius: 25px;
	border: 1px solid var(--icon-theme-color);
	width: 90px;
	cursor: pointer;
	text-align: center;
	float: right;
}

.btn-order-delete:hover {
	background: var(--primary-theme-color);
	color: var(--font-white-color);
}

.watermark {
	/*height: 450px;
  width: 600px;*/
	/*position: relative;*/
	overflow: hidden;
	opacity: 0.7;
}

.watermark p {
	position: absolute;
	padding-top: 25px;
	left: 45%;
	color: #ef0e0e !important;
	font-size: 35px !important;
	pointer-events: none;
	-webkit-transform: rotate(-10deg);
	-moz-transform: rotate(-10deg);
}

/*div[title]:hover::after {
  content: attr(title);
  color:red !important;
  border:1px solid var(--primary-theme-color);
  padding: 5px;
  position: absolute;
  top: -5px;
  left: 0;
}*/



* {
	scrollbar-width: thin;
	scrollbar-color: blue orange;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 12px;
}

*::-webkit-scrollbar-track {
	background: var(--font-white-color);
}

*::-webkit-scrollbar-thumb {
	background-color: black;
	border-radius: 20px;
	border: 3px solid var(--font-white-color);
}

.cart .items-list {
	background-color: #fff;
	padding: 15px 15px 0px 15px;
	border: 1px solid #ddd;
	width: 300px;
	border-radius: 4px;
	box-shadow: 0px 0px 8px 0px #888;
	position: absolute;
	right: 5px;
	z-index: 9999;
	max-height: 400px;
	overflow-y: scroll;
}

.cart .item-name,
.cart .item-price {
	color: var(--icon-theme-color);
	/* float: left;*/
	font-size: 14px;
	font-weight: 600;
}

.cart .item-pic {
	width: 100%;
	height: 40px;
	overflow: hidden;
	/*border: 1px solid #ddd;*/
}

.cart .item-pic img {
	height: 100%;
	margin: 0 auto;
	display: block;
}

.cart .item-remove {
	position: absolute;
	right: 15px;
	top: 15px;
}

.cart .item-remove i {
	font-size: 20px;
	color: #FF5722;
	opacity: 0.5;
	cursor: pointer;
}

.cart .item-remove i:hover {
	opacity: 1;
}

.cart .item {
	padding: 10px 0px;
	border-bottom: 1px solid #ddd;
}



.slick-prev {
	left: 0;
	padding-left: 5px;
}

.slick-next {
	right: 0;
	padding-left: 5px
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}




/*.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}*/

/*.slide {
    transition: filter .4s;
    margin: 0px 40px;
}*/

.slick-prev,
.slick-next {
	position: absolute;
	top: 30%;
	font-size: 3rem;
	background: var(--primary-theme-color);
	font-size: 25px;
	height: 25px;
	width: 25px;
	line-height: 24px;
	border-radius: 50%;
}

.filter_title {
	padding: 10px;
	font-size: 18px;
	font-weight: 600;
	color: var(--font-black-color);
}

.view_dot_color {
	height: 25px;
	width: 25px;
	border-radius: 50%;
	display: inline-block;
	border: 1px solid var(--icon-theme-color);
	margin-left: 5px;
	cursor: pointer;
}

.login-logo {
	background: transparent;
	text-align: center;
}

.login-logo p {
	color: #000;
	padding-bottom: 10px;
}

.category_expand {
	float: right;
}

.product,
#HomeSection {
	/*	background-color: #eff7fa;*/
}


/* icon: https://fortawesome.github.io/Font-Awesome/icons/ */
/* Animation: https://daneden.github.io/animate.css/ */

#myBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 5px;
	z-index: 99;
	font-size: 35px;
	height: 50px;
	width: 50px;
	border: none;
	outline: none;
	background-color: #007bff;
	cursor: pointer;
	padding: 0px;
	border-radius: 50%;
}

#myBtn:hover {
	background-color: #555;
}

/* ui changes 01.07.2024*/
header__top {
	background: #0b973f;
	color: #fff;
}

.top-header h5 {
	font-size: 20px;
	margin-bottom: 2px;
	font-weight: 500;
	color: #fff;
}

.logo-section {
	display: flex;
	align-items: center;
}

.blink_text {
	animation: blink 1s linear infinite;
}

@keyframes blink {
	50% {
		opacity: 0.3;
	}
}

.logo-section h4 {
	display: flex;
	align-items: center;
	color: #432616;
	font-weight: 600;
	font-family: "Cairo", sans-serif;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

.logo-section h4 i {
	margin-right: 10px;
	font-size: 20px;
}

.logo-section h4 i::before {
	color: #432616;
}

.arrow_carrot-down span::before,
.arrow_carrot-down:before {
	color: #999;
}

.exo-menu li a {
	color: #432616;
	text-transform: capitalize;
}

.header__top.first-top-header {
	/*background: #724f0d;*/
	background: #432616;
}

.header__cart ul li a i::before,
.header__top__right__language i::before {
	color: #d59114;
	font-size: 28px;
	color: #999;
}

li.drop-down ul>li {
	/*background: #535b63;*/
	background: #432616;
}

li.drop-down ul>li>a {
	text-align: left;
}

li.drop-down ul>li>a {
	background: transparent;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
}

.exo-menu>li>a:hover {
	background: transparent;
}

li.drop-down ul>li>a:hover {
	background: transparent;
	margin-left: 5px;
}

.drop-down-ul li a:hover {
	margin-left: 5px;
}

.header__cart.blog__item__text {
	display: flex;
	align-items: center;
	justify-content: right;
	width: 100%;
}

.header__top__right__language {
	margin-right: 3px;
}

.hero__search {
	margin-top: 0;
}

.cart_icon_total_amount {
	display: flex;
	align-items: center;
	justify-content: right;
	padding-left: 0;
}

.locate-img {
	width: 50px;
	height: 50px;
}

.blog__item__text ul {
	margin-bottom: 0;
	padding-top: 0;
	margin-right: 0;
}

#myHeader,
#myHeader .row>div {
	background: #ffffff !important;
}

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

.header__top__right__language ul {
	border-radius: 5px;
	margin-top: 17px;
	background: rgb(16 86 8 / 60%);
	background: #f3f4f5;
}

.header__cart ul li a {
	display: flex;
	align-items: center;
	font-weight: 600;
	font-size: 14px;
	color: #000;
}

.headertopright__language ul.sign-in-menu li a:hover {
	margin-left: 5px;
	color: #000;
}

.header__cart ul li a i {
	margin-right: 6px;
}

footer.footer.spad {
	background: #f3f2ef;
	padding: 60px 0 10px;
}

.address-list li a,
.address-list li,
.footer__widget ul li a {
	color: #54655D;
}

.fa-map-marker:before,
.fa-envelope:before,
.footer__widget h6 {
	color: #000;
}

.footer__widget .footer__widget__social a {
	background: #ededed;
}

.footer__widget .footer__widget__social a:hover {
	background: #000;
}

.footer__widget .footer__widget__social a i {
	color: #000;
}

.footer__widget .footer__widget__social a:hover i {
	color: #ededed;
}

.contact-section {
	background: #42474c;
	padding-top: 10px;
	padding-bottom: 0px;
	margin-top: 40px;
}

.contact__widget {
	display: flex;
	align-items: center;
}

.service-sec-right {
	text-align: left;
	margin-left: 13px;
}

.contact__widget h5 {
	padding-right: 0;
	font-weight: 600;
	font-size: 16px;
	padding-top: 0;
}

.contact__widget p {
	font-size: 15px;
}

.categories__item {
	border: 2px solid #0a6e2a;
}

.categories__item h5 a {
	background: #0a6e2a;
}

.section-title h2:after {
	background: #0a6e2a;
}

.product__discount__item__text {
	background: transparent;
	/* border-radius: 0 0 10px 10px;
    box-shadow:0px 0px 5px -1px #444a4a;*/
	height: 112px;
	padding: 14px 0;
}

.product__discount__item__pic {
	border-radius: 5px;
}

product__item__pic__hover a i:hover {
	color: #ac9261;
}

.address-list h2,
.footer__widget h2 {
	font-size: 21px;
	font-weight: 600;
	margin-bottom: 17px;
	color: #54655D;
	font-family: "Montserrat", sans-serif;
}

.mapouter iframe {
	border-radius: 4px;
	border: 1px solid #ccc;
}

.mapouter,
.footer__widget__social {
	margin-top: 10px;

}

.footer__widget__social {
	display: flex;
	align-items: center;
}

.copy-text {
	color: #000;
}

.copy-text a {
	color: #909090;
}

.blog__item__text .blog__btn__text {
	/*background: #0a6e2a;*/
	background: #432616;
	color: #fff;
}

.blog__item__text .blog__btn__text:hover {
	border: 1px solid #0a6e2a;
	background: transparent;
	color: #0a6e2a;
}

.product__item__pic__hover li:hover a i {
	color: #ac9261;
}

/* carousel */
.cat-img {
	display: block;
	width: 100%;
	margin-right: 12px;
	height: 100%;
	overflow: hidden;
	border-radius: 5px;
}

.cat-head-detail {
	width: 100%;
	text-align: center;
	display: block;
	margin: 10px 0 0 0;
}

.owl-carousel .owl-item img {
	display: block;
	max-height: 100%;
	margin: 0 auto;
	width: 100%;
	padding: 0;
	height: 100%;
	object-fit: cover;
}

.categories__item {
	border: 2px solid #0a6e2a;
	display: block;
	align-items: center;
	/* background: url("/assets/img/carousel-bg.png");*/
	height: 231px;
	border: none;
	border-radius: 6px;
	background-repeat: repeat;
	background-position: -38px -49px;
}

.categories__item h5 a {
	background: transparent;
	color: #54655D;
	text-align: center;
	padding: 4px 7px;
	text-transform: capitalize;
}

.categories__item h5 {
	position: static;
}

.categories__item h5 a:hover {
	background: #0a6e2a;
	color: #fff;
}

.categories__item img {
	height: auto;
}

.footer__copyright {
	border-top: 1px solid #ccc;
	margin-top: 23px;
}

.featured {
	z-index: 3;
}

.product__discount__item:hover .product__discount__item__pic .product__item__pic__hover {
	bottom: 0%;
}

.footer__widget ul li:hover a {
	margin-left: 5px;
}

.product__discount__item__pic {
	display: block;
}

.product__item__pic__hover {
	display: none;
	bottom: 0;
}

.product__item__pic__hover li a i,
.product__item__pic__hover li a:hover i {
	color: #d51212;
}

.header__logo {
	text-align: center;
	width: 100%;
	display: flex;
	justify-content: right;
}

.header__logo a img {
	width: 90px;
	height: 90px;
}

#popup-shop {
	opacity: 0;
	background: #f3f4f5;
	position: absolute;
	z-index: -1;
	padding: 10px;
	border-radius: 8px;
}

.blog__item__text:hover #popup-shop {
	opacity: 1;
	z-index: 1;
}

.store-list {
	display: block;

}

.store-list>li>a {
	position: relative;
}

.blog__item__text ul.store-list li:hover a {
	margin-left: 5px;
}

.blog__item__text ul.store-list li a {
	color: #54655D;
	font-size: 14px;
	font-weight: 600;
}

.blog__item__text ul.store-list li {
	display: block;
	margin-bottom: 4px;
	padding: 4px 14px;

}

.additional-img {
	width: 140px;
	display: flex;
	align-items: center;
	height: 140px;
	margin: 0 11px;
	border-radius: 8px;
}

.header__top.nav-menu-section {
	background: transparent;
}

.headertopright__language .arrow_carrot-down::before {
	color: #fff;
}

.footer.spad {
	background: url("/assets/img/footer-banner-bg.jpg");
	background-repeat: no-repeat;
	background-size: cover;
}

.product__discount__item.set-bg {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	overflow: hidden;
}

.product-detail-img {
	height: 616px;
}

.product-detail-img img {
	display: flex;
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-height: 100%;
}

.product__details__rating span .fa.fa-star,
.fa.fa-star-half-o::before {
	color: #0a6e2a;
}

.terms-order {
	font-size: 22px;
	color: #0a6e2a;
}

.sign-up-btn button:hover {
	background: #fff;
	border: 1px solid #42474c;
	color: #42474c;
}

.sign-up-btn button {
	margin: 15px 0 0;
	padding: 7px 30px;
	border-radius: 25px;
	background: #42474c;
	border: 1px solid #999;
	color: #fff;
	font-size: 13px;
}

input#email_footer {
	padding: 10px;
	border-radius: 8px;
	border: 1px solid #ccc;
	font-size: 15px;
	margin: 8px 0 0 0;
}

.product__discount__item__pic img {
	max-height: max-content;
}

.prod-qty {
	position: relative;
}

.form-group.has-feedback input {
	border-radius: 4px;
	border: 1px solid #ccc;
	font-size: 13px !important;
	padding: 10px;
}

.show-pswd input {
	margin-top: 0;
}

.show-pswd {
	display: flex;
	align-items: center;
}

button#IdSubmitLogin {
	background: gainsboro;
	text-align: center;
	padding: 11px;
	height: auto;
	border-radius: 25px;
}

.close-icon {
	position: absolute;
	right: 0;
	top: 0;
}

.sign-in-popup {
	position: relative;
}

.contact-form.spad #SignUpForm #IdFrmUserRegistration .site-btn {
	background: #4a881b;
	text-align: center;
	padding: 11px 40px;
	height: auto;
	border-radius: 25px;
	margin-top: 20px;
	color: #fff;
	width: 28%;
}

.contact-form.spad #SignUpForm #IdFrmUserRegistration input,
.contact-form.spad #SignUpForm #IdFrmUserRegistration select {
	border-radius: 4px;
	border: 1px solid #ccc;
	font-size: 13px !important;
	padding: 10px;
}

#SignUpForm {
	max-width: 760px;
	margin: auto;
	padding: 4rem 20px 10px;
}

.filter__sort {
	margin-bottom: 20px;
}

.product__discount__item {
	margin-bottom: 25px;
}

.header_search_bar {
	padding-left: 0;
}

.contact-head {
	font-size: 19px;
	font-weight: 600;
	margin-bottom: 20px;
}

.contact__widget span {
	width: auto;
	border-radius: 10px;
	margin: 0;
	border: none;
	font-size: 20px;
}

.contact__widget span.icon_phone {

	transform: rotate(63deg);
}

.contact__widget {
	margin: 0 0 20px 0;
}

.contact__widget h4 {
	font-size: 18px;
	margin: 0;
	margin-right: 15px;
}

.contact-form form input,
.contact-form form textarea {
	border: 1px solid #999;
	border-radius: 4px !important;
}

.contact-site-btn {
	background: gainsboro;
	padding: 10px 30px;
	border: 1px solid gainsboro;
	border-radius: 25px;
	font-weight: 600;
	font-size: 19px;
	text-transform: capitalize;
}

.contact__widget span.icon_mail_alt {
	position: relative;
	top: -3px;
}

.intl-tel-input,
.iti {
	width: 100%;
}

.login-head-top h3 {
	font-size: 18px;
	text-align: center;
	font-weight: 600;
	margin: 0 0 15px 0;
}

.login-popup {
	text-align: center;
}

.login-social-btn {
	display: flex;
	justify-content: space-between;
}

.con-btn-login {
	width: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	-webkit-justify-content: center;
	-webkit-box-align: center;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	border: 1px solid #d7d7d7;
	padding: 15px 30px;
	border-radius: 10px;
	margin: 10px;
	cursor: pointer;
}

span.text-wrap {
	padding-left: 5px;
	font-size: 15px;
}

.login-btn-bottom h4 {
	position: relative;
	font-size: 16px;
	text-align: center;

}

.login-btn-bottom h4::before {
	content: "";
	background-color: #c4c4c4;
	height: 1px;
	position: absolute;
	left: 0;
	top: 10px;
	width: 29%;
	position: absolute;

}

.login-btn-bottom h4::after {
	content: "";
	background-color: #c4c4c4;
	height: 1px;
	position: absolute;
	right: 0;
	top: 10px;
	width: 29%;
	position: absolute;

}

.request-otp .send-btn span {
	color: #fff;
}

.popup-logo {

	text-align: center;
	margin: 0 auto 20px auto;
	/*background: #4a881b;*/
	padding: 10px;
	border-radius: 50%;
	width: 88px;
	height: 88px;
	display: flex;
	align-items: center;
}

.request-otp .send-btn {
	padding: 5px 20px;
	border-radius: 0;
	font-size: 18px;
	width: 100%;
	/*border: 1px solid #4a881b;*/
	/*background: #4a881b; */
	border: 1px solid #432616;
	background: #432616;
}

.request-otp {
	text-align: center;
	margin: 20px 0 20px 0;
}

.login-popup {
	margin-bottom: 20px;
}

.popup-logo-img {
	vertical-align: middle;
	text-align: center;
	max-width: 100%;
}

.login-header {
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	margin: 0 0 15px;
}

.edit-ph-number {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-flex-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	justify-content: center;
	margin-bottom: 8px;
}

.resend-otp {
	text-align: center;
}

input.otp__digit {
	width: 31px;
	height: 27px;
	border-bottom: 1px solid #ccc;
	border-top: 0;
	border-right: 0;
	border-left: 0;
	font-size: 24px;
}

.otp-input-fields {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-around;
}

.user-details {
	margin: 0 13px 0px 0px;
}

.resend-otp .resend-btn {
	color: #2343c8;
	font-size: 18px;
	text-decoration: underline;
	cursor: pointer;
}

.login-btn-bottom {
	margin: 0 0 15px 0;
}

.otp-input {
	height: 40px;
	width: 100%;
	font-size: 14px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #999;
}

.textarea-form {
	height: 60px;
	width: 100%;
	font-size: 14px;
	padding: 10px;
	border-radius: 4px;
	border: 1px solid #999;
}

.owl-carousel .owl-stage {
	/*height:358px;*/
}

.add-to-cart-btn a {
	padding: 6px 11px;
	font-size: 14px;
	width: 100%;
	border: 1px solid #4a881b;
	background: #4a881b;
	color: #fff;
	border-radius: 25px;
	font-weight: 600;
}

.add-to-cart-btn {
	position: absolute;
	bottom: 29%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

.product__discount__item:hover .add-to-cart-btn {
	display: block;
}

.sign-in-popup-section {
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 9999;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	/*padding: 20px;*/
	margin: 48px auto 0;
}

.center-logo img {
	width: 29%;
	padding: 5px 0;
}

.tooltiptext {
	visibility: hidden;
	background-color: #4a881b;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	width: 268px;
	left: 68px;
	position: absolute;
	z-index: 1;
}

.h4 {
	font-family: "Montserrat", sans-serif;
	color: #54655D;
}

.blog__item__text .store-list li .chennai:hover .addressc {
	visibility: visible;
}

.blog__item__text .store-list li .salem:hover .addresssalem {
	visibility: visible;
}

.offerimg {
	border-radius: 5px;
}

.product__discount__item.set-bg.set-additional-img.pt-2 {
	display: none;
}

.product__details__text p {
	font-size: 14px;
}

.about-img {
	border-radius: 7px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 991px) {
	.header__cart.blog__item__text {
		justify-content: center;
	}

	.hero__search__form {
		width: 100%;
	}

	.center-logo img {
		width: 64%;
	}
}

@media only screen and (max-width: 768px) {
	.additional-img {
		width: 111px;
		height: 111px;
	}
}

@media only screen and (max-width: 480px) {
	.header_search_bar {
		padding-left: 10px;
	}

	.tooltiptext {
		left: 45px;
		top: 24px;
	}
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/

@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1320px;
	}
}

/* Medium Device = 1200px */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 45px;
	}

	.hero__search__form {
		width: 490px;
	}

	.hero__categories__all {
		padding: 10px 25px 10px 20px;
	}

	.hero__categories ul {
		padding-left: 20px;
	}

	.latest-product__slider.owl-carousel .owl-nav {
		right: 0;
	}

	.product__details__tab .nav-tabs:before {
		width: 265px;
	}

	.product__details__tab .nav-tabs:after {
		width: 265px;
	}

	.shoping__discount form input {
		width: 240px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.hero__search__form {
		width: 213px;
	}

	.mailto {
		margin-left: 6px;
	}

	.mail-icon {
		display: flex;
		align-items: center;
	}

	.product__discount__item__text h6 {
		height: 45px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.hero__categories {
		margin-bottom: 30px;
	}

	.hero__search__form {
		width: 485px;
	}

	.categories__slider.owl-carousel .owl-nav button {
		left: -20px;
	}

	.categories__slider.owl-carousel .owl-nav button.owl-next {
		right: -20px;
	}

	.filter__sort .nice-select {
		padding-left: 5px;
		padding-right: 28px;
	}

	.product__details__quantity {
		margin-bottom: 10px;
	}

	.product__details__text .primary-btn {
		margin-bottom: 10px;
	}

	.product__details__tab .nav-tabs:before {
		width: 150px;
	}

	.product__details__tab .nav-tabs:after {
		width: 150px;
	}

	.blog__details__author {
		overflow: hidden;
		margin-bottom: 25px;
	}

	.humberger__open {
		display: block;
		font-size: 22px;
		color: #1c1c1c;
		height: 35px;
		width: 35px;
		line-height: 33px;
		text-align: center;
		border: 1px solid #1c1c1c;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 22px;
	}

	.header .container {
		position: relative;
	}

	.humberger__menu__wrapper {
		width: 300px;
		background: var(--font-white-color);
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		overflow-y: auto;
		z-index: 99;
		padding: 30px;
		padding-top: 50px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}

	.humberger__menu__wrapper.show__humberger__menu__wrapper {
		opacity: 1;
		left: 0;
	}

	.humberger__menu__logo {
		margin-bottom: 30px;
	}

	.humberger__menu__logo a {
		display: inline-block;
	}

	.humberger__menu__contact {
		padding: 10px 0 13px;
	}

	.humberger__menu__contact ul li {
		font-size: 14px;
		color: #1c1c1c;
		position: relative;
		line-height: 30px;
		list-style: none;
	}

	.humberger__menu__contact ul li i {
		color: #252525;
		margin-right: 5px;
	}

	.humberger__menu__cart ul {
		display: inline-block;
		margin-right: 25px;
	}

	.humberger__menu__cart ul li {
		list-style: none;
		display: inline-block;
		margin-right: 15px;
	}

	.humberger__menu__cart ul li:last-child {
		margin-right: 0;
	}

	.humberger__menu__cart ul li a {
		position: relative;
	}

	.humberger__menu__cart ul li a i {
		font-size: 18px;
		color: #1c1c1c;
	}

	.humberger__menu__cart ul li a span {
		height: 13px;
		width: 13px;
		background: var(--secondary-theme-color);
		font-size: 10px;
		color: var(--font-white-color);
		line-height: 13px;
		text-align: center;
		font-weight: 600;
		display: inline-block;
		border-radius: 50%;
		position: absolute;
		top: 0;
		right: -12px;
	}

	.humberger__menu__cart .header__cart__price {
		font-size: 14px;
		color: #6f6f6f;
		display: inline-block;
	}

	.humberger__menu__cart .header__cart__price span {
		color: #252525;
		font-weight: 600;
	}

	.humberger__menu__cart {
		margin-bottom: 25px;
	}

	.humberger__menu__widget {
		margin-bottom: 20px;
	}

	.humberger__menu__widget .header__top__right__language {
		margin-right: 20px;
	}

	.humberger__menu__nav {
		display: none;
	}

	.humberger__menu__wrapper .header__top__right__social {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.humberger__menu__wrapper .slicknav_btn {
		display: none;
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_item a {
		border-bottom: none !important;
	}

	.humberger__menu__wrapper .slicknav_nav {
		display: block !important;
	}

	.humberger__menu__wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}

	.humberger__menu__wrapper .slicknav_nav ul {
		margin: 0;
	}

	.humberger__menu__wrapper .slicknav_nav a {
		color: #1c1c1c;
		font-size: 16px;
		font-weight: 600;
		margin: 0;
		border-bottom: 1px solid #e1e1e1;
	}

	.humberger__menu__wrapper .slicknav_nav a:hover {
		-webkit-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: var(--secondary-theme-color);
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_row,
	.humberger__menu__wrapper .slicknav_nav a {
		padding: 8px 0;
	}

	.humberger__menu__overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		content: "";
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}

	.humberger__menu__overlay.active {
		visibility: visible;
	}

	/*	.header__top {
		display: none;
	}*/
	.header__menu {
		display: none;
	}

	.header__cart {
		text-align: center;
		padding: 10px 0 24px;
	}

	.over_hid {
		overflow: hidden;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.hero__categories {
		margin-bottom: 30px;

	}

	.header__cart ul {
		margin-right: 7px;
	}

	.header_search_bar {
		padding-right: 10px;
		padding-left: 10px;
	}

	.hero__search__form {
		height: 40px;
	}

	.hero__search__form form button {
		height: 40px
	}

	.hero__search__form form input {
		height: 38px;
	}

	.site-btn {
		padding: 10px 15px 12px;
	}

	.hero__search {
		/*margin-bottom: 30px;*/
		margin-bottom: 10px;
		margin-top: 0px !important;
	}

	.hero__search__form {
		width: 100%;
	}

	.hero__search__form form input {
		width: 100%;
	}

	.hero__search__form form .hero__search__categories {
		display: none;
	}

	.hero__search__phone {
		float: left;
		margin-top: 30px;
	}

	.categories__slider.owl-carousel .owl-nav {
		text-align: center;
		/*margin-top: 40px;*/
	}

	.categories__slider.owl-carousel .owl-nav button {
		position: relative;
		left: 0;
		top: 0;
		-webkit-transform: translateY(0);
	}

	.categories__slider.owl-carousel .owl-nav button.owl-next {
		right: -10px;
	}

	.footer__copyright {
		text-align: center;
	}

	.footer__copyright__text {
		float: none;
		margin-bottom: 25px;
	}

	.footer__copyright__payment {
		float: none;
	}

	.filter__item {
		text-align: center;
	}

	.filter__option {
		text-align: center;
	}

	.product__details__pic {
		margin-bottom: 40px;
	}

	.product__details__tab .nav-tabs:before {
		display: none;
	}

	.product__details__tab .nav-tabs:after {
		display: none;
	}

	.shoping__cart__table {
		overflow-y: auto;
	}

	.shoping__discount form input {
		margin-bottom: 15px;
	}

	.blog__details__author {
		overflow: hidden;
		margin-bottom: 25px;
	}

	/*.humberger__open {
		display: block;
		font-size: 22px;
		color: #1c1c1c;
		height: 35px;
		width: 35px;
		line-height: 33px;
		text-align: center;
		border: 1px solid #1c1c1c;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 22px;
	}*/
	.header__logo a img {
		width: 120px;
	}

	.header__logo {
		/*padding: 13px 35px;*/
		padding-left: 35px;
		/*padding-top: 13px;*/
		padding-top: 2px;
	}

	.humberger__open {
		display: block;
		font-size: 30px;
		color: #1c1c1c;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		border: 1px solid var(--icon-theme-color);
		cursor: pointer;
		position: absolute;
		top: 15px;
		margin-left: 10px;
		right: 20px;
	}

	.header .container {
		position: relative;
	}

	.humberger__menu__wrapper {
		width: 300px;
		background: var(--font-white-color);
		position: fixed;
		left: -300px;
		top: 0;
		height: 100%;
		overflow-y: auto;
		z-index: 99;
		padding: 30px;
		padding-top: 10px;
		opacity: 0;
		display: block;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
		width: 90%;
	}

	.humberger__menu__wrapper.show__humberger__menu__wrapper {
		opacity: 1;
		left: 0;
		z-index: 99999;
	}

	.humberger__menu__logo {
		margin-left: -10px;
		padding: 0px 0px 20px 0px;
	}

	.humberger__menu__logo a {
		display: inline-block;
	}

	.humberger__menu__contact {
		padding: 10px 0 13px;
	}

	.humberger__menu__contact ul li {
		font-size: 14px;
		color: #1c1c1c;
		position: relative;
		line-height: 30px;
		list-style: none;
	}

	.humberger__menu__contact ul li i {
		color: #252525;
		margin-right: 5px;
	}

	.humberger__menu__cart ul {
		display: inline-block;
		margin-right: 25px;
	}

	.humberger__menu__cart ul li {
		list-style: none;
		display: inline-block;
		margin-right: 15px;
	}

	.humberger__menu__cart ul li:last-child {
		margin-right: 0;
	}

	.humberger__menu__cart ul li a {
		position: relative;
	}

	.humberger__menu__cart ul li a i {
		font-size: 18px;
		color: #1c1c1c;
	}

	.humberger__menu__cart ul li a span {
		height: 13px;
		width: 13px;
		background: var(--primary-theme-color);
		font-size: 10px;
		color: var(--font-white-color);
		line-height: 13px;
		text-align: center;
		font-weight: 600;
		display: inline-block;
		border-radius: 50%;
		position: absolute;
		top: -7;
		right: -10px;
	}

	.humberger__menu__cart .header__cart__price {
		font-size: 14px;
		color: #6f6f6f;
		display: inline-block;
	}

	.humberger__menu__cart .header__cart__price span {
		color: #252525;
		font-weight: 600;
	}

	.humberger__menu__cart {
		padding: 0px 0px 20px 0px;
	}

	.humberger__menu__widget {
		padding: 0px 0px 10px 0px;
	}

	.humberger__menu__widget .header__top__right__language {
		padding: 0px 0px 10px 0px;
	}

	.humberger__menu__nav {
		/*display: none;*/
		clear: both;
		color: #fff;
		margin: 0;
		font-size: .875em;
	}

	.humberger__menu_nav ul li {
		display: block;
	}

	.mobilemenuli {
		padding: 8px;
		border-bottom: 1px solid #e2e0e0;
	}

	.mobilemenuli a {
		color: var(--font-black-color);
		font-size: 14px;
		font-weight: 600;
		margin: -10px;
	}

	.humberger__menu__widget {
		font-weight: 600;
		font-size: 18px;
	}

	.humberger__menu__wrapper .header__top__right__social {
		display: block;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.humberger__menu__wrapper .slicknav_btn {
		display: none;
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_item a {
		border-bottom: none !important;
	}

	.humberger__menu__wrapper .slicknav_nav {
		display: block !important;
	}

	.humberger__menu__wrapper .slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 30px;
	}

	.humberger__menu__wrapper .slicknav_nav ul {
		margin: 0;
	}

	.humberger__menu__wrapper .slicknav_nav a {
		color: #1c1c1c;
		font-size: 16px;
		font-weight: 600;
		margin: 0;
		border-bottom: 1px solid #e1e1e1;
	}

	.humberger__menu__wrapper .slicknav_nav a:hover {
		-webkit-border-radius: 0;
		border-radius: 0;
		background: transparent;
		color: var(--secondary-theme-color);
	}

	.humberger__menu__wrapper .slicknav_nav .slicknav_row,
	.humberger__menu__wrapper .slicknav_nav a {
		padding: 8px 0;
	}

	.humberger__menu__overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.5);
		content: "";
		z-index: 98;
		visibility: hidden;
		-webkit-transition: all, 0.6s;
		-moz-transition: all, 0.6s;
		-ms-transition: all, 0.6s;
		-o-transition: all, 0.6s;
		transition: all, 0.6s;
	}

	.humberger__menu__overlay.active {
		visibility: visible;
	}

	/*	.header__top {
		display: none;
	}*/
	.top-header h5 {
		font-size: 17px;
		margin-bottom: 4px;
	}

	.top-header {
		padding: 5px 20px;
	}

	.header__menu {
		display: none;
	}

	.header__cart {
		text-align: center;
		/*padding: 10px 0 24px;*/
		padding: 2px 0px 0px;
	}

	.mobile_view_cart {
		display: block !important;
		float: right;
	}

	.over_hid {
		overflow: hidden;
	}

	.product-img {
		height: 100%;
	}

	.product__discount__item__pic.set-bg {
		height: auto;
	}

	.product__discount__item__pic.set-bg .product__discount__item__pic img {
		max-height: none;
		object-fit: cover;
		height: auto;
	}

	.product-img {
		aspect-ratio: 3 / 3;
		object-fit: cover;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.hero__search__form form .hero__search__categories {
		display: none;
	}

	.featured__controls ul li {
		margin-bottom: 10px;
	}

	.product__details__text ul li b {
		width: 100px;
	}

	.product__details__tab .nav-tabs li {
		margin-right: 20px;
	}

	.shoping__cart__btns {
		text-align: center;
	}

	.primary-btn.cart-btn.cart-btn-right {
		float: none;
		margin-top: 10px;
	}

	.shoping__checkout .primary-btn {
		display: block;
		text-align: center;
		padding: 10px 15px 10px;
	}

	.map .map-inside {
		-webkit-transform: translateX(-125px);
		-ms-transform: translateX(-125px);
		transform: translateX(-125px);
	}

	.map .map-inside .inside-widget {
		width: 250px;
	}

	.product__details__tab .nav-tabs li {
		margin-right: 15px;
	}

	.shoping__discount form input {
		width: 100%;
	}

	.checkout__order {
		padding: 20px;
	}

	.blog__details__hero__text h2 {
		font-size: 24px;
	}

	footer.footer.spad {
		text-align: center;
	}

	.footer__widget ul {
		width: 100%;
	}

	.footer__widget__social {
		width: 100%;
		justify-content: center;
	}

	.header__top__right__language ul {

		left: -83px;
	}

	#SignUpForm {
		width: 95%;
	}

	.sign-up-form label,
	.sign-up-form span {
		padding: 0;
	}

	.sticky-bottom-bar {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		background: #ffffff;
		padding: 10px 15px;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
		border-top: 1px solid #ebebeb;
	}

	.sticky-subtotal {
		font-size: 16px;
		font-weight: 700;
		color: #1c1c1c;
	}

	.checkout-btn-sticky {
		padding: 10px 10px;
		font-size: 14px;
		border-radius: 4px;
		text-align: center;
		display: block;
	}

}

.sticky-bottom-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: #ffffff;
	padding: 12px 15px;
	box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
	border-top: 1px solid #ebebeb;
}

@media only screen and (max-width: 479px) {
	.sticky-bottom-bar {
		display: block;
	}

	.sticky-subtotal {
		font-size: 16px;
		font-weight: 700;
		color: #1c1c1c;
		line-height: normal;
		display: inline-block;
		margin-bottom: 0;
	}

	.checkout-btn-sticky {
		background: #7fad39 !important;
		color: #ffffff !important;
		padding: 10px 5px !important;
		font-size: 14px !important;
		border-radius: 4px;
		text-align: center;
		display: block;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 0.5px;
		width: 100%;
	}

	.header__cart__price {
		font-size: 12px !important;
		margin-left: 2px !important;
		display: inline-block !important;
		vertical-align: middle;
	}

	/* Mobile Shopping Cart Cards */
	.shoping__cart__mobile {
		padding: 10px 0;
	}

	.cart__mobile__card {
		background: #ffffff;
		border-radius: 12px;
		padding: 15px;
		margin-bottom: 15px;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
		border: 1px solid #f5f5f5;
	}

	.cart__mobile__row {
		display: flex;
		gap: 15px;
	}

	.cart__mobile__img {
		width: 80px;
		height: 80px;
		flex-shrink: 0;
	}

	.cart__mobile__img img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 8px;
	}

	.cart__mobile__details {
		flex: 1;
	}

	.cart__mobile__details h6 {
		font-size: 15px;
		font-weight: 700;
		color: #1c1c1c;
		margin-bottom: 4px;
	}

	.cart__mobile__size {
		font-size: 13px;
		color: #777;
		margin-bottom: 8px;
	}

	.cart__mobile__price {
		font-size: 16px;
		color: #AC9261;
		font-weight: 700;
		margin-bottom: 10px;
	}

	.cart__mobile__qty-wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 12px;
	}

	.mobile-qty {
		width: 110px !important;
		height: 36px !important;
		background: #f5f5f5;
		border-radius: 20px;
		padding: 0 10px;
	}

	.mobile-qty input {
		width: 30px !important;
		height: 36px !important;
		background: transparent !important;
		border: none !important;
		font-size: 15px !important;
		font-weight: 700 !important;
	}

	.mobile-qty .qtybtn {
		font-size: 18px !important;
		color: #1c1c1c !important;
		cursor: pointer;
		width: 24px;
		text-align: center;
	}

	.cart__mobile__remove {
		color: #ff4d4f;
		font-size: 20px;
		cursor: pointer;
		padding: 5px;
	}

	.cart__mobile__subtotal {
		font-size: 14px;
		color: #1c1c1c;
		font-weight: 600;
		text-align: right;
		border-top: 1px solid #f8f8f8;
		padding-top: 12px;
	}

	.cart__mobile__subtotal span {
		color: #AC9261;
		font-size: 17px;
		margin-left: 8px;
	}

	.cart .items-list {
		width: 290px !important;
		right: 5px !important;
		top: 50px !important;
		max-height: 70vh !important;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
	}

	.mobile-search-row {
		margin-bottom: 15px;
		width: 100%;
	}
}

/* Helper Visibility Classes */
@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}

	.visible-xs {
		display: block !important;
	}
}

@media (min-width: 768px) {
	.visible-xs {
		display: none !important;
	}
}

/* ui changes 01.07.2024 end*/
/* --- PROFESSIONAL UI ENHANCEMENTS --- */
:root {
	--primary-modern: #432616;
	--accent-modern: #AC9261;
	--bg-light: #f8f9fa;
	--shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
	--shadow-strong: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Global Footer Contrast Fix */
html body .footer__about .address-list li,
html body .footer__about .address-list li i {
	color: #ffffff !important;
}

.main-header-wrapper {
	background: white;
	width: 100%;
	z-index: 1050;
	position: relative;
}

.navbar-modern {
	padding: 15px 0;
	background: white;
	border-bottom: 1px solid #f1f1f1;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
	position: relative;
	z-index: 1051;
	overflow: visible !important;
}

.container-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* --- GLASS BANNER NAVIGATION --- */
.hero-wrapper {
	position: relative;
	width: 100%;
}

.slick-banner-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 0 40px;
	pointer-events: none;
	z-index: 100;
}

.custom-nav-btn {
	pointer-events: auto;
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.25) !important;
	backdrop-filter: blur(12px) !important;
	-webkit-backdrop-filter: blur(12px) !important;
	border: 1.5px solid rgba(255, 255, 255, 0.45) !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}

.custom-nav-btn:hover {
	background: rgba(255, 255, 255, 0.4) !important;
	transform: scale(1.1) rotate(5deg) !important;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
}

.custom-nav-btn i {
	font-size: 28px !important;
	color: #432616 !important;
	/* Brand Brown */
}

@media (max-width: 768px) {
	.slick-banner-nav {
		padding: 0 15px !important;
	}

	.custom-nav-btn {
		width: 45px !important;
		height: 45px !important;
	}

	.custom-nav-btn i {
		font-size: 20px !important;
	}
}

/* Logo */
.site-logo {
	max-height: 80px;
	width: auto;
	transition: transform 0.3s;
}

.site-logo:hover {
	transform: scale(1.05);
}

/* Header Sections */
.header-left,
.header-right {
	flex: 1;
	display: flex;
	align-items: center;
}

.header-center {
	display: flex;
	justify-content: center;
	padding: 0 20px;
}

.header-right {
	justify-content: flex-end;
	gap: 20px;
}

.header-search-desktop {
	flex: 1;
	max-width: 400px;
	margin: 0 15px;
}

/* Actions */
.action-btn {
	background: none;
	border: none;
	font-size: 20px;
	color: #333;
	padding: 8px;
	cursor: pointer;
	position: relative;
	transition: color 0.3s;
	text-decoration: none !important;
}

.action-btn:hover {
	color: var(--accent-modern);
}

/* Cart Badge */
.cart-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	background: var(--primary-modern);
	color: white;
	font-size: 10px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

/* Cart Button Text */
.cart-btn-modern {
	display: flex;
	align-items: center;
	gap: 12px;
}

.cart-icon-container {
	position: relative;
}

.cart-text-desktop {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.2;
}

.cart-label {
	font-size: 10px;
	text-transform: uppercase;
	color: #888;
	letter-spacing: 0.8px;
}

.cart-total {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary-modern);
}

/* Top Promo */
.first-top-header {
	background: var(--primary-modern) !important;
	padding: 12px 0;
}

.promo-text {
	color: white !important;
	font-size: 15px !important;
	margin: 0;
	font-weight: 600;
}

.promo-text b {
	color: var(--accent-modern);
	animation: promo-glow 2s infinite ease-in-out;
	display: inline-block;
	padding: 0 5px;
}

@keyframes promo-glow {

	0%,
	100% {
		text-shadow: 0 0 0px var(--accent-modern);
		color: var(--accent-modern);
		transform: scale(1);
	}

	50% {
		text-shadow: 0 0 20px var(--accent-modern);
		color: #ffffff;
		transform: scale(1.1);
	}
}

/* Store Link */
.store-link-modern {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #444;
	font-weight: 700;
	font-size: 17px;
	/* Increased from 14px */
}

.store-link-modern i {
	font-size: 20px;
	color: var(--primary-modern);
}

/* Cart Dropdown */
.header-cart-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	width: 320px;
	background: white;
	box-shadow: var(--shadow-strong);
	border-radius: 12px;
	margin-top: 15px;
	overflow: hidden;
	z-index: 2000;
}

.cart-dropdown-inner {
	padding: 20px;
}

.cart-dropdown-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 10px 0;
	border-bottom: 1px solid #f5f5f5;
}

.cart-item-img {
	width: 50px;
	height: 50px;
	border-radius: 8px;
	overflow: hidden;
	background: #f9f9f9;
}

.cart-item-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cart-item-info h6 {
	font-size: 13px;
	margin: 0 0 4px;
	color: #333;
}

.cart-item-info p {
	font-size: 12px;
	margin: 0;
	color: #888;
}

.remove-item-btn {
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 8px;
	margin-left: auto;
	font-size: 18px;
	transition: 0.3s;
}

.remove-item-btn:hover {
	color: #ef4444;
	transform: scale(1.15);
}

.cart-dropdown-footer {
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid #eee;
}

.subtotal-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	font-size: 16px;
}

.btn-modern-primary {
	display: block;
	width: 100%;
	padding: 12px;
	background: var(--primary-modern);
	color: white;
	text-align: center;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
	.desktop-only {
		display: none !important;
	}

	.navbar-modern {
		padding: 12px 0 !important;
		/* Increased padding for better breathing room */
		background: #ffffff !important;
		border-bottom: 1px solid #f1f1f1 !important;
	}

	.container-flex {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		width: 100% !important;
	}

	.header-left {
		flex: 0 0 50px !important;
		display: flex !important;
		align-items: center !important;
		order: 1 !important;
		/* Force Hamburg to left */
	}

	.header-center {
		flex: 1 !important;
		display: flex !important;
		justify-content: center !important;
		order: 2 !important;
		/* Force Logo to middle */
		min-width: 0 !important;
	}

	.header-right {
		flex: 0 0 105px !important;
		display: flex !important;
		justify-content: flex-end !important;
		order: 3 !important;
		/* Force Icons to right */
	}

	.header-actions {
		gap: 6px !important;
		justify-content: flex-end !important;
		display: flex !important;
		align-items: center !important;
	}

	.site-logo {
		max-height: 48px !important;
		/* Increased logo size */
		width: auto !important;
		display: block !important;
	}

	.action-btn {
		width: 36px !important;
		/* Increased button size */
		height: 36px !important;
		font-size: 18px !important;
		padding: 0 !important;
		margin-top: 0 !important;
		/* Kill rogue negative margins */
		position: relative !important;
		top: 0 !important;
		color: var(--primary-modern) !important;
	}

	.humberger__open {
		margin-top: 0 !important;
		background: transparent !important;
		border: none !important;
	}

	.humberger__open i {
		color: var(--primary-modern) !important;
		/* Brand Brown for hamburger */
		font-size: 22px !important;
	}

	.cart-badge {
		background: var(--primary-modern) !important;
		width: 18px !important;
		height: 18px !important;
		font-size: 10px !important;
		line-height: 18px !important;
		top: -5px !important;
		right: -5px !important;
	}

	.mobile-search-bar {
		position: absolute !important;
		top: 100% !important;
		left: 0 !important;
		width: 100% !important;
		background: white !important;
		padding: 10px 15px !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
		z-index: 100 !important;
	}

	.spad {
		padding-top: 15px !important;
		padding-bottom: 15px !important;
	}

	.section-title {
		padding-bottom: 12px !important;
	}

	/* 2x2 Category Grid Fix for Mobile */
	.categories__slider.owl-carousel {
		display: grid !important;
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 12px !important;
		padding-bottom: 20px !important;
	}

	.categories__slider .owl-stage-outer,
	.categories__slider .owl-stage {
		display: contents !important;
	}

	.categories__slider .owl-item {
		width: auto !important;
		float: none !important;
	}

	.categories__slider .owl-nav,
	.categories__slider .owl-dots {
		display: none !important;
	}

	.cat-card-modern {
		padding: 10px !important;
	}

	.cat-img-circle {
		width: 85px !important;
		/* Larger for 2 columns */
		height: 85px !important;
		margin: 0 auto 10px !important;
	}

	.cat-title {
		font-size: 13px !important;
		/* Larger for 2 columns */
		line-height: 1.2 !important;
	}

	/* --- LUXURY MOBILE HEADER --- */
	.navbar-modern {
		background: rgba(255, 255, 255, 0.9) !important;
		backdrop-filter: blur(12px) !important;
		-webkit-backdrop-filter: blur(12px) !important;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
		height: 75px !important;
		display: flex !important;
		align-items: center !important;
		border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
	}

	.container-flex {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		width: 100% !important;
	}

	.header-left,
	.header-right {
		display: flex !important;
		align-items: center !important;
		gap: 15px !important;
		flex: 1 !important;
	}

	.header-right {
		justify-content: flex-end !important;
	}

	.header-center {
		flex: 0 0 auto !important;
		display: flex !important;
		justify-content: center !important;
	}

	.site-logo {
		max-height: 48px !important;
		width: auto !important;
		transition: 0.3s !important;
		position: static !important;
		/* Remove manual offsets */
	}

	html body .action-btn {
		width: 44px !important;
		height: 44px !important;
		background: rgba(67, 38, 22, 0.04) !important;
		border-radius: 50% !important;
		color: #432616 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		font-size: 19px !important;
		border: none !important;
		transition: 0.2s !important;
	}

	html body .action-btn i {
		position: static !important;
		/* Reset previously added offsets */
	}

	html body .cart-icon-container {
		position: relative !important;
	}

	html body .cart-badge {
		top: -4px !important;
		right: -4px !important;
		background: #AC9261 !important;
		color: white !important;
		min-width: 18px !important;
		height: 18px !important;
		font-size: 10px !important;
		font-weight: 800 !important;
		border-radius: 50% !important;
		border: 2px solid #ffffff !important;
	}

	/* Search Bar Modern Expansion */
	.mobile-search-bar {
		background: #ffffff !important;
		padding: 10px 0 !important;
		border-bottom: 1px solid #f1f5f9 !important;
		position: absolute !important;
		width: 100% !important;
		top: 75px !important;
		left: 0 !important;
		z-index: 100 !important;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
	}

	/* --- PREMIUM MOBILE ANIMATIONS --- */
	@keyframes mobileRevealUp {
		0% {
			opacity: 0;
			transform: translateY(30px) scale(0.95);
		}

		100% {
			opacity: 1;
			transform: translateY(0) scale(1);
		}
	}

	/* Micro-interactions: Elastic Tap */
	html body .action-btn:active,
	html body .btn-add-love:active,
	html body .cat-card-modern:active {
		transform: scale(0.92) !important;
		transition: 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
	}

	/* Section Entrance Sequence */
	.cat-card-modern,
	.prod-card-lovable {
		animation: mobileRevealUp 0.8s cubic-bezier(0.19, 1, 0.22, 1) both !important;
	}

	/* Staggered load effect */
	.cat-card-modern:nth-child(1) {
		animation-delay: 0.1s !important;
	}

	.cat-card-modern:nth-child(2) {
		animation-delay: 0.2s !important;
	}

	.cat-card-modern:nth-child(3) {
		animation-delay: 0.3s !important;
	}

	.cat-card-modern:nth-child(4) {
		animation-delay: 0.4s !important;
	}

	.prod-card-lovable:nth-child(odd) {
		animation-delay: 0.15s !important;
	}

	.prod-card-lovable:nth-child(even) {
		animation-delay: 0.25s !important;
	}

	/* Floating Action Oscillations */
	@keyframes float-gentle {

		0%,
		100% {
			transform: translateY(0);
		}

		50% {
			transform: translateY(-5px);
		}
	}

	.floating-actions .float-btn {
		animation: float-gentle 3s ease-in-out infinite !important;
	}

	.floating-actions .float-btn:nth-child(2) {
		animation-delay: 1.5s !important;
	}

	/* Silky Scroll for Smooth experience */
	html {
		scroll-behavior: smooth !important;
	}

	.footer {
		padding: 60px 0 0 !important;
		text-align: center !important;
		background: linear-gradient(180deg, #432616 0%, #2d1a0f 100%) !important;
		border-radius: 40px 40px 0 0 !important;
		box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1) !important;
		margin-top: 50px !important;
		overflow: hidden !important;
	}

	.footer__widget {
		margin-bottom: 50px !important;
		padding: 0 15px !important;
	}

	.footer__widget h2 {
		font-size: 20px !important;
		font-weight: 900 !important;
		margin-bottom: 25px !important;
		text-align: center !important;
		display: inline-block !important;
		position: relative !important;
		background: linear-gradient(135deg, #ffffff 0%, #AC9261 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		text-transform: uppercase !important;
		letter-spacing: 2px !important;
	}

	.footer__widget h2::after {
		left: 50% !important;
		transform: translateX(-50%) !important;
		width: 40px !important;
		height: 3px !important;
		background: linear-gradient(90deg, transparent, #AC9261, transparent) !important;
		bottom: -12px !important;
	}

	.footer__about .address-list {
		display: inline-block !important;
		text-align: center !important;
		max-width: 320px !important;
		margin: 0 auto !important;
	}

	.footer__about .address-list li {
		justify-content: center !important;
		margin-bottom: 20px !important;
		font-size: 15px !important;
		color: rgba(255, 255, 255, 0.9) !important;
		line-height: 1.6 !important;
		font-weight: 500 !important;
	}

	/* Simple gold bullet for premium feel without bulky icons */
	.footer__about .address-list li::before {
		content: "•";
		color: #AC9261;
		margin-right: 8px;
		font-size: 20px;
		display: none; /* Keep total minimalist as requested before, but spacing preserved */
	}

	.footer__widget ul li {
		text-align: center !important;
		margin-bottom: 16px !important;
	}

	.footer__widget ul li a {
		font-size: 16px !important;
		color: rgba(255, 255, 255, 0.7) !important;
		letter-spacing: 0.5px !important;
		transition: 0.3s !important;
	}

	.social-links-premium {
		justify-content: center !important;
		margin-top: 30px !important;
		gap: 25px !important;
	}

	.social-circle {
		width: 52px !important;
		height: 52px !important;
		background: rgba(255, 255, 255, 0.05) !important;
		border: 1px solid rgba(172, 146, 97, 0.2) !important;
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
	}

	.footer__copyright {
		margin-top: 50px !important;
		padding: 40px 20px !important;
		background: rgba(0, 0, 0, 0.3) !important;
		backdrop-filter: blur(15px) !important;
		-webkit-backdrop-filter: blur(15px) !important;
		border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
	}

	.footer__copyright p {
		display: block !important;
		font-size: 13px !important;
		line-height: 1.8 !important;
		color: rgba(255, 255, 255, 0.5) !important;
		text-align: center !important;
	}

	.footer__copyright b {
		color: #ffffff !important;
		display: block !important;
		font-size: 16px !important;
		margin-bottom: 8px !important;
		letter-spacing: 1px !important;
	}

	.footer__copyright span {
		display: block !important;
		margin-top: 15px !important;
		color: #AC9261 !important;
		font-weight: 600 !important;
	}

	/* --- PREMIUM MOBILE MENU DRAWER --- */
	.humberger__menu__wrapper {
		background: #fffbf2 !important; /* Slight brand cream/gold tint */
		padding: 20px !important;
		width: 320px !important;
	}

	.mobile-cart-top-card {
		background: #f8fafc;
		border-radius: 12px;
		padding: 15px;
		display: flex;
		align-items: center;
		gap: 15px;
		margin-bottom: 25px;
		border: 1px solid #e2e8f0;
	}

	.cart-icon-circle {
		width: 45px;
		height: 45px;
		background: #432616;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		color: white;
	}

	.m-cart-badge {
		position: absolute;
		top: -5px;
		right: -5px;
		background: #AC9261;
		color: white;
		font-size: 10px;
		width: 18px;
		height: 18px;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 2px solid #f8fafc;
		font-weight: 800;
	}

	.cart-details-info {
		flex: 1;
		display: flex;
		flex-direction: column;
	}

	.m-cart-total-label {
		font-size: 11px;
		color: #64748b;
		text-transform: uppercase;
		letter-spacing: 0.5px;
	}

	.m-cart-total-val {
		font-size: 16px;
		color: #432616;
		font-weight: 800;
	}

	.m-view-cart-pill {
		background: #432616;
		color: white !important;
		padding: 8px 15px;
		border-radius: 20px;
		font-size: 12px;
		font-weight: 700;
		text-decoration: none;
	}

	.premium-mobile-list {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.mobilemenuli {
		border-bottom: 1px solid #f1f5f9;
	}

	.mobilemenuli a {
		padding: 15px 5px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		font-size: 16px !important;
		font-weight: 600 !important;
		color: #1e293b !important;
	}

	.mobilemenuli.highlighted a {
		color: #AC9261 !important;
	}

	.mobilemenuli.highlighted i {
		font-size: 20px;
		margin-right: 12px;
	}

	.menu-arrow {
		color: #94a3b8;
		font-size: 18px !important;
	}

	.m-sub-menu {
		background: #f8fafc !important;
		padding: 5px 0 5px 20px !important;
	}

	.m-sub-menu li a {
		padding: 12px 10px !important;
		font-size: 14px !important;
		font-weight: 500 !important;
		color: #475569 !important;
	}

	.mobilemenuli.divider {
		height: 20px;
		border: none;
	}

	.contact-item a {
		font-size: 14px !important;
		color: #64748b !important;
		font-weight: 500 !important;
	}

	.contact-item i {
		margin-right: 12px;
		width: 20px;
		text-align: center;
		color: #AC9261;
	}
}


/* --- PIXEL-PERFECT MOCKUP SYNC (FINAL) --- */
@media (min-width: 992px) {

	/* Restore Category UI */
	html body .cat-card-modern {
		display: flex !important;
		flex-direction: column !important;
		align-items: center !important;
		text-align: center !important;
	}

	html body .cat-img-circle {
		border-radius: 50% !important;
		overflow: hidden !important;
		width: 140px !important;
		height: 140px !important;
		display: block !important;
		margin-bottom: 15px !important;
	}

	html body .cat-title {
		text-align: center !important;
		display: block !important;
		width: 100% !important;
		font-size: 18px !important;
		font-weight: 700 !important;
		margin-top: 15px !important;
		color: #1e293b !important;
	}

	/* Trending Now & Product UI */
	html body .section-head-modern {
		border-bottom: none !important;
		margin-bottom: 30px !important;
		position: relative !important;
	}

	html body .head-title h2 {
		font-size: 32px !important;
		font-weight: 800 !important;
		color: #1e293b !important;
		position: relative !important;
		display: inline-block !important;
	}

	html body .head-title h2::after {
		content: '' !important;
		position: absolute !important;
		bottom: -10px !important;
		left: 0 !important;
		width: 80px !important;
		height: 5px !important;
		background: #432616 !important;
		border-radius: 5px !important;
	}

	html body .prod-card-lovable {
		border-radius: 20px !important;
		border: none !important;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
		padding: 15px !important;
		background: #fff !important;
	}

	html body .p-img-container {
		border-radius: 15px !important;
		overflow: hidden !important;
		margin-bottom: 15px !important;
	}

	html body .p-title {
		font-size: 20px !important;
		font-weight: 800 !important;
		color: #111 !important;
		margin-top: 10px !important;
	}

	/* --- GLOBAL TYPOGRAPHY STANDARDIZATION --- */
	html body {
		font-family: 'Outfit', sans-serif !important;
		font-size: 15px !important;
		line-height: 1.6 !important;
		color: #1e293b !important;
	}

	/* Uniform Title Sizes */
	html body .p-title {
		font-size: 18px !important;
		font-weight: 800 !important;
		margin-bottom: 10px !important;
	}

	/* Uniform Pricing */
	html body .curr-price {
		font-size: 22px !important;
		font-weight: 900 !important;
		color: #432616 !important;
	}

	/* Uniform Section Headers */
	html body .head-title h2 {
		font-size: 24px !important;
		/* Reduced from 30px */
		font-weight: 700 !important;
		letter-spacing: -0.2px !important;
		color: #1e293b !important;
		text-transform: capitalize !important;
	}

	/* Uniform Category Titles */
	html body .cat-title {
		font-size: 14px !important;
		font-weight: 700 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.5px !important;
		margin-top: 12px !important;
	}

	/* Uniform Service Bar Text */
	html body .f-text h5 {
		font-size: 16px !important;
		font-weight: 800 !important;
	}

	html body .f-text p {
		font-size: 13px !important;
		font-weight: 500 !important;
	}

	/* RESTORED QTY & ACTION STYLES */
	html body .qty-selector-v2 {
		display: inline-flex !important;
		align-items: center !important;
		background: #f8fafc !important;
		border: 1px solid #e2e8f0 !important;
		border-radius: 50px !important;
		padding: 4px !important;
	}

	html body .qty-btn-v2 {
		width: 38px !important;
		height: 38px !important;
		border-radius: 50% !important;
		border: none !important;
		background: white !important;
		font-weight: 800 !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
	}

	html body .btn-go-to-cart {
		width: 48px !important;
		height: 48px !important;
		background: #432616 !important;
		color: white !important;
		border-radius: 50% !important;
		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;
	}

	html body .btn-add-love {
		background: #432616 !important;
		color: #fff !important;
		border-radius: 50px !important;
		padding: 18px 20px !important;
		font-weight: 800 !important;
		text-transform: uppercase !important;
		width: 100% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		border: none !important;
	}

	/* --- FALLING EFFECT (SNOW) --- */
	.dropping-bg {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		pointer-events: none;
		z-index: 10;
		overflow: hidden;
	}

	.drop-item {
		position: absolute;
		top: -20px;
		background: rgba(255, 255, 255, 0.6);
		border-radius: 50%;
		animation: dropMove linear infinite;
	}

	@keyframes dropMove {
		0% {
			transform: translateY(-20px) translateX(0);
			opacity: 0;
		}

		10% {
			opacity: 1;
		}

		90% {
			opacity: 0.8;
		}

		100% {
			transform: translateY(600px) translateX(20px);
			opacity: 0;
		}
	}

	/* Full-Area Snowflake Distribution (30 flakes) */
	.drop-item:nth-child(1) {
		left: 5%;
		width: 4px;
		height: 4px;
		animation-duration: 4s;
		animation-delay: 0s;
	}

	.drop-item:nth-child(2) {
		left: 12%;
		width: 6px;
		height: 6px;
		animation-duration: 6s;
		animation-delay: 1s;
	}

	.drop-item:nth-child(3) {
		left: 18%;
		width: 5px;
		height: 5px;
		animation-duration: 5s;
		animation-delay: 2.5s;
	}

	.drop-item:nth-child(4) {
		left: 25%;
		width: 3px;
		height: 3px;
		animation-duration: 4.5s;
		animation-delay: 0.5s;
	}

	.drop-item:nth-child(5) {
		left: 32%;
		width: 7px;
		height: 7px;
		animation-duration: 7s;
		animation-delay: 3s;
	}

	.drop-item:nth-child(6) {
		left: 38%;
		width: 5px;
		height: 5px;
		animation-duration: 5.5s;
		animation-delay: 1.5s;
	}

	.drop-item:nth-child(7) {
		left: 45%;
		width: 4px;
		height: 4px;
		animation-duration: 4s;
		animation-delay: 4.2s;
	}

	.drop-item:nth-child(8) {
		left: 52%;
		width: 6px;
		height: 6px;
		animation-duration: 6.5s;
		animation-delay: 2s;
	}

	.drop-item:nth-child(9) {
		left: 58%;
		width: 5px;
		height: 5px;
		animation-duration: 5s;
		animation-delay: 0.8s;
	}

	.drop-item:nth-child(10) {
		left: 65%;
		width: 4px;
		height: 4px;
		animation-duration: 4.8s;
		animation-delay: 3.5s;
	}

	.drop-item:nth-child(11) {
		left: 72%;
		width: 7px;
		height: 7px;
		animation-duration: 7.2s;
		animation-delay: 1.2s;
	}

	.drop-item:nth-child(12) {
		left: 78%;
		width: 5px;
		height: 5px;
		animation-duration: 5.8s;
		animation-delay: 2.8s;
	}

	.drop-item:nth-child(13) {
		left: 85%;
		width: 4px;
		height: 4px;
		animation-duration: 4.2s;
		animation-delay: 0.2s;
	}

	.drop-item:nth-child(14) {
		left: 92%;
		width: 6px;
		height: 6px;
		animation-duration: 6.8s;
		animation-delay: 1.8s;
	}

	.drop-item:nth-child(15) {
		left: 98%;
		width: 3px;
		height: 3px;
		animation-duration: 5s;
		animation-delay: 3.2s;
	}

	/* Duplicated with different timings for high density */
	.drop-item:nth-child(16) {
		left: 8%;
		width: 5px;
		height: 5px;
		animation-duration: 5.2s;
		animation-delay: 4s;
	}

	.drop-item:nth-child(17) {
		left: 22%;
		width: 4px;
		height: 4px;
		animation-duration: 4.4s;
		animation-delay: 2.2s;
	}

	.drop-item:nth-child(18) {
		left: 35%;
		width: 6px;
		height: 6px;
		animation-duration: 6.2s;
		animation-delay: 0.6s;
	}

	.drop-item:nth-child(19) {
		left: 48%;
		width: 3px;
		height: 3px;
		animation-duration: 4.6s;
		animation-delay: 3.8s;
	}

	.drop-item:nth-child(20) {
		left: 62%;
		width: 7px;
		height: 7px;
		animation-duration: 7.5s;
		animation-delay: 1.5s;
	}

	.drop-item:nth-child(21) {
		left: 75%;
		width: 5px;
		height: 5px;
		animation-duration: 5.4s;
		animation-delay: 4.5s;
	}

	.drop-item:nth-child(22) {
		left: 88%;
		width: 4px;
		height: 4px;
		animation-duration: 4.1s;
		animation-delay: 2.7s;
	}

	.drop-item:nth-child(23) {
		left: 15%;
		width: 6px;
		height: 6px;
		animation-duration: 6.4s;
		animation-delay: 0.1s;
	}

	.drop-item:nth-child(24) {
		left: 28%;
		width: 3px;
		height: 3px;
		animation-duration: 4.3s;
		animation-delay: 3.3s;
	}

	.drop-item:nth-child(25) {
		left: 42%;
		width: 7px;
		height: 7px;
		animation-duration: 7.1s;
		animation-delay: 1.9s;
	}

	.drop-item:nth-child(26) {
		left: 55%;
		width: 5px;
		height: 5px;
		animation-duration: 5.6s;
		animation-delay: 4.1s;
	}

	.drop-item:nth-child(27) {
		left: 68%;
		width: 4px;
		height: 4px;
		animation-duration: 4.7s;
		animation-delay: 2.4s;
	}

	.drop-item:nth-child(28) {
		left: 82%;
		width: 6px;
		height: 6px;
		animation-duration: 6.1s;
		animation-delay: 0.5s;
	}

	.drop-item:nth-child(29) {
		left: 95%;
		width: 3px;
		height: 3px;
		animation-duration: 4.9s;
		animation-delay: 3.6s;
	}

	.drop-item:nth-child(30) {
		left: 50%;
		width: 5px;
		height: 5px;
		animation-duration: 5.3s;
		animation-delay: 1.3s;
	}



	html body .fa-star,
	html body .fa-star-o,
	html body .fa-star-half-o {
		color: #ffb800 !important;
	}

	/* --- PREMIUM AUTOCOMPLETE DROPDOWN --- */
	.ui-autocomplete {
		z-index: 100000 !important;
		background: white !important;
		border-radius: 12px !important;
		box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
		border: 1px solid #e2e8f0 !important;
		padding: 10px 0 !important;
		max-height: 400px !important;
		overflow-y: auto !important;
	}

	.ui-menu-item {
		padding: 8px 15px !important;
		font-family: 'Outfit', sans-serif !important;
		font-size: 14px !important;
		color: #1e293b !important;
		cursor: pointer !important;
		transition: 0.2s !important;
	}

	.ui-menu-item:hover,
	.ui-state-active {
		background: #f1f5f9 !important;
		color: #432616 !important;
		border: none !important;
		margin: 0 !important;
	}

	/* --- ELITE SERVICE BAR REWORK --- */
	html body .features-modern-container {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		gap: 25px !important;
		margin-top: -30px !important;
		margin-bottom: 0 !important;
		/* Fixed: Eliminated bottom margin */
		padding: 0 40px !important;
	}

	html body .contact-section.spad {
		padding-bottom: 20px !important;
		/* Reduced bottom padding */
		padding-top: 10px !important;
		background: #334155 !important;
		/* Restored Professional Dark Slate Bar */
	}

	html body .feature-card-v2 {
		flex: 1 !important;
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		background: #ffffff !important;
		padding: 25px !important;
		border-radius: 20px !important;
		box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08) !important;
		border: 1px solid #f8fafc !important;
		transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
		position: relative !important;
		overflow: hidden !important;
	}

	html body .feature-card-v2:hover {
		transform: translateY(-10px) !important;
		box-shadow: 0 25px 60px rgba(60, 36, 21, 0.12) !important;
		border-color: #432616 !important;
	}

	html body .f-icon-circle {
		width: 65px !important;
		height: 65px !important;
		min-width: 65px !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		margin-right: 20px !important;
		background: linear-gradient(135deg, #432616, #724f0d) !important;
		/* Brand Brown Gradient */
		box-shadow: 0 8px 20px rgba(67, 38, 22, 0.2) !important;
		transition: 0.3s !important;
	}

	html body .f-icon-circle i {
		font-size: 26px !important;
		color: #ffffff !important;
	}

	html body .feature-card-v2:hover .f-icon-circle {
		transform: scale(1.1) rotate(5deg) !important;
	}

	html body .f-text h5 {
		font-size: 19px !important;
		font-weight: 800 !important;
		color: #0c0a09 !important;
		margin-bottom: 4px !important;
		letter-spacing: -0.5px !important;
	}

	html body .f-text p {
		font-size: 14px !important;
		margin: 0 !important;
		color: #64748b !important;
		font-weight: 500 !important;
	}

	/* Fixed the dark section background mentioned in screenshot */
	section.featured.spad {
		background: #fbfbfb !important;
	}
}


@media (min-width: 992px) {
	.mobile-only {
		display: none !important;
	}
}

/* Search Forms */
.search-form-modern {
	display: flex !important;
	align-items: center !important;
	background: #f8fafc !important;
	border: 1px solid #e2e8f0 !important;
	border-radius: 30px !important;
	padding: 2px 2px 2px 18px !important;
	width: 100% !important;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
	box-sizing: border-box !important;
}

.search-form-modern:focus-within {
	border-color: var(--accent-modern) !important;
	box-shadow: 0 0 0 3px rgba(172, 146, 97, 0.1) !important;
	background: white !important;
}

.search-form-modern input {
	background: transparent !important;
	border: none !important;
	padding: 10px 0 !important;
	flex: 1 !important;
	font-size: 14px !important;
	color: #334155 !important;
	outline: none !important;
	width: 100% !important;
	box-shadow: none !important;
}

.search-form-modern input::placeholder {
	color: #94a3b8 !important;
}

.search-form-modern button {
	background: var(--primary-modern) !important;
	color: white !important;
	border: none !important;
	width: 38px !important;
	height: 38px !important;
	min-width: 38px !important;
	border-radius: 50% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	margin-left: 10px !important;
	padding: 0 !important;
}

.search-form-modern button:hover {
	transform: scale(1.08) !important;
	background: var(--accent-modern) !important;
}

.search-form-modern button i {
	font-size: 14px !important;
	color: white !important;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	width: 100%;
}

#MainMenuSection .logincomp-trigger {
	display: inline-block;
}

/* Quantity Selector in Cards */
.qty-selector-modern {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
	border: 1px solid #eee;
}

.qty-btn {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: white;
	color: var(--primary-modern);
	cursor: pointer;
	font-weight: bold;
	transition: background 0.2s;
}

.qty-btn:hover {
	background: #f0f0f0;
}

.qty-value {
	font-weight: bold;
	font-size: 14px;
	width: 30px;
	text-align: center;
}

/* ==========================================================================
   NEW PREMIUM FOOTER SYSTEM
   ========================================================================== */
:root {
	--footer-bg: #432616;
	/* Matches Brand Brown */
	--footer-bg-alt: #543424;
	/* Lighter brown */
	--footer-text: #ffffff;
	--footer-heading: #ffffff;
	--footer-accent: #ac9261;
	/* Matches Accent Gold */
	--footer-border: rgba(255, 255, 255, 0.05);
}

.footer {
	background-color: var(--footer-bg);
	color: var(--footer-text);
	padding: 10px 0 2px;
	/* Ultra slim height */
	position: relative;
	font-family: 'Poppins', sans-serif;
}

.footer__widget h2 {
	color: var(--footer-heading);
	font-size: 16px;
	/* Increased back for readability */
	font-weight: 700;
	margin-bottom: 15px;
	/* Standardized spacing */
	position: relative;
	padding-bottom: 8px;
}

.footer__widget h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 25px;
	height: 2px;
	background: var(--footer-accent);
	border-radius: 2px;
}

.footer__about .address-list {
	list-style: none;
	padding: 0;
}

.footer__about .address-list li {
	margin-bottom: 10px;
	/* Standardized list spacing */
	display: flex;
	gap: 12px;
	line-height: 1.5;
	color: #ffffff;
	font-weight: 400;
	font-size: 14px;
}

.footer__about .address-list li i {
	color: #ffffff !important;
	/* white as requested */
	font-size: 14px;
	margin-top: 3px;
}

.footer__about .address-list .mailto {
	color: var(--footer-text);
	text-decoration: none;
	transition: 0.3s;
}

.footer__about .address-list .mailto:hover {
	color: var(--footer-accent);
}

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

.footer__widget ul li {
	margin-bottom: 8px;
}

.footer__widget ul li a {
	color: var(--footer-text);
	text-decoration: none;
	transition: 0.3s ease;
	display: inline-block;
}

.footer__widget ul li a:hover {
	color: white;
	transform: translateX(5px);
}

/* QR Code Styling */
.qr-container-premium {
	background: white;
	padding: 8px;
	border-radius: 8px;
	display: inline-block;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
}

.qr-container-premium:hover {
	transform: translateY(-5px);
}

.qr-container-premium img {
	display: block;
	width: 140px;
	height: auto;
}

/* Map Styling */
.map-container-premium {
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid var(--footer-border);
	height: 180px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Social Icons */
.social-links-premium {
	display: flex;
	gap: 12px;
	margin-top: 20px;
}

.social-circle {
	width: 42px;
	height: 42px;
	background: var(--footer-bg-alt);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff !important;
	/* white as requested */
	font-size: 18px;
	transition: 0.3s;
	text-decoration: none !important;
}

.social-circle:hover {
	background: var(--footer-accent);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(20, 184, 166, 0.4);
}

/* Bottom Bar */
.footer__copyright {
	margin-top: 15px;
	padding-top: 10px;
	border-top: 1px solid var(--footer-border);
	text-align: center;
}

.copy-text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.6);
}

/* --- AI AGENT CHATBOX --- */
.ai-agent-trigger {
	position: fixed;
	bottom: 30px;
	left: 30px;
	/* Moved to left */
	width: 60px;
	height: 60px;
	background: var(--footer-bg);
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	z-index: 1000;
	transition: 0.3s;
}

.ai-agent-trigger:hover {
	transform: translateY(-5px);
	background: var(--footer-bg-alt);
}

.ai-chat-window {
	position: fixed;
	bottom: 100px;
	left: 30px;
	/* Moved to left */
	width: 380px;
	height: 550px;
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	z-index: 2000;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transform-origin: bottom left;
	transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ai-chat-header {
	background: var(--footer-bg);
	padding: 20px;
	color: white;
	display: flex;
	align-items: center;
	gap: 12px;
}

.ai-avatar {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.ai-chat-body {
	flex: 1;
	padding: 20px;
	overflow-y: auto;
	background: #f8fafc;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.ai-msg {
	max-width: 85%;
	padding: 12px 16px;
	border-radius: 18px;
	font-size: 14px;
	line-height: 1.5;
}

.ai-msg.bot {
	background: white;
	color: #1a1d23;
	align-self: flex-start;
	border-bottom-left-radius: 2px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.ai-msg.user {
	background: var(--footer-bg);
	color: white;
	align-self: flex-end;
	border-bottom-right-radius: 2px;
}

.ai-chat-footer {
	padding: 15px;
	background: white;
	border-top: 1px solid #eeeff1;
	display: flex;
	gap: 10px;
}

.ai-input {
	flex: 1;
	border: 1px solid #e2e8f0;
	padding: 10px 15px;
	border-radius: 25px;
	font-size: 14px;
}

.ai-send-btn {
	width: 40px;
	height: 40px;
	background: var(--footer-bg);
	color: white;
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.bot-action-btn {
	display: block;
	width: 100%;
	padding: 10px;
	margin-top: 10px;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	color: var(--footer-bg);
	font-weight: 600;
	font-size: 13px;
	text-align: center;
	cursor: pointer;
	transition: 0.2s;
}

.bot-action-btn:hover {
	background: var(--footer-bg);
	color: white;
}

@media (max-width: 480px) {
	.ai-chat-window {
		width: calc(100vw - 40px);
		height: 70vh;
		left: 20px;
		/* Moved to left */
		bottom: 90px;
	}

	.ai-agent-trigger {
		left: 20px;
	}

	/* Moved to left */
}

/* --- AI TRANSITION --- */
.fade-enter-active,
.fade-leave-active {
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-enter,
.fade-leave-to {
	opacity: 0;
	transform: scale(0.7) translateY(40px);
}

/* --- MASTER HOME OVERHAUL (PREMIUM DESKTOP) --- */
@media (min-width: 992px) {
	html body .section-head-modern {
		border-bottom: none !important;
		margin-bottom: 40px !important;
		position: relative !important;
	}

	html body .head-title h2 {
		font-size: 20px !important;
		/* Elegant reduced size */
		font-weight: 700 !important;
		color: #1e293b !important;
		letter-spacing: -0.2px !important;
		position: relative !important;
	}

	html body .head-title h2::after {
		content: '' !important;
		position: absolute !important;
		bottom: -12px !important;
		left: 0 !important;
		width: 40px !important;
		/* Shorter underline */
		height: 3px !important;
		/* Thinner underline */
		background: #432616 !important;
		border-radius: 10px !important;
	}

	/* Hero Cinematic Overhaul */
	html body .hero__item {
		border-radius: 30px !important;
		box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
		margin-bottom: 30px !important;
	}

	html body .hero__text h2 {
		font-size: 62px !important;
		font-weight: 900 !important;
		color: #111 !important;
		line-height: 1.1 !important;
	}

	html body .primary-btn {
		background: #432616 !important;
		padding: 20px 50px !important;
		border-radius: 50px !important;
		font-weight: 800 !important;
		font-size: 16px !important;
		box-shadow: 0 10px 30px rgba(67, 38, 22, 0.3) !important;
	}

	/* Premium Product Cards */
	html body .prod-card-lovable {
		border-radius: 28px !important;
		padding: 15px !important;
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05) !important;
		transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1) !important;
	}

	html body .prod-card-lovable:hover {
		transform: translateY(-15px) scale(1.03) !important;
		box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1) !important;
	}

	html body .p-img-container {
		border-radius: 20px !important;
		height: 320px !important;
	}

	html body .p-title {
		font-size: 20px !important;
		font-weight: 800 !important;
		color: #0c0a09 !important;
	}

	html body .curr-price {
		font-size: 26px !important;
		font-weight: 900 !important;
		color: #432616 !important;
	}

	html body .old-price {
		font-size: 16px !important;
		color: #94a3b8 !important;
		/* Muted slate */
		text-decoration: line-through !important;
		/* Strike effect */
		margin-left: 8px !important;
		font-weight: 600 !important;
	}

	/* Add to Cart Luxury Pill */
	html body .btn-add-love {
		background: #432616 !important;
		height: 60px !important;
		border-radius: 50px !important;
		font-size: 15px !important;
		letter-spacing: 1.5px !important;
		box-shadow: 0 12px 25px rgba(67, 38, 22, 0.25) !important;
	}

	/* Spacing Refinement - Minimalist */
	html body .spad {
		padding-top: 10px !important;
		padding-bottom: 10px !important;
	}

	/* Luxury Floating Actions (Heart & Eye) - MASTER FIX */
	html body .floating-actions {
		position: absolute !important;
		top: 15px !important;
		right: 15px !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 10px !important;
		z-index: 99 !important;
		opacity: 0 !important;
		transform: translateY(10px) !important;
		transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
		pointer-events: auto !important;
	}

	html body .prod-card-lovable:hover .floating-actions {
		opacity: 1 !important;
		transform: translateY(0) !important;
	}

	html body .float-btn {
		width: 46px !important;
		height: 46px !important;
		background: #fff !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		color: #1e293b !important;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
		cursor: pointer !important;
		font-size: 20px !important;
		border: 1px solid #f1f5f9 !important;
	}

	html body .float-btn:hover {
		background: #432616 !important;
		color: #fff !important;
		transform: scale(1.1) !important;
	}

	html body .tag-badge {
		position: absolute !important;
		top: 15px !important;
		left: 15px !important;
		background: linear-gradient(135deg, #ff5f6d, #ffc371) !important;
		color: white !important;
		padding: 6px 15px !important;
		border-radius: 50px !important;
		font-size: 11px !important;
		font-weight: 900 !important;
		z-index: 10 !important;
	}

	html body .section-head-modern {
		border-bottom: none !important;
		margin-bottom: 25px !important;
		margin-top: 0 !important;
		position: relative !important;
	}
}

@media (max-width: 991px) {
	.site-logo {
		max-height: 48px !important;
		width: auto !important;
		display: block !important;
		position: relative;
		left: 40px;
	}
}