

html,
body {
	height: 100%;
	font-family: "Nunito Sans", sans-serif;
	-webkit-font-smoothing: antialiased;
}

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

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 15px;
	font-family: "Nunito Sans", sans-serif;
	color: #3d3d3d;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

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

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

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

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

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

.section-title span {
	color: #78b533;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	display: block;
}

.section-title h2 {
	color: #111111;
	font-weight: 700;
	line-height: 46px;
}

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

.spad {
	padding-top: 20px;
	padding-bottom: 20px;
	background-image: url(../img/hero/bgimage2.png);
	margin-top: 50px;
	
}

.box-shadow-cus{
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	border-radius: 14px;
}

.bg-yt{
	background: url(../img/hero/banner-highlighter.png) no-repeat;
    background-size: inherit;
    padding: 0px 5px;
    background-position: center;
    font-weight: 700 !important;
	color: #000;
}
.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: 13px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 14px 30px;
	color: #ffffff;
	border: none;
	background: #78b533;
	letter-spacing: 4px;
	transition: 0.4s all;
}
.primary-btn:hover{
	background-color: #ed1c24;
	color: white;
}

.site-btn {
	font-size: 14px;
	color: #ffffff;
	background: #111111;
	font-weight: 700;
	border: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 30px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.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 #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}

.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: 0 0;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header {
	background: #ffffff;
	position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    /* background-color: #333;
    color: white; */
    text-align: center;
    /* padding: 1rem; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	z-index: 999;
}

.header__top {
	background: #78b533;
	padding: 10px 0;
}

.header__top__left p {
	color: #ffffff;
	margin-bottom: 0;
	text-align: start;
}

.header__top__right {
	text-align: right;
}

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

.header__top__links a {
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-right: 28px;
	display: inline-block;
}

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

.header__top__hover {
	display: inline-block;
	position: relative;
}

.header__top__hover:hover ul {
	top: 24px;
	opacity: 1;
	visibility: visible;
	width: 148px;
}

.header__top__hover span {
	color: #ffffff;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	cursor: pointer;
}

.header__top__hover span i {
	font-size: 20px;
	position: relative;
	top: 3px;
	right: 2px;
}

.header__top__hover ul {
	background: #ffffff;
	display: inline-block;
	padding: 2px 0;
	position: absolute;
	left: 0;
	top: 44px;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.header__top__hover ul a {

	font-size: 15px;

}
.header__top__hover ul li {
	list-style: none;
	font-size: 15px;
	color: #111111;
	padding: 2px 15px;
	cursor: pointer;
	text-align: start;
}

.header__logo {
	padding: 10px 0;
	    text-align: start;
}

.header__logo a {
	display: inline-block;
}

.header__logo a img{
	height: 64px;
}
.header__menu {
	text-align: center;
	padding: 26px 0 25px;
}

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

.header__menu ul li.active a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover a:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.header__menu ul li:hover .dropdown {
	top: 32px;
	opacity: 1;
	visibility: visible;
	text-align: left;
	padding: 5px 0;
	z-index: 9;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	width: 150px;
}

/* Mega Menu Styles */
.header__menu ul li.has-megamenu {
	position: static;
}

.header__menu ul li .mega-menu {
	position: absolute;
	left: 0;
	top: 120%;
	width: 100%;
	background: #ffffff;
	padding: 30px 0;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	transform: translateY(10px);
}

.header__menu ul li:hover .mega-menu {
	opacity: 1;
	visibility: visible;
	top: 80px;
	height: 300px;
	overflow-x: hidden;
	transform: translateY(0);
}

.header__menu ul li.has-megamenu:hover > a:after {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	color: #78b533;
}

.mega-menu-wrapper {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.mega-menu-column {
	width: 25%;
	padding: 0 15px;
}

.mega-menu-column h4 {
	color: #111111;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #78b533;
}

.mega-menu-column .megamenu-cat a{
	font-size: 18px;
	font-weight: 600;
	background-color: #fe0003 !important;
	padding: 8px 0;
	color: #fff;
}
.megamenu-cat a::after{
display: none;
}

.mega-menu-column ul {
	margin: 0;
	padding: 0;
}

.mega-menu-column ul li {
	display: block;
	margin: 0;
	padding: 0;
}

.mega-menu-column ul li a {
	font-size: 14px;
	color: #666666;
	font-weight: 400;
	padding: 8px 0;
	display: block;
}

.mega-menu-column ul li a:hover {
	color: #78b533;
}

.mega-menu-column ul li a:after {
	display: none;
}

.mega-menu-image {
	margin-top: 10px;
	text-align: center;
}

.mega-menu-image img {
	max-width: 100%;
	height: auto;
	margin-bottom: 10px;
	border-radius: 5px;
}

.mega-menu-image .primary-btn {
	padding: 8px 20px;
	font-size: 14px;
}



.header__menu ul li a {
	font-size: 18px;
	color: #111111;
	display: block;
	font-weight: 600;
	position: relative;
	padding: 3px 0;
}

.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #78b533;
	content: "";
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.header__menu ul li.has-megamenu > a:after {
	content: "\f107";
	font-family: "FontAwesome";
	position: absolute;
    right: -182px;
	top: 3px;
	height: auto;
	width: auto;
	background: transparent;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.header__nav__option {
	text-align: center;
	padding: 30px 0;
}

.header__nav__option a {
	display: inline-block;
	margin-right: 26px;
	position: relative;
}

.header__nav__option a span {
	color: white;
    position: absolute;
    left: 11px;
    top: -16px;
    background: red;
    /* padding: 5px; */
    height: 26px;
    width: 28px;
    border-radius: 35px;
}

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

.header__nav__option .price {
	font-size: 19px;
    color: #111111;
    font-weight: 700;
    display: inline-block;
    margin-left: -20px;
    position: relative;
    top: 3px;
    left: 26px;
}

.offcanvas-menu-wrapper {
	display: none;
}

.canvas__open {
	display: none;
}

/*---------------------
  Hero
-----------------------*/
.hero{
	margin-top: 132px;
}
.hero__slider.owl-carousel .owl-item.active .hero__text h6 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text h2 {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text p {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-item.active .hero__text .primary-btn {
	top: 0;
	opacity: 1;
}

.hero__slider.owl-carousel .owl-nav button {
    font-size: 39px;
    color: #333333;
    position: absolute;
    left: 75px;
    top: 50%;
    /* margin-top: -18px; */
    line-height: 29px;
    background: white;
    padding: 0px
}

.hero__slider.owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: 75px;
}

.hero__items {
	height: 547px;
    padding-top: 114px;
}

.hero__text h6 {
	color: #78b533;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 28px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.hero__text h2 {
	color: #111111;
	font-size: 48px;
	font-weight: 700;
	line-height: 58px;
	margin-bottom: 30px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.6s;
	-o-transition: all, 0.6s;
	transition: all, 0.6s;
}

.hero__text p {
	font-size: 16px;
	line-height: 28px;
	margin-bottom: 35px;
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 0.9s;
	-o-transition: all, 0.9s;
	transition: all, 0.9s;
}

.hero__text .primary-btn {
	position: relative;
	top: 100px;
	opacity: 0;
	-webkit-transition: all, 1.1s;
	-o-transition: all, 1.1s;
	transition: all, 1.1s;
}

.hero__text .primary-btn span {
	font-size: 20px;
	position: relative;
	top: 4px;
	font-weight: 700;
}

.hero__social {
	margin-top: 190px;
}

.hero__social a {
	font-size: 16px;
	color: #3d3d3d;
	display: inline-block;
	margin-right: 32px;
}

.hero__social a:last-child {
	margin-right: 0;
}
@media(max-width:767px){
	.hero{
		margin-top: 85px;
	}
	.header{
		text-align: start;
	}
}
/*---------------------
  Banner
-----------------------*/

.blog {
	padding-bottom: 55px;
}

.banner__item {
	position: relative;
	overflow: hidden;
}

.banner__item:hover .banner__item__text a:after {
	width: 40px;
	background: #78b533;
}

.banner__item.banner__item--middle {
	/* margin-top: -75px; */
	background-color: white;
	padding: 20px;
}

.banner__item.banner__item--middle .banner__item__pic {
	float: none;
}
.banner__item.banner__item--middle .banner__item__pic img{
	height: 400px;
	width: 100%;
	object-fit: cover;
}
.banner__item.banner__item--middle .banner__item__text {
	position: relative;
	top: 0;
	left: 0;
	max-width: 100%;
	padding-top: 22px;
}

.banner__item.banner__item--last {
	margin-top: 100px;
}

.banner__item__pic {
	float: right;
}

.banner__item__text {
	max-width: 300px;
	position: absolute;
	left: 0;
	top: 140px;
}

.banner__item__text h2 {
    color: #111111;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 10px;
    font-size: 30px;

}

.banner__item__text a {
	display: inline-block;
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 3px 0;
	position: relative;
	text-align: center;
}

.banner__item__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #111111;
	content: "";
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

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

.categories {
	background: #f3f2ee;
	overflow: hidden;
	padding-top: 150px;
	/* padding-bottom: 125px; */
}

.categories__text {
	padding-top: 40px;
	position: relative;
	z-index: 1;
}

.categories__text:before {
	position: absolute;
	left: -485px;
	top: 0;
	height: 300px;
	width: 600px;
	background: #ffffff;
	z-index: -1;
	content: "";
}

.categories__text h2 {
	color: #b7b7b7;
	line-height: 72px;
	font-size: 34px;
}

.categories__text h2 span {
	font-weight: 700;
	color: #111111;
}

.categories__hot__deal {
	position: relative;
	z-index: 5;
}

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

.hot__deal__sticker {
	height: 100px;
	width: 100px;
	background: #111111;
	border-radius: 50%;
	padding-top: 22px;
	text-align: center;
	position: absolute;
	right: 0;
	top: -36px;
}

.hot__deal__sticker span {
	display: block;
	font-size: 15px;
	color: #ffffff;
	margin-bottom: 4px;
}

.hot__deal__sticker h5 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
}

.categories__deal__countdown span {
	color: #78b533;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	display: block;
}

.categories__deal__countdown h2 {
	color: #111111;
	font-weight: 700;
	line-height: 46px;
	margin-bottom: 25px;
}

.categories__deal__countdown .categories__deal__countdown__timer {
	margin-bottom: 20px;
	overflow: hidden;
	margin-left: -30px;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item {
	width: 25%;
	float: left;
	margin-bottom: 25px;
	text-align: center;
	position: relative;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item:after {
	position: absolute;
	right: 0;
	top: 7px;
	content: ":";
	font-size: 24px;
	font-weight: 700;
	color: #3d3d3d;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item:last-child:after {
	display: none;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item span {
	color: #111111;
	font-weight: 700;
	display: block;
	font-size: 36px;
}

.categories__deal__countdown .categories__deal__countdown__timer .cd-item p {
	margin-bottom: 0;
}

/*---------------------
  about home
-----------------------*/

.about-home {
	padding-bottom: 0;
}
.instagram__pic img{
	height: 400px;
	width: 100%;
	object-fit: cover;
	border-radius: 30px;

}
.instagram__pic__item {
	width: 33.33%;
	float: left;
	height: 261px;
	background-position: center center;
}

.instagram__text {
	/* padding-top: 130px; */
}

.instagram__text h2 {
	color: #78b533;
	font-weight: 700;
	margin-bottom: 12px;
}

.instagram__text p {
	margin-bottom: 10px;
	text-align: justify;
	font-weight: 600;
}

.instagram__text h3 {
	color: #78b533;
	font-weight: 700;
}

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

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

.filter__controls {
	text-align: center;
	margin-bottom: 45px;
}

.filter__controls li {
	color: #b7b7b7;
	font-size: 24px;
	font-weight: 700;
	list-style: none;
	display: inline-block;
	margin-right: 88px;
	cursor: pointer;
}

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

.filter__controls li.active {
	color: #111111;
}

.product__item {
	overflow: hidden;
	margin-bottom: 40px;
}

.product__item.sale .product__item__pic .label {
	color: #ffffff;
	background: #111111;
}

.product__item.sale .product__item__text .rating i {
	color: #f7941d;
}

.product__item.sale .product__item__text .rating i:nth-last-child(1) {
	color: #b7b7b7;
}

.product__item:hover .product__item__pic .product__hover {
	right: 20px;
	opacity: 1;
}

.product__item:hover .product__item__text a {
	top: 22px;
	opacity: 1;
	visibility: visible;
}

.product__item:hover .product__item__text h6 {
	opacity: 0;
}

.product__item:hover .product__item__text .product__color__select {
	opacity: 1;
}

.product__item__pic {
	height: 260px;
	position: relative;
	background-position: center center;
	transition: 0.4s all;
	overflow: hidden;
	
}
.product__item__pic:hover{
scale: 1.07;
}
.product__item__pic .label {
	color: #111111;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: inline-block;
	padding: 4px 15px 2px;
	background: #ffffff;
	position: absolute;
	left: 0;
	top: 20px;
}

.product__item__pic .product__hover {
	position: absolute;
	right: -200px;
	top: 20px;
	-webkit-transition: all, 0.8s;
	-o-transition: all, 0.8s;
	transition: all, 0.8s;
}

.product__item__pic .product__hover li {
	list-style: none;
	margin-bottom: 10px;
	position: relative;
}

.product__item__pic .product__hover li:hover span {
	opacity: 1;
	visibility: visible;
}

.product__item__pic .product__hover li span {
	color: #ffffff;
	background: #111111;
	display: inline-block;
	padding: 4px 10px;
	font-size: 12px;
	position: absolute;
	left: -78px;
	top: 5px;
	z-index: 1;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__pic .product__hover li span:after {
	position: absolute;
	right: -2px;
	top: 5px;
	height: 15px;
	width: 15px;
	background: #111111;
	content: "";
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -1;
}

.product__item__pic .product__hover li img {
	background: #ffffff;
	padding: 10px;
	display: inline-block;
}

.product__item__text {
	padding-top: 25px;
	position: relative;
}

.product__item__text a {
	font-size: 15px;
	color: #78b533;
	font-weight: 700;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__text h6 {
	color: #111111;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.product__item__text .rating {
	margin-bottom: 6px;
}

.product__item__text .rating i {
	font-size: 14px;
	color: #b7b7b7;
	margin-right: -5px;
}
.product__item__text .product_price{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
} 
.product__item__text .product_price .original_price h5{
	color: #000;
	font-weight: 800;
	font-size: 18px;
}
.product__item__text .product_price .disc_price{
	font-size: 16px;
	font-weight: 500;
}
.product__item__text .product_price .discount{
	/* background-color: green; */
	color: green;
/* height: 45px;
width: 45px; */
padding: 10px;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
	border-radius: 30px;
}
.product__item__text .product__color__select {
	position: absolute;
	right: 0;
	bottom: 0;
	opacity: 0;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__item__text .product__color__select label {
	display: inline-block;
	height: 12px;
	width: 12px;
	background: #5e64d1;
	border-radius: 50%;
	margin-bottom: 0;
	margin-right: 5px;
	position: relative;
	cursor: pointer;
}

.product__item__text .product__color__select label.black {
	background: #404a47;
}

.product__item__text .product__color__select label.grey {
	background: #d5a667;
}

.product__item__text .product__color__select label.active:after {
	opacity: 1;
}

.product__item__text .product__color__select label:after {
	position: absolute;
	left: -3px;
	top: -3px;
	height: 18px;
	width: 18px;
	border: 1px solid #b9b9b9;
	content: "";
	border-radius: 50%;
	opacity: 0;
}

.product__item__text .product__color__select label input {
	position: absolute;
	visibility: hidden;
}

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

.shop__sidebar {
	padding-right: 20px;
}

.shop__sidebar__search {
	margin-bottom: 45px;
}

.shop__sidebar__search form {
	position: relative;
}

.shop__sidebar__search form input {
	width: 100%;
	font-size: 15px;
	color: #b7b7b7;
	padding-left: 20px;
	border: 1px solid #e5e5e5;
	height: 42px;
}

.shop__sidebar__search form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input::-moz-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form input::placeholder {
	color: #b7b7b7;
}

.shop__sidebar__search form button {
	color: #b7b7b7;
	font-size: 15px;
	border: none;
	background: transparent;
	position: absolute;
	right: 0;
	padding: 0 15px;
	top: 0;
	height: 100%;
}

.shop__sidebar__accordion .card {
	border: none;
	border-radius: 0;
	margin-bottom: 25px;
}

.shop__sidebar__accordion .card:last-child {
	margin-bottom: 0;
}

.shop__sidebar__accordion .card:last-child .card-body {
	padding-bottom: 0;
	border-bottom: none;
}

.shop__sidebar__accordion .card-body {
	padding: 0;
	padding-top: 10px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.shop__sidebar__accordion .card-heading {
	cursor: pointer;
	margin: 20px;

}

.shop__sidebar__accordion .card-heading a {
	color: #111111;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
}

.shop__sidebar__categories ul,
.shop__sidebar__price ul,
.shop__sidebar__brand ul {
	height: 225px;
}

.shop__sidebar__categories ul li,
.shop__sidebar__price ul li,
.shop__sidebar__brand ul li {
	list-style: none;
	margin: 10px 20px;
	text-align: start;
}

.shop__sidebar__categories ul li a,
.shop__sidebar__price ul li a,
.shop__sidebar__brand ul li a {
	color: #ed1c24;
	font-size: 18px;
	line-height: 32px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.shop__sidebar__categories ul li a:hover,
.shop__sidebar__price ul li a:hover,
.shop__sidebar__brand ul li a:hover {
	color: #111111;
}
.shop__sidebar__brand h4{
	margin: 20px;
	font-size: 20px;
}
.shop__sidebar__brand ul {
	height: auto;
}

.shop__sidebar__price ul {
	height: auto;
}

.shop__sidebar__size {
	padding-top: 15px;
}

.shop__sidebar__size label {
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	border: 1px solid #e5e5e5;
	padding: 6px 25px;
	margin-bottom: 10px;
	margin-right: 5px;
	cursor: pointer;
}

.shop__sidebar__size label.active {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

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

.shop__sidebar__color {
	padding-top: 15px;
}

.shop__sidebar__color label {
	height: 30px;
	width: 30px;
	border-radius: 50%;
	position: relative;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 10px;
	cursor: pointer;
}

.shop__sidebar__color label.c-1 {
	background: #0b090c;
}

.shop__sidebar__color label.c-2 {
	background: #20315f;
}

.shop__sidebar__color label.c-3 {
	background: #f1af4d;
}

.shop__sidebar__color label.c-4 {
	background: #636068;
}

.shop__sidebar__color label.c-5 {
	background: #57594d;
}

.shop__sidebar__color label.c-6 {
	background: #e8bac4;
}

.shop__sidebar__color label.c-7 {
	background: #d6c1d7;
}

.shop__sidebar__color label.c-8 {
	background: #ed1c24;
}

.shop__sidebar__color label.c-9 {
	background: #ffffff;
}

.shop__sidebar__color label:after {
	position: absolute;
	left: -3px;
	top: -3px;
	height: 36px;
	width: 36px;
	border: 1px solid #e5e5e5;
	content: "";
	border-radius: 50%;
}

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

.shop__sidebar__tags {
	padding-top: 15px;
}

.shop__sidebar__tags a {
	color: #404040;
	font-size: 13px;
	font-weight: 700;
	background: #f1f5f8;
	padding: 5px 18px;
	display: inline-block;
	text-transform: uppercase;
	margin-right: 6px;
	margin-bottom: 10px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.shop__sidebar__tags a:hover {
	background: #111111;
	color: #ffffff;
}

.shop__sidebar__accordion .card-heading a:after,
.shop__sidebar__accordion .card-heading>a.active[aria-expanded=false]:after {
	content: "";
	font-family: "FontAwesome";
	font-size: 24px;
	font-weight: 700;
	color: #111111;
	position: absolute;
	right: 0;
	top: 2px;
	line-height: 20px;
	margin: 20px;
}

.shop__sidebar__accordion .card-heading.active a:after {
	content: "";
	font-family: "FontAwesome";
	font-size: 24px;
	font-weight: 700;
	color: #111111;
	position: absolute;
	right: 0;
	top: 2px;
	line-height: 20px;
}

.shop__product__option {
	margin-bottom: 45px;
}

.shop__product__option p {
	color: #111111;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
}

.shop__product__option__right {
    text-align: end;
}

.shop__product__option__right p {
	display: inline-block;
	margin-bottom: 0;
}

.shop__product__option__right .nice-select {
	float: none;
	display: inline-block;
	padding: 0;
	line-height: 26px;
	height: auto;
	border: none;
	padding:0 28px;
}

.shop__product__option__right .nice-select:after {
	border-bottom: 1.5px solid #111111;
	border-right: 1.5px solid #111111;
	height: 8px;
	right: 12px;
	width: 8px;
}

.shop__product__option__right .nice-select span {
	color: #111111;
	font-size: 15px;
	font-weight: 700;
}
.shop__product__option__left{
	background-color: white;
	padding: 5px;
}
.shop__product__option__right .nice-select .list {
	border-radius: 0;
}

.product__pagination {
	padding-top: 25px;
	text-align: center;
}

.product__pagination a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #111111;
	height: 30px;
	width: 30px;
	border: 1px solid transparent;
	border-radius: 50%;
	line-height: 30px;
	text-align: center;
}

.product__pagination a.active {
	border-color: #111111;
}

.product__pagination a:hover {
	border-color: #111111;
}

.product__pagination span {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	color: #111111;
	padding-left: 10px;
	padding-right: 15px;
}

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

.product__details__pic {
	text-align: center;
	background: #f3f2ee;
	padding: 40px 0 60px;
	
	/* margin-bottom: 100px; */
}

.product__details__pic .nav-tabs {
	border-bottom: none;
	width: 105px;
}

.product__details__pic .nav-tabs .nav-item {
	margin-bottom: 10px;
}

.product__details__pic .nav-tabs .nav-item:last-child {
	margin-bottom: 0;
}

.product__details__pic .nav-tabs .nav-item .nav-link {
	padding: 0;
	display: block;
}

.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic {
	height: 120px;
	width: 95px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic i {
	height: 56px;
	width: 56px;
	border: 4px solid #ffffff;
	border-radius: 50%;
	font-size: 20px;
	color: #ffffff;
	line-height: 48px;
	display: inline-block;
	text-align: center;
}

.product__details__pic .nav-tabs .nav-item.show .nav-link,
.product__details__pic .nav-tabs .nav-link.active {
	background-color: transparent;
	border-color: transparent;
}

.product__details__breadcrumb {
	margin-bottom: 30px;
}

.product__details__breadcrumb a {
	font-size: 15px;
	color: #111111;
	margin-right: 18px;
	display: inline-block;
	position: relative;
}

.product__details__breadcrumb a:after {
	position: absolute;
	right: -14px;
	top: 0;
	content: "";
	font-family: "FontAwesome";
}

.product__details__breadcrumb span {
	font-size: 15px;
	color: #b7b7b7;
	display: inline-block;
}

.product__details__pic__item {
	position: relative;
}

.product__details__pic__item a {
	height: 56px;
	width: 56px;
	border: 4px solid #ffffff;
	border-radius: 50%;
	font-size: 20px;
	color: #ffffff;
	line-height: 48px;
	text-align: center;
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -28px;
	margin-left: -28px;
}

.product__details__text {
	text-align: center;
	/* margin-top: 96px; */

}
.product__details__text .product_price{
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.product__details__text .product_price h5 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 10px;
	font-size: 28px;
}
.product__details__text .product_price .disc_price {
	font-size: 18px;
}
.product__details__text .product_price .discount{
	background-color: green;
	color:white ;
	font-size: 18px;
	padding: 10px 20px;
	border-radius: 50px;
}
.product__details__text .rating {
	margin-bottom: 20px;
}

.product__details__text .rating i {
	font-size: 15px;
	color: #f7941d;
	display: inline-block;
	margin-right: -5px;
}

.product__details__text .rating span {
	display: inline-block;
	color: #3d3d3d;
	margin-left: 5px;
}

.product__details__text h3 {
	color: #0d0d0d;
	font-weight: 700;
	margin-bottom: 16px;
}

.product__details__text h3 span {
	color: #b7b7b7;
	font-size: 20px;
	font-weight: 400;
	margin-left: 10px;
	text-decoration: line-through;
}

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

.product__details__option {
	margin-bottom: 30px;
}

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

.product__details__option__size span {
	color: #111111;
	display: inline-block;
	margin-right: 10px;
}

.product__details__option__size label {
	color: #111111;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	border: 1px solid #e5e5e5;
	padding: 6px 15px;
	margin-bottom: 0;
	margin-right: 5px;
	cursor: pointer;
}

.product__details__option__size label.active {
	background: #111111;
	color: #ffffff;
	border-color: #111111;
}

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

.product__details__option__color {
	display: inline-block;
	position: relative;
	top: 10px;
}

.product__details__option__color span {
	color: #111111;
	display: inline-block;
	margin-right: 10px;
	position: relative;
	top: -9px;
}

.product__details__option__color label {
	height: 30px;
	width: 30px;
	border-radius: 50%;
	position: relative;
	margin-right: 10px;
	margin-bottom: 0;
	display: inline-block;
	cursor: pointer;
}

.product__details__option__color label.c-1 {
	background: #0b090c;
}

.product__details__option__color label.c-2 {
	background: #20315f;
}

.product__details__option__color label.c-3 {
	background: #f1af4d;
}

.product__details__option__color label.c-4 {
	background: #ed1c24;
}

.product__details__option__color label.c-9 {
	background: #ffffff;
}

.product__details__option__color label:after {
	position: absolute;
	left: -3px;
	top: -3px;
	height: 36px;
	width: 36px;
	border: 1px solid #e5e5e5;
	content: "";
	border-radius: 50%;
}

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

.product__details__cart__option {
	margin-bottom: 25px;
}

.product__details__cart__option .quantity {
	display: inline-block;
	margin-right: 20px;
}

.product__details__cart__option .quantity .pro-qty {
	width: 100px;
	height: 40px;
	border: 1px solid #e5e5e5;
	position: relative;
}

.product__details__cart__option .quantity .pro-qty input {
	color: #0d0d0d;
	font-size: 15px;
	font-weight: 700;
	width: 70px;
	height: 100%;
	text-align: center;
	border: none;
}

.product__details__cart__option .quantity .pro-qty .qtybtn {
	font-size: 18px;
	color: #0d0d0d;
	position: absolute;
	right: 15px;
	top: 3px;
	height: 10px;
	width: 10px;
	cursor: pointer;
	font-weight: 600;
}

.product__details__cart__option .quantity .pro-qty .qtybtn.inc {
	top: 16px;
}

.product__details__btns__option {
	margin-bottom: 40px;
}

.product__details__btns__option a {
	display: inline-block;
	font-size: 13px;
	color: #3d3d3d;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-weight: 700;
	margin-right: 20px;
}

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

.product__details__last__option h5 {
	color: #111111;
	font-weight: 700;
	font-size: 20px;
	position: relative;
	margin-bottom: 26px;
}

.product__details__last__option h5 span {
	background: #ffffff;
	padding: 0 30px;
}

.product__details__last__option h5:before {
	position: absolute;
	left: 0;
	right: 0;
	top: 10px;
	height: 1px;
	width: 460px;
	background: #e5e5e5;
	content: "";
	z-index: -1;
	margin: 0 auto;
}

.product__details__last__option ul {
	padding-top: 40px;
}

.product__details__last__option ul li {
	list-style: none;
	font-size: 15px;
	color: #111111;
	font-weight: 700;
	line-height: 30px;
}

.product__details__last__option ul li span {
	font-weight: 400;
	color: #b7b7b7;
}

.product__details__tab {
	padding-top: 60px;
}

.product__details__tab .nav-tabs {
	border-bottom: 1px solid #e5e5e5;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.product__details__tab .nav-tabs .nav-item {
	margin-right: 50px;
}

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

.product__details__tab .nav-tabs .nav-item .nav-link {
	font-size: 20px;
	color: #000;
	padding: 0;
	border: none;
	font-weight: 700;
	padding-bottom: 10px;
	border-bottom: 2px solid transparent;
}

.product__details__tab .nav-tabs .nav-item .nav-link.active {
	border-bottom: 2px solid #78b533;
}

.product__details__tab__content {
	padding-top: 35px;
}

.note {
	color: #111111;
	font-size: 18px;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 25px;
}

.product__details__tab__content__item {
	margin-bottom: 30px;
}

.product__details__tab__content__item:last-child {
	margin-bottom: 0;
}

.product__details__tab__content__item h5 {
	color: #111111;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 12px;
}

.product__details__tab__content__item p {
	margin-bottom: 0;
}

/*---------------------
  Related
-----------------------*/

.related {
	padding-bottom: 55px;
}

.related-title {
	color: #111111;
	font-weight: 700;
	margin-bottom: 45px;
	text-align: center;
}

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

.footer {
	/* background: #111111; */
	position: relative;
	font-weight: 700;
	padding-top: 70px;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/footer-bg.jpg) no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.9;
	z-index: -1;
}

.footer::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: -1;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about .footer__logo {
	margin-bottom: 30px;
}

.footer__about .footer__logo a {
	background: white;
	display: inline-block;
	padding: 5px;
	border-radius: 0px;
}
.footer__about .footer__logo a img{
	height: 70px;
}
.custom_p {
	color: #fff;
	font-weight: 600;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	z-index: 1;
}
.custom_p a{
	color: #fff;
	font-weight: 600;
	position: relative;
	z-index: 1;
}


.custom_p img{
	height: 30px;
}
.footer__widget {
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.footer__widget h6 {
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.footer__widget ul li {
	line-height: 36px;
	list-style: none;
	position: relative;
	z-index: 1;
}

.footer__widget ul li a {
	color: #fff;
	font-size: 16px;
	transition: 0.6s all;
	position: relative;
	z-index: 1;
}
.footer__widget ul li a:hover{
	border-bottom: 1px solid #fff;
	letter-spacing: 0.6px;
}
.footer__widget ul li a img{
	height: 20px;
	margin-right: 6px;
}
.footer__widget .footer__newslatter p {
	color: #b7b7b7;
}

.footer__widget .footer__newslatter form {
	position: relative;
}

.footer__widget .footer__newslatter form input {
	width: 100%;
	font-size: 15px;
	color: #3d3d3d;
	background: transparent;
	border: none;
	padding: 15px 0;
	border-bottom: 2px solid #ffffff;
}

.footer__widget .footer__newslatter form input::-webkit-input-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input::-moz-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input:-ms-input-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input::-ms-input-placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form input::placeholder {
	color: #3d3d3d;
}

.footer__widget .footer__newslatter form button {
	color: #b7b7b7;
	font-size: 16px;
	position: absolute;
	right: 5px;
	top: 0;
	height: 100%;
	background: transparent;
	border: none;
}

.footer__copyright__text {
	border-top: 2px solid white;
	padding: 20px 0;
	margin-top: 40px;
}

.footer__copyright__text {
	position: relative;
	z-index: 1;
}

.footer__copyright__text p {
	color: #fff;
	font-weight: 600;
	margin-bottom: 0;
	position: relative;
	z-index: 1;
}

.footer__copyright__text p i {
	color: #78b533;
	position: relative;
	z-index: 1;
}

.footer__copyright__text p a {
    font-weight: 700;
    color: goldenrod;
	position: relative;
	z-index: 1;
}

/*---------------------
  Breadcrumb
-----------------------*/
.breadcump-section{
	margin-top: 160px;
}
.breadcrumb-option {
    margin: 140px 0 0 0;
    /* background: #f3f2ee; */
    background-image: url("../img/banner/about-contact-banner.jpg");
    padding: 35px;
    height: 257px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;	
	position: relative;
	
}
.banner-overlay {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;

}
.breadcrumb__text{
	background: rgba(255, 255, 255, 0.7);
	padding: 20px;
	border-radius: 30px;
}
.breadcrumb__text h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 8px;
	text-align: center;
	font-size: 35px;
}
.breadcrumb__links{

	text-align: center;
}
.breadcrumb__links a {
	font-size: 20px;
	color: #111111;
	margin-right: 18px;
	display: inline-block;
	position: relative;
}

.breadcrumb__links a:after {
	position: absolute;
	right: -14px;
	top: 0;
	content: "";
	font-family: "FontAwesome";
}

.breadcrumb__links span {
	font-size: 20px;
	color: #ed1c24;
	display: inline-block;
}

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

.breadcrumb-blog {
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 350px;
}

.breadcrumb-blog h2 {
	color: #ffffff;
	font-size: 60px;
	font-weight: 700;
}

/*---------------------
  About
-----------------------*/

.about {
	padding-bottom: 70px;
}

.about__pic {
	margin-bottom: 35px;
}

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

.about__item {
	margin-bottom: 30px;
}

.about__item h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 10px;
}

.about__item p {
	margin-bottom: 0;
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial {
	/* background: #f3f2ee; */
}

.testimonial__text {
    text-align: center;
    /* padding: 78px 126px 72px; */
	/* padding: 7px 109px 13px; */
}

.testimonial__text span {
	color: #78b533;
	font-size: 72px;
}

.testimonial__text p {
	color: #111111;
	font-size: 20px;
	font-style: italic;
	line-height: 30px;
	padding-top: 12px;
	margin-bottom: 25px;
}

.testimonial__author {
	display: inline-block;
}

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

.testimonial__author__pic img {
	height: 60px;
	width: 60px;
	border-radius: 50%;
}

.testimonial__author__text {
	overflow: hidden;
	padding-top: 3px;
}

.testimonial__author__text h5 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 5px;
}

.testimonial__author__text p {
	color: #b7b7b7;
	margin-bottom: 0 !important;
	padding-top: 0;
}

.testimonial__pic {
	height: 600px;
}

/*---------------------
  Counter
-----------------------*/

.counter {
	padding-bottom: 0;
	background-image: url(../img/banner/PB_Footer.jpg);
}

.counter .container {
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 70px;
	padding-top: 65px;
}

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

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

.counter__item .counter__item__number h2 {
	color: #fff;
	font-weight: 700;
	font-size: 60px;
	line-height: 50px;
	display: inline-block;
}

.counter__item .counter__item__number strong {
	color: #fff;
	font-weight: 700;
	font-size: 60px;
	line-height: 50px;
	display: inline-block;
}

.counter__item span {
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 25px;
	overflow: hidden;
}

/*---------------------
  Testimonial
-----------------------*/

.team {
	padding-bottom: 70px;
}

.team__item {
	margin-bottom: 30px;
}

.team__item img {
	min-width: 100%;
	margin-bottom: 25px;
}

.team__item h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 8px;
}

.team__item span {
	font-size: 15px;
	display: block;
	color: #b7b7b7;
}

/*---------------------
  Clients
-----------------------*/

.clients {
	padding-top: 0;
	padding-bottom: 25px;
}

.client__item {
	display: block;
	margin-bottom: 75px;
	text-align: center;
}

/*---------------------
  Shopping Cart
-----------------------*/

.shopping__cart__table {
	margin-bottom: 30px;
}

.shopping__cart__table table {
	width: 100%;
}

.shopping__cart__table table thead {
	border-bottom: 1px solid #000;
	background: white;
}

.shopping__cart__table table thead tr th {
	color: #111111;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	padding-top: 15px;
	padding-bottom: 15px;

}

.shopping__cart__table table tbody tr {
	border-bottom: 1px solid #000;
}

.shopping__cart__table table tbody tr td {
	padding-bottom: 30px;
	padding-top: 30px;
}

.shopping__cart__table table tbody tr td.product__cart__item {
	width: 350px;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic {
	float: left;
	margin-right: 30px;
}
.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic img{
height: 60px;
    width: 60px;
    object-fit: cover;
}
.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__text {
	overflow: hidden;
	padding-top: 0px;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__text h6 {
	color: #111111;
	font-size: 17px;
	font-weight: 600;
	margin-bottom: 10px;
	width: 202px;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__text h5 {
	color: #0d0d0d;
	font-weight: 700;
}

.shopping__cart__table table tbody tr td.quantity__item {
	width: 175px;
}

.shopping__cart__table table tbody tr td.quantity__item .quantity .pro-qty-2 {
	width: 80px;
}

.shopping__cart__table table tbody tr td.quantity__item .quantity .pro-qty-2 input {
	width: 50px;
	border: none;
	text-align: center;
	color: #111111;
	font-size: 16px;
}

.shopping__cart__table table tbody tr td.quantity__item .quantity .pro-qty-2 .qtybtn {
	font-size: 24px;
	color: #ed1c24;
	width: 10px;
	cursor: pointer;
}

.shopping__cart__table table tbody tr td.cart__price {
	color: #111111;
	font-size: 18px;
	font-weight: 700;
	width: 140px;
}

.shopping__cart__table table tbody tr td.cart__close i {
	font-size: 18px;
	color: #fff;
	height: 40px;
	width: 40px;
	background: #ed1c24;
	border-radius: 50%;
	line-height: 40px;
	text-align: center;
	transition: 0.4s all;
}
.shopping__cart__table table tbody tr td.cart__close i:hover{
	background: transparent;
	color: #000000;
	border: 1px solid #333;
}
.continue__btn.update__btn {
	text-align: right;
}

.continue__btn.update__btn a {
	color: #ffffff;
	background: #111111;
	border-color: #111111;
}

.continue__btn.update__btn a i {
	margin-right: 5px;
}

.continue__btn a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border: 1px solid #e1e1e1;
	padding: 14px 35px;
	display: inline-block;
}

.cart__discount {
	margin-bottom: 60px;
}

.cart__discount h6 {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 35px;
}

.cart__discount form {
	position: relative;
}

.cart__discount form input {
	font-size: 14px;
	color: #b7b7b7;
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
}

.cart__discount form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.cart__discount form input::-moz-placeholder {
	color: #b7b7b7;
}

.cart__discount form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.cart__discount form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.cart__discount form input::placeholder {
	color: #b7b7b7;
}

.cart__discount form button {
	font-size: 14px;
	color: #ffffff;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	background: #111111;
	padding: 0 30px;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
}

.cart__total {
	background: #f3f2ee;
	padding: 35px 40px 40px;
}

.cart__total h6 {
	color: #111111;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.cart__total ul {
	margin-bottom: 25px;
}

.cart__total ul li {
	list-style: none;
	font-size: 16px;
	color: #444444;
	line-height: 40px;
	overflow: hidden;
}

.cart__total ul li span {
	font-weight: 700;
	color: #78b533;
	float: right;
}

.cart__total .primary-btn {
	display: block;
	padding: 12px 10px;
	text-align: center;
	letter-spacing: 2px;
}

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

.coupon__code {
	color: #0d0d0d;
	font-size: 14px;
	border-top: 2px solid #77b527;
	background: #f5f5f5;
	padding: 23px 30px 18px;
	margin-bottom: 50px;
}

.coupon__code span {
	margin-right: 15px;
}

.coupon__code a {
	color: #0d0d0d;
}

.checkout__title {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid #e1e1e1;
	padding-bottom: 25px;
	margin-bottom: 30px;
}

.checkout__input {
	margin-bottom: 6px;
}

.checkout__input p {
	color: #111111;
	margin-bottom: 12px;
}

.checkout__input p span {
	color: #78b533;
}

.checkout__input input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	font-size: 14px;
	color: #b7b7b7;
	padding-left: 20px;
	margin-bottom: 20px;
}

.checkout__input input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.checkout__input input::-moz-placeholder {
	color: #b7b7b7;
}

.checkout__input input:-ms-input-placeholder {
	color: #b7b7b7;
}

.checkout__input input::-ms-input-placeholder {
	color: #b7b7b7;
}

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

.checkout__input__checkbox label {
	font-size: 15px;
	color: #0d0d0d;
	position: relative;
	padding-left: 30px;
	cursor: pointer;
	margin-bottom: 16px;
	display: block;
}

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

.checkout__input__checkbox label input:checked~.checkmark {
	border-color: #78b533;
}

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

.checkout__input__checkbox label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 14px;
	width: 14px;
	border: 1.5px solid #d7d7d7;
	content: "";
	border-radius: 2px;
}

.checkout__input__checkbox label .checkmark:after {
	position: absolute;
	left: 1px;
	top: -3px;
	width: 14px;
	height: 7px;
	border: solid #78b533;
	border-width: 1.5px 1.5px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
	content: "";
	opacity: 0;
}

.checkout__input__checkbox p {
	color: #0d0d0d;
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 22px;
}

.checkout__order {
	background: #f3f2ee;
	padding: 30px;
}

.checkout__order .order__title {
	color: #111111;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid #d7d7d7;
	padding-bottom: 25px;
	margin-bottom: 30px;
}

.checkout__order p {
	color: #444444;
	font-size: 16px;
	line-height: 28px;
}

.checkout__order .site-btn {
	width: 100%;
	margin-top: 8px;
}

.checkout__order__products {
	font-size: 16px;
	color: #111111;
	overflow: hidden;
	margin-bottom: 18px;
}

.checkout__order__products span {
	float: right;
}

.checkout__total__products {
	margin-bottom: 20px;
}

.checkout__total__products li {
	font-size: 16px;
	color: #444444;
	list-style: none;
	line-height: 26px;
	overflow: hidden;
	margin-bottom: 15px;
}

.checkout__total__products li:last-child {
	margin-bottom: 0;
}

.checkout__total__products li span {
	color: #111111;
	float: right;
}

.checkout__total__all {
	border-top: 1px solid #d7d7d7;
	border-bottom: 1px solid #d7d7d7;
	padding: 15px 0;
	margin-bottom: 26px;
}

.checkout__total__all li {
	list-style: none;
	font-size: 16px;
	color: #111111;
	line-height: 40px;
	overflow: hidden;
}

.checkout__total__all li span {
	color: #78b533;
	font-weight: 700;
	float: right;
}

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

.blog {
	padding-bottom: 55px;
}

.latest {
	padding-bottom: 55px;
}

.blog__item {
	margin-bottom: 45px;
	overflow: hidden;
}

.blog__item:hover a::after {
	width: 40px;
	background: #78b533;
}

.blog__item:hover .blog__item__text {
	-webkit-box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.05);
	box-shadow: 0px 15px 60px rgba(67, 69, 70, 0.05);
}

.blog__item__pic {
	height: 270px;
	transition: 0.7s all;
	overflow: hidden;
	transform-origin: 50% 50%;
}

.blog__item__text {
	padding: 30px 30px 25px;
    /* margin: 0 30px; */
    /* margin-top: -35px; */
    background: #ffffff;
    -webkit-transition: all, 0.3s;
    -o-transition: all, 0.3s;
    transition: all, 0.3s;
}

.blog__item__text span {
	color: #3d3d3d;
	font-size: 13px;
	display: block;
	margin-bottom: 10px;
}

.blog__item__text span img {
	margin-right: 6px;
}

.blog__item__text h5 {
	color: #0d0d0d;
	font-weight: 700;
	line-height: 28px;
	margin-bottom: 10px;
}

.blog__item__text a {
	display: inline-block;
	color: #111111;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	padding: 3px 0;
	position: relative;
}

.blog__item__text a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background: #111111;
	content: "";
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}
.blog__item:hover .blog__item__pic {
	scale: 1.05;
	border-radius: 30px;
	/* border: 10px inset rgb(252, 251, 251); */
    /* box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5); */
}
/*---------------------
  Blog Sidebar
-----------------------*/

.blog__sidebar__item {
	text-align: center;
	margin-bottom: 65px;
}

.blog__sidebar__item:last-child {
	margin-bottom: 0;
}

.blog__sidebar__item form input {
	height: 50px;
	font-size: 15px;
	color: #444444;
	padding-left: 20px;
	border: 1px solid #e1e1e1;
	width: 100%;
	margin-bottom: 20px;
}

.blog__sidebar__item form input::-webkit-input-placeholder {
	color: #444444;
}

.blog__sidebar__item form input::-moz-placeholder {
	color: #444444;
}

.blog__sidebar__item form input:-ms-input-placeholder {
	color: #444444;
}

.blog__sidebar__item form input::-ms-input-placeholder {
	color: #444444;
}

.blog__sidebar__item form input::placeholder {
	color: #444444;
}

.blog__sidebar__title {
	text-align: center;
	margin-bottom: 35px;
}

.blog__sidebar__title h4 {
	color: #111111;
	font-weight: 700;
	position: relative;
	padding-bottom: 20px;
}

.blog__sidebar__title h4::before {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	width: 70px;
	background: #e1e1e1;
	content: "";
	margin: 0 auto;
}

.blog__sidebar__social a {
	display: inline-block;
	font-size: 18px;
	color: #111111;
	width: 50px;
	height: 50px;
	background: #f2f2f2;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	margin-right: 6px;
}

.blog__sidebar__social a:last-child {
	margin-right: 6px;
}

.recent__item {
	display: block;
	overflow: hidden;
	margin-bottom: 25px;
	text-align: left;
}

.recent__item__pic {
	float: left;
	margin-right: 25px;
}

.recent__item__text {
	overflow: hidden;
}

.recent__item__text h6 {
	color: #111111;
	line-height: 21px;
	font-weight: 700;
}

.recent__item__text span {
	font-size: 13px;
	color: #888888;
}

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

.blog-hero {
	background: #f3f2ee;
	padding-top: 125px;
	padding-bottom: 190px;
}

.blog__hero__text h2 {
	color: #111111;
	font-size: 42px;
	font-weight: 700;
	line-height: 50px;
	margin-bottom: 18px;
}

.blog__hero__text ul li {
	list-style: none;
	font-size: 15px;
	color: #3d3d3d;
	display: inline-block;
	margin-right: 40px;
	position: relative;
}

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

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

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

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

.blog-details {
	margin-top: -115px;
	padding-top: 0;
}

.blog__details__content {
	position: relative;
}

.blog__details__pic {
	margin-bottom: 60px;
}

.blog__details__pic img {
	min-width: 100%;
	border-radius: 5px;
}

.blog__details__share {
	text-align: center;
	position: absolute;
	left: -120px;
	top: 0;
}

.blog__details__share span {
	color: #111111;
	font-size: 20px;
	text-transform: uppercase;
	font-weight: 700;
	display: block;
	margin-bottom: 30px;
}

.blog__details__share ul li {
	list-style: none;
	margin-bottom: 15px;
}

.blog__details__share ul li a {
	color: #ffffff;
	font-size: 18px;
	height: 46px;
	display: inline-block;
	width: 46px;
	border-radius: 50%;
	line-height: 46px;
	text-align: center;
	background: #4267b2;
}

.blog__details__share ul li a.twitter {
	background: #1da1f2;
}

.blog__details__share ul li a.youtube {
	background: #fe0003;
}

.blog__details__share ul li a.linkedin {
	background: #0173b2;
}

.blog__details__text {
	margin-bottom: 50px;
}

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

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

.blog__details__quote {
	background: #f3f2ee;
	padding: 50px 40px 35px;
	border-radius: 5px;
	position: relative;
	margin-bottom: 45px;
}

.blog__details__quote i {
	font-size: 16px;
	color: #ffffff;
	height: 50px;
	width: 50px;
	background: #78b533;
	border-radius: 50%;
	line-height: 50px;
	text-align: center;
	position: absolute;
	left: 40px;
	top: -25px;
}

.blog__details__quote p {
	color: #111111;
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	margin-bottom: 20px;
}

.blog__details__quote h6 {
	color: #78b533;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
}

.blog__details__option {
	border-top: 1px solid #e5e5e5;
	padding-top: 15px;
	margin-bottom: 70px;
}

.blog__details__author__pic {
	display: inline-block;
	margin-right: 15px;
}

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

.blog__details__author__text {
	display: inline-block;
}

.blog__details__author__text h5 {
	color: #111111;
	font-weight: 700;
}

.blog__details__tags {
	text-align: right;
}

.blog__details__tags a {
	display: inline-block;
	color: #111111;
	font-weight: 700;
	margin-right: 10px;
}

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

.blog__details__btns {
	margin-bottom: 40px;
}

.blog__details__btns__item {
	display: block;
	border: 1px solid #ebebeb;
	padding: 25px 30px 30px;
	margin-bottom: 30px;
}

.blog__details__btns__item.blog__details__btns__item--next {
	text-align: right;
}

.blog__details__btns__item.blog__details__btns__item--next p span {
	margin-right: 0;
	margin-left: 5px;
}

.blog__details__btns__item p {
	color: #b7b7b7;
	margin-bottom: 10px;
}

.blog__details__btns__item p span {
	font-size: 20px;
	position: relative;
	top: 4px;
	margin-right: 5px;
}

.blog__details__btns__item h5 {
	color: #111111;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
}

.blog__details__comment h4 {
	color: #333333;
	font-weight: 700;
	margin-bottom: 35px;
	text-align: center;
}

.blog__details__comment form input {
	height: 50px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	font-size: 15px;
	color: #b7b7b7;
	margin-bottom: 30px;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__comment form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input::-moz-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input::placeholder {
	color: #b7b7b7;
}

.blog__details__comment form input:focus {
	border-color: #000000;
}

.blog__details__comment form textarea {
	height: 120px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	padding-top: 12px;
	font-size: 15px;
	color: #b7b7b7;
	margin-bottom: 24px;
	resize: none;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

.blog__details__comment form textarea::-webkit-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea::-moz-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea:-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea::-ms-input-placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea::placeholder {
	color: #b7b7b7;
}

.blog__details__comment form textarea:focus {
	border-color: #000000;
}

.blog__details__comment form button {
	letter-spacing: 4px;
	padding: 14px 35px;
}

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

.map {
	height: 500px;
}

.map iframe {
	width: 100%;
}

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

.contact__text .section-title {
	text-align: left;
	margin-bottom: 40px;
}

.contact__text .section-title h2 {
	font-size: 48px;
	margin-bottom: 18px;
}

.contact__text .section-title p {
	color: #707070;
	line-height: 26px;
	margin-bottom: 0;
}

.contact__text ul li {
	list-style: none;
	margin-bottom: 26px;
	background-color: white;
	padding: 15px;
}

.contact__text ul li:last-child {
	margin-bottom: 0;
}

.contact__text ul li h4 {
	color: #111111;
	font-weight: 700;
	margin-bottom: 8px;
}
.contact__text ul li img{
	height: 35px;
	margin-right: 10px;
}
.contact__text ul li p {
	line-height: 27px;
	margin-bottom: 0;
	color: #ed1c24;
	font-weight: bolder;
}
.contact__text ul li p a{
	color: #ed1c24;
}
.contact__form input {
	height: 50px;
	width: 100%;
	border: 1px solid #78b533;
	padding-left: 20px;
	font-size: 15px;
	color: #000;
	margin-bottom: 30px;
}

.contact__form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.contact__form input::-moz-placeholder {
	color: #b7b7b7;
}

.contact__form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form input::placeholder {
	color: #b7b7b7;
}

.contact__form textarea {
	height: 150px;
	width: 100%;
	border: 1px solid #e1e1e1;
	padding-left: 20px;
	padding-top: 12px;
	font-size: 15px;
	color: #b7b7b7;
	margin-bottom: 24px;
	resize: none;
}

.contact__form textarea::-webkit-input-placeholder {
	color: #b7b7b7;
}

.contact__form textarea::-moz-placeholder {
	color: #b7b7b7;
}

.contact__form textarea:-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form textarea::-ms-input-placeholder {
	color: #b7b7b7;
}

.contact__form textarea::placeholder {
	color: #b7b7b7;
}

.contact__form button {
	letter-spacing: 4px;
	padding: 14px 35px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/
/* Responsive */
@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Mobile Mega Menu Styles */
@media only screen and (max-width: 767px) {
	.slicknav_nav .has-megamenu {
		position: relative;
	}

	.slicknav_nav .mega-menu {
		position: static;
		width: 100%;
		background: transparent;
		box-shadow: none;
		padding: 0;
		display: none;
	}

	.slicknav_nav .mega-menu-wrapper {
		display: block;
		padding: 0;
	}

	.slicknav_nav .mega-menu-column {
		width: 100%;
		padding: 0 0 10px 20px;
	}

	.slicknav_nav .mega-menu-column h4 {
		color: #111111;
		font-size: 16px;
		/* margin: 10px 0 5px; */
		padding-bottom: 5px;
		border-bottom: 2px solid rgba(117, 212, 8);
	}

	.slicknav_nav .mega-menu-column ul li {
		padding-left: 15px;
	}

	.slicknav_nav .mega-menu-column ul li a {
		padding: 5px 0;
		font-size: 15px;
		color: #000;
	}

	.slicknav_nav .mega-menu-image {
		display: none;
	}

	.slicknav_nav .has-megamenu > .slicknav_arrow {
		right: 0;
		top: 0;
		position: absolute;
		height: 38px;
		width: 38px;
		line-height: 38px;
		text-align: center;
		background: rgba(120, 181, 51, 0.1);
		border-radius: 3px;
	}
}

/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.categories__text h2 {
		font-size: 26px;
	}
	.header__menu ul li {
		margin-right: 38px;
	}
	.hero__slider.owl-carousel .owl-nav button {
		left: 2px;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		right: 2px;
	}
	.testimonial__text {
		padding: 130px 45px 175px;
	}
}

/* Tablet Device = 768px */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.header__menu ul li {
		margin-right: 10px;
	}
	.header__nav__option a {
		margin-right: 10px;
	}
	.header__nav__option .price {
		margin-left: 0;
	}
	.hero__slider.owl-carousel .owl-nav button {
		left: 2px;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		right: 2px;
	}
	.banner__item.banner__item--middle {
		margin-top: 0;
	}
	.banner__item.banner__item--last {
		margin-top: 0;
	}
	.banner__item {
		margin-bottom: 40px;
	}
	.banner {
		padding-bottom: 60px;
	}
	.categories__text {
		margin-bottom: 40px;
	}
	.categories__hot__deal {
		margin-bottom: 40px;
	}
	.instagram__text {
		padding-top: 70px;
	}
	.shop__sidebar {
		padding-right: 0;
		padding-top: 40px;
	}
	.cart__discount {
		margin-top: 40px;
	}
	.testimonial__text {
		padding: 100px 105px 100px;
	}
	.blog__details__share {
		position: relative;
		left: 0;
		margin-bottom: 18px;
	}
	.blog__details__share span {
		margin-bottom: 14px;
		margin-right: 0;
	}
	.blog__details__share ul li {
		margin-bottom: 15px;
		display: inline-block;
		margin-right: 10px;
	}
	.blog__details__share ul li:last-child {
		margin-right: 0;
	}
}

/* Wide Mobile = 480px */

@media only screen and (max-width: 767px) {
	.canvas__open {
		display: block;
		font-size: 22px;
		color: #111111;
		height: 35px;
		width: 35px;
		line-height: 35px;
		text-align: center;
		border: 1px solid #111111;
		border-radius: 2px;
		cursor: pointer;
		position: absolute;
		right: 15px;
		top: 25px;
	}
	.offcanvas-menu-overlay {
		position: fixed;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgba(0, 0, 0, 0.7);
		content: "";
		z-index: 98;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		visibility: hidden;
	}
	.offcanvas-menu-overlay.active {
		visibility: visible;
	}
	.offcanvas-menu-wrapper {
		position: fixed;
		left: -300px;
		width: 300px;
		height: 100%;
		background: #ffffff;
		padding: 50px 20px 30px 30px;
		display: block;
		z-index: 99;
		overflow-y: auto;
		-webkit-transition: all, 0.5s;
		-o-transition: all, 0.5s;
		transition: all, 0.5s;
		opacity: 0;
	}
	.offcanvas-menu-wrapper.active {
		opacity: 1;
		top: 0;
		left: 0;
	}
	.offcanvas__menu {
		display: none;
	}
	.slicknav_btn {
		display: none;
	}
	.slicknav_menu {
		background: transparent;
		padding: 0;
		margin-bottom: 20px;
	}
	.slicknav_nav ul {
		margin: 0;
	}
	.slicknav_nav .slicknav_row,
	.slicknav_nav a {
		padding: 7px 0;
		margin: 0;
		text-align: center;
		color: #111111;
		font-weight: 600;
	}
	.slicknav_nav .slicknav_arrow {
		color: #111111;
	}
	.slicknav_nav .slicknav_row:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}
	.slicknav_nav a:hover {
		border-radius: 0;
		background: transparent;
		color: #111111;
	}
	.slicknav_nav {
		display: block !important;
	}
	.offcanvas__option {
		text-align: center;
		margin-bottom: 30px;
		margin-top: 54px;
	}
	.offcanvas__links {
		display: inline-block;
		margin-right: 25px;
	}
	.offcanvas__links a {
		color: #111111;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 2px;
		margin-right: 16px;
		display: inline-block;
		font-weight: 600;
	}
	.offcanvas__links a:last-child {
		margin-right: 0;
	}
	.offcanvas__top__hover {
		display: inline-block;
		position: relative;
	}
	.offcanvas__top__hover:hover ul {
		top: 30px;
		opacity: 1;
		visibility: visible;
		width: 100%;
	}
	.offcanvas__top__hover span {
		color: #111111;
		font-size: 13px;
		text-transform: uppercase;
		letter-spacing: 2px;
		display: inline-block;
		cursor: pointer;
		font-weight: 600;
	}
	.offcanvas__top__hover span i {
		font-size: 20px;
		position: relative;
		top: 3px;
		right: 2px;
	}
	.offcanvas__top__hover ul {
		background: #5f9229;
		display: inline-block;
		padding: 2px 0;
		position: absolute;
		left: 0;
		top: 44px;
		opacity: 0;
		visibility: hidden;
		z-index: 3;
		-webkit-transition: all, 0.3s;
		-o-transition: all, 0.3s;
		transition: all, 0.3s;
	}
	.offcanvas__top__hover ul li {
		list-style: none;
		font-size: 15px;
		color: #ffffff;
		padding: 2px 15px;
		cursor: pointer;
	}
	.offcanvas__top__hover ul a{

		font-size: 13px;
		color: #ffffff;
	
	}
	.offcanvas__nav__option {
		text-align: center;
		margin-bottom: 25px;
	}
	.offcanvas__nav__option a {
		display: inline-block;
		margin-right: 26px;
		position: relative;
	}
	.offcanvas__nav__option a img{
		height: 30px;
	}
	.offcanvas__nav__option a span {
	        color: white;
        font-size: 14px;
        position: absolute;
        left: 11px;
        top: -23px;
        background: red;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        align-items: center;
        display: flex;
        text-align: center;
        justify-content: center;
	}
	.offcanvas__nav__option a:last-child {
		margin-right: 0;
	}
	.offcanvas__nav__option .price {
		font-size: 15px;
		color: #111111;
		font-weight: 700;
		display: inline-block;
		/* margin-left: -20px; */
		position: relative;
		top: 3px;
	}
	.offcanvas__text p {
	        color: green;
        margin-bottom: 0;
        text-align: center;
        font-size: 20px;
	}
	.header__top {
		display: none;
	}
	.header .container {
		position: relative;
	}
	.header__menu {
		display: none;
	}
	.header__nav__option {
		display: none;
	}
	.search-model-form input {
		width: 100%;
		font-size: 24px;
	}
	.hero__text{
		position: absolute;
        top: -105px;
        left: 11%;
	}
	.hero__slider.owl-carousel .owl-nav button {
	left: 15px;
        top: 35%;
	}
	.hero__slider.owl-carousel .owl-nav button.owl-next {
		/* left: 75px; */
		right: 0;
	}
	.banner__item.banner__item--middle {
		margin-top: 0;
	}
	.banner__item.banner__item--last {
		margin-top: 0;
	}
	.banner__item {
		margin-bottom: 40px;
	}
	.banner {
		padding-bottom: 60px;
	}
	.banner__item__pic {
		float: none;
	}
	.banner__item__pic img {
		min-width: 100%;
	}
	.banner__item__text {
		max-width: 100%;
		position: relative;
		top: 0;
		padding-top: 22px;
	}
	.filter__controls li {
		margin-right: 15px;
	}
	.categories__text {
		margin-bottom: 40px;
	}
	.categories__hot__deal {
		margin-bottom: 40px;
	}
	.instagram__text {
		padding-top: 70px;
	}
	.instagram__pic__item {
		width: 50%;
	}
	.shop__product__option__right {
		text-align: center;
		padding-top: 20px;
	}
	.shop__sidebar {
		padding-right: 0;
		margin-bottom: 40px;
	}
	.testimonial__text {
		padding: 100px 40px 100px;
	}
	.product__details__breadcrumb {
		text-align: left;
	}
	.product__details__pic .nav-tabs {
		width: auto;
		margin-bottom: 40px;
	}
	.product__details__pic .nav-tabs .nav-item {
		margin-bottom: 0;
		margin-right: 10px;
	}
	.product__details__option__size {
		display: block;
		margin-right: 0;
		margin-bottom: 25px;
	}
	.product__details__last__option h5:before {
		width: 440px;
	}
	.product__details__tab .nav-tabs .nav-item {
		margin-bottom: 15px;
	}
	.shopping__cart__table {
		overflow-y: auto;
	}
	.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__pic {
		float: none;
		margin-right: 0;
	}
	.continue__btn {
		text-align: center;
	}
	.continue__btn.update__btn {
		text-align: center;
		margin-top: 20px;
	}
	.cart__discount {
		margin-top: 40px;
	}
	.checkout__order {
		margin-top: 20px;
	}
	.blog__details__share {
		position: relative;
		left: 0;
		margin-bottom: 18px;
	}
	.blog__details__share span {
		margin-bottom: 14px;
		margin-right: 0;
	}
	.blog__details__share ul li {
		margin-bottom: 15px;
		display: inline-block;
		margin-right: 10px;
	}
	.blog__details__share ul li:last-child {
		margin-right: 0;
	}
	.blog__details__author {
		text-align: center;
		margin-bottom: 20px;
	}
	.blog__details__tags {
		text-align: center;
	}
	.contact__text {
		margin-bottom: 40px;
	}
	.hero__social {
		margin-top: 180px;
	}
}

/* Small Device = 320px */

@media only screen and (max-width: 479px) {
	.cart__total {
		padding: 35px 30px 40px;
	}
	.hero__items {
		height: 200px;
		/* padding-top: 130px;
		padding-bottom: 40px; */
	}
	.hero__text h2 {
		font-size: 20px;
		line-height: 48px;
		margin-bottom: 0;

}
.hero__text h6 {
	opacity: 0;

	margin-bottom: 8px;
	
}
.hero__text p{
		display: none;
		margin-bottom: 0px;
	}
	.hero__social {
		margin-top: 145px;
	}
	.categories__deal__countdown .categories__deal__countdown__timer {
		margin-left: 0;
	}
	.instagram__pic__item {
		width: 100%;
	}
	.testimonial__text {
		padding: 60px 40px 60px;
	}
	.product__details__pic .nav-tabs .nav-item .nav-link .product__thumb__pic {
		width: 100%;
	}
	.product__details__pic .nav-tabs .nav-item {
		margin-bottom: 10px;
		width: calc(24.33% - 10px);
	}
	.product__details__last__option h5:before {
		width: 280px;
	}
	.product__details__cart__option .quantity {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.product__details__last__option h5 span {
		font-size: 16px;
	}
	.blog__hero__text h2 {
		font-size: 36px;
	}
	.categories__text h2 {
		font-size: 30px;
		line-height: 55px;
	}
	.categories__text:before {
		height: 250px;
	}
}

/* ***********Category image starts****** */


/* Container styling */
.category-container {
    position: relative;
    width: 400px; /* Adjust as needed */
    overflow: hidden;
	background-color: rgba(0, 0, 0, 0.3); /* Black background with transparency */
}

/* Image styling */
.category-container img {
	display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}
.category-container .category-border{
    left: 15px;
top: 15px;
right: 15px;
bottom: 15px;
opacity: 0; 
}

/* Overlay styling */
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.3); /* Black background with transparency */
}

/* Text styling */
.text {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Hover effect */
.category-container:hover img {
    transform: scale(1.1); /* Optional: image zoom effect */
}

.category-container:hover .overlay {
    opacity: 1;
}

.category-container img:hover .category-container .category-border{
opacity: 1;
}


@media(max-width:767px){
	.instagram__pic img {
		height: 222px;
		width: 100%;
		object-fit: cover;
		border-radius: 30px;
	}
}


/* ***********sign-in and sign-up starts**** */
.sign-in-container{
	margin: 20px 0 0 0;
    /* background: white; */
    border-radius: 38px;
    /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); */
    padding: 20px;
    /* width: 77%; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.sign-in-logo {
	text-align: center;
}
.sign-in-logo img{
	margin-bottom: 25px;
	height: 80px;
}
.sign-in-image{
	text-align: center;
}
.sign-in-image img{
	height: 395px;
    width: 400px;
    object-fit: cover;

}
.sign_in_form{
margin-bottom: 15px;
}
.login_upper .login_text strong{
font-size: 25px;
}
.login_upper .signup_text strong{
font-size: 20px;
}
.sign_up p{
	font-size: 18px;
	color: #ed1c24;
	font-weight: bold;
}
.sign_up p a{
	color:peru;
	transition: 0.6s all linear;
}
.sign_up p a:hover{
	color: #000000;
}
.sign_in_form .form-group input, .sign_in_form .form-group select, .sign_in_form .form-group textarea {
    border-radius: 10px;
    box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.15);
    font-weight: 300;
    height: 50px;
	color: #000;
    margin-bottom: 15px;
    padding: 15px;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    width: 100%;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    color: #000;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.sign_in_form .form-group input:focus, .sign_in_form .form-group select:focus, .sign_in_form .form-group textarea:focus {
    box-shadow: 5px 5px 24px rgba(0, 0, 0, 0.15);
    border: none;
}
.forgot-password{
color: #ed1c24;
font-weight: bold;
transition: 0.4s all;
}
.forgot-password:hover{
	color: black;
}
@media(max-width:767px){
	.sign-in-container {
		margin: 50px 0px 0px;
		/* background: white; */
		border-radius: 27px;
		box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 20px;
		width: 100%;
	}
	.breadcrumb-option {
	    margin: 85px 0 0 0;
    /* background: #f3f2ee; */
    background-image: url(../img/banner/about-contact-banner.jpg);
    padding: 35px;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
	}
	.breadcrumb__text h4 {
		font-size: 16px;
	}
	.breadcrumb__links a {
		font-size: 13px;
	}
	.breadcrumb__links span {
		font-size: 13px;
	}
	.product__details__pic {

		margin-top: 50px;
		/* margin-bottom: 100px; */
	}
	.product__details__text {
		text-align: center;
		margin-top: 50px;
	}
}
/* ***********sign-in ends**** */

.cart-img img{
	height: 30px;
}

/* ******clinet-carousel starts**** */
.client-carousel .client-item{
    text-align: center;
    display: flex;
    justify-content: center;
}
.client-carousel .client-item img{
	height: 150px;
	width: 150px;
	object-fit: contain;
}
/* ******clinet-carousel enss**** */
/* ***.testimonial strats*** */
.testimonial-carousel .testimonial-item{
	width: 100%;
    background: whitesmoke;
    padding: 22px;
	border-radius: 35px;
	box-shadow: rgba(0, 0, 0, 0.3);
}
/* ***.testimonial enss*** */


/* ************checkout strts***** */
.chekout-section {
    width: 100%;
    display: block;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    background-color: #fff;
}

.checkout-section .block-content {
    width: 100%;
    display: block;
    padding: 15px;
}

.addresslist {
    width: 100%;
    margin: 0;
    padding: 10px;
    list-style: none;
 
    display: flex;
  
    flex-wrap: wrap;

}

.addresslist li {

    width: 50%;
    float: left;
    padding: 15px;
 
    display: flex;

}
.addresslist li .addressblock{
    background-color: #F6F7F8;
    width: 100%;
    height: 100%;
    padding: 15px 30px 10px 15px;
    position: relative;
	border-radius: 15px;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
}

.check-style {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}
.check-style input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.check-style .checkblock {
    position: absolute;
    bottom: 3px;
    top: 6px;
    right: 5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    opacity: 0.3 !important;
    background-color: #ed1c24;
}
.check-style input:checked ~ .b-check {
    border: 2px solid #ed1c24;
	border-radius: 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.check-style .checkblock:after {
    content: "";
    position: absolute;
    left: 10px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: 1px solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check-style input:checked ~ .checkblock {
    opacity: 1 !important;
}
.addressblock .c-name{
    font-size: 15px;
    font-weight: bold;
color: #000;
    padding-bottom: 5px;
    position: relative;
    padding-left: 22px;

}
.addressblock .c-name i{
    position: absolute;
    top: 0;
    left: 0;
    color: #052878;
}

.edit-address{
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 5;
    width: 30px;
    height: 30px;
    display: block;
    text-align: center;
    line-height: 30px;
    color: #052878;
}

@media(max-width:767px){
	.addresslist li {
		width: 100%;
		float: left;
		padding: 15px;
		display: flex;
	}
}


.toggle-button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    border: none;
    background-color: #78b533;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.toggle-button:hover {
    background-color: #ed1c24;
}

.collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
    border-radius: 5px;
    opacity: 0;
    transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.5s ease;
}

.collapsible.open {
	max-height: 1096px;
    padding: 20px;
    opacity: 1;
    height: auto;
    margin: 0;
    width: 100%;
}

@media (min-width: 600px) {
    .collapsible {
        width: 50%;
    }
}

.form-control:focus {
    color: #000;
    background-color: #fff;
    border-color: #ed1c24;
    outline: 0;
    box-shadow: 0 0 0 .3rem rgba(238, 80, 59, 0.25);
}

/* **************my account secton***************** */
.account-section {
	position: sticky;
	width: 100%;
	top: 0;
	margin-bottom: .5rem;
	display: block;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
	-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2);
	margin-top: 90px;
  }
  
  .account-section .name-heading {
	padding: 15px;
	width: 100%;
	font-size: 18px;
	font-weight: 700;

	display: inline-block;
	border-bottom: 1px solid #efefef;
	background-color: #f4f4f4;
	margin-bottom: 5px;
	border-radius: 6px 6px 0 0;
  }
  
  .account-section .name-heading .userblock {
	width: 100%;
	display: block;
	position: relative;
	padding-left: 65px;
  }
  
  .account-section .name-heading .userblock .usericon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	padding: 2px;
	display: inline-block;
	position: absolute;
	top: -3px;
	left: -5px;
	overflow: hidden;
  }
  
  .account-section .name-heading .userblock .username {
	width: 99%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #602619;
  }
  .account-section ul.accountlist {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: block;
	
  }
  
  .account-section ul.accountlist li {

	width: 100%;
	display: inline-block;
	margin-bottom: 1px;
  }
  .account-section ul.accountlist li a {
	display: block;
	padding: 10px 15px;
	font-size: 17px;
	position: relative;
	text-decoration: none;
	color: #000;
	transition: 0.4s all linear;
  }
  .account-section ul.accountlist li a:hover {
	display: block;
	padding: 10px 15px;
	font-size: 17px;
	position: relative;
	text-decoration: none;
	color: #fff;
	background-color: #b92c2a;
  }
  .account-section ul.accountlist li.active a{
  background-color: #ed1c24;
  color: white;
  }
  .account-section ul.accountlist li a img{
  height: 30px;
  width: 30px;
  object-fit: contain;
  }
  
  
  .account-section .block-content, .checkout-section .block-content {
	width: 100%;
	display: block;
	padding: 15px;
  }
  

  .address-block-list {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    background-color: #fafafa;
    padding: 30px 30px 50px;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
}
.address-block-list:before, .review-list:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 35px 0 0;
    border-color: #fff transparent transparent;
}
.address-block-list .nolist {
    position: absolute;
    top: 14px;
    left: 20px;
    z-index: 2;
    font-size: 13px;
    font-weight: 700;
    color: #464646;
}

.address-block-list ul.blocklist {
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
}
.address-block-list ul.blocklist li {
    width: 100%;
    position: relative;
    padding: 6px 10px 6px 30px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 16px;
    color: #000;
	font-weight: bold;
}

.address-block-list ul.blocklist li .locblock {
    /* display: flex; */
    align-items: baseline;
    margin-bottom: 5px;
}
.card-1{
	border: none;
}

.product-image{
	height: 100px;
	width: 100px;
	object-fit: cover;
}

.logo-background {
    background-color: white;  /* Set the background color to white */
    padding: 1px 3px;            /* Add padding around the logos */
    display: inline-block;    /* Ensure padding is applied around the image */
    border-radius: 5px;       /* Optional: Add rounded corners */
    box-shadow: 0 0 5px rgba(0,0,0,0.1);  /* Optional: Add a slight shadow for better visibility */
    position: relative;
    z-index: 1;
}

@media(max-width:767px){
	.product__item__pic {
	height: 260px;
	position: relative;
	background-position: center center;
	transition: 0.4s all;
	overflow: hidden;
	background-size: contain;
}
.shopping__cart__table table tbody tr td.product__cart__item {
    width: 350px;
    display: flex;
}

.shopping__cart__table table tbody tr td.product__cart__item .product__cart__item__text {
    overflow: hidden;
    padding-top: 0px;
    margin-left: 13px;
}
.shopping__cart__table table tbody tr td.quantity__item .quantity .pro-qty-2 {
    width: 131px;
}
}



@media(max-width:767px){
	.account-section {
    margin-top: 29px;
}
.breadcump-section {
    margin-top: 108px;
}
.checkout {
margin-top: 0px;
}
}


/* **********listing********* */
/* Base Card */
.listing-card .product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
}
.listing-card .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.15);
}

/* Product Image */
.listing-card .product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.listing-card .product-image {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.listing-card .product-image-wrapper:hover .product-image {
  transform: scale(1.05);
}

/* Wishlist Button */
.listing-card .wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}

.listing-card .wishlist-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #78b533;
  font-size: 18px;
}

.listing-card .wishlist-btn:hover a {
  color: red;
}

.listing-card .product-image-wrapper:hover .wishlist-btn {
  opacity: 1;
  visibility: visible;
  transform: scale(1.1);
}
.heart-icon {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

.wishlist-btn:hover .heart-icon path {
  stroke: red;
  fill: red;
}

/* Content */
.listing-card .product-content {
  padding: 16px;
  text-align: center;
}
.listing-card .product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Price */
.listing-card .product-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}
.listing-card .price-offer {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000; /* green highlight */
}
.listing-card .price-actual {
    font-size: 0.9rem;
    color: darkblue;
    text-decoration: line-through; 
}
.listing-card .price-discount {
  font-size: 0.9rem;
  font-weight: 600;
  color: #77b527; /* red discount */
}

/* Hover Actions */
.listing-card .product-hover-actions {
  display: flex;
      flex-direction: column;
  justify-content: center ;
  gap: 12px;
  align-items: center;
  transition: all 0.3s ease;
}

/* Hide arrows in number input for Chrome, Safari, Edge, Opera */
.listing-card input[type=number]::-webkit-inner-spin-button, .listing-card
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Hide arrows in Firefox */
.listing-card input[type=number] {
  -moz-appearance: textfield;
}

/* Optional: make it look clean */
.listing-card input[type=number] {
  text-align: center;
  width: 70px;

  border-radius: 6px;
  font-size: 16px;
}

/* Quantity Box */
.listing-card .quantity-box {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.listing-card .qty-btn-de {
  background: red;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s;
}
.listing-card .qty-btn-in {
  background: green;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;
  transition: background 0.2s;
}
.listing-card .qty-btn:hover {
  background: #e0e0e0;
}
.listing-card .quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Add to Cart */
.listing-card .btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #78b533;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}
.listing-card .btn-add-to-cart:hover {
  background: #5f9229;
}
.listing-card .btn-add-to-cart i {
  font-size: 1rem;
}


/* **********listing********* */


/* Product Card */
.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* Image */
.product-image-wrapper {
  position: relative;
  overflow: hidden;
}
.product-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image {
  transform: scale(1.08);
}

/* Label */
.product-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #78b533;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Wishlist */
.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.product-image-wrapper:hover .wishlist-btn {
  opacity: 1;
  visibility: visible;
  transform: scale(1.1);
}
.heart-icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.wishlist-btn:hover .heart-icon path {
  stroke: red;
  fill: red;
}

/* Content */
.product-content {
  padding: 16px;
  text-align: center;
}
.product-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/* Price Section */
.product-price {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}
.price-offer {
  font-size: 18px;
  font-weight: bold;
  color: #78b533;
}
.price-actual {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}
.price-discount {
  font-size: 14px;
  font-weight: 600;
  color: red;
}
/* ******data not found****** */
.data-not-found {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 400px;
  margin: 40px auto;
}

.empty-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.empty-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}

.empty-text {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.btn-empty {
  display: inline-block;
  background: #78b533;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background 0.3s ease;
  text-decoration: none;
}
.btn-empty:hover {
  background: #5f9229;
}

/* ******data not found****** */

/* *****wishlist******* */
/* Wishlist Card */
.wishlist-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 15px;
      margin-top: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wishlist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Remove Button */
.wishlist-card .remove-btn {
  color: red;
  font-size: 20px;
  transition: transform 0.2s;
}
.wishlist-card .remove-btn:hover {
  transform: scale(1.2);
}
.wishlist-card .remove-icon {
  width: 24px;
  height: 24px;
  stroke: red;
}

/* Product Image */
.wishlist-card .product-img {
  border-radius: 8px;
  transition: transform 0.3s ease;
  height: 100px;
  width: 100px;
  object-fit: cover
}

.wishlist-card .product-img:hover {
  transform: scale(1.05);
}

/* Product Title */
.wishlist-card .product-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.wishlist-card .product-title:hover {
  color: #78b533;
}

/* Price Styling */
.wishlist-card .wishlist-price {
  margin-top: 5px;
}
.wishlist-card .price {
  font-size: 16px;
  font-weight: bold;
  color: #78b533;
}
.wishlist-card .old-price {
  font-size: 14px;
  color: #999;
  margin-left: 8px;
}

/* View Button */
.wishlist-card .view-btn {
  background: #78b533;
  color: #fff;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  border: none;
  transition: background 0.3s;
}
.wishlist-card .view-btn:hover {
  background: #5f9229;
}

/* Empty State */
.wishlist-empty {
  text-align: center;
  padding: 60px 20px;
  border: 1px dashed #ccc;
  border-radius: 12px;
  background: #fafafa;
  margin-top: 30px;
}
.wishlist-empty .empty-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}
.wishlist-empty h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.wishlist-empty p {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}
.wishlist-empty  .start-btn {
  background: #78b533;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.wishlist-empty .start-btn:hover {
  background: #5f9229;
}

/* *****wishlist******* */

/* Wishlist Account Section */
.wishlist-account {
  padding: 20px;
}

.wishlist-account .wishlist-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #333;
}

/* Wishlist Card */
.wishlist-account .wishlist-card {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wishlist-account .wishlist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* Product Image */
.wishlist-account .wishlist-img {
  flex: 0 0 90px;
}
.wishlist-account .product-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.wishlist-account .product-image:hover {
  transform: scale(1.05);
}

/* Product Details */
.wishlist-account .wishlist-details {
  flex: 1;
  margin-left: 20px;
}
.wishlist-account .product-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}
.wishlist-account .wishlist-price {
  margin-bottom: 10px;
}
.wishlist-account .price {
  font-size: 16px;
  font-weight: bold;
  color: #78b533;
}
..wishlist-account .old-price {
  font-size: 14px;
  color: #999;
  margin-left: 10px;
  text-decoration: line-through;
}

/* Buttons */
.wishlist-account .wishlist-btn {
  background: #78b533;
  color: #fff;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.wishlist-account .wishlist-btn:hover {
  background: #5f9229;
}

.wishlist-account .remove-btn {
  background: #ff4d4d;
  color: #fff;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.wishlist-account .remove-btn:hover {
  background: #cc0000;
}

/* *****aplly coupon**** */
/* Coupon Section */
.cart-coupon-section {
  background: #fff;
  border: 1px solid #eee;
  padding: 8px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Coupon Input Form */
.coupon-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coupon-input-group {
  display: flex;
  width: 100%;
  max-width: 450px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.coupon-input {
  flex: 1;
  padding: 9px;
  border: none;
  outline: none;
  font-size: 15px;
  color: #333;
}

.coupon-btn {
  background: #78b533;
  color: #fff;
  font-weight: 600;
  padding: 12px; 
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.coupon-btn:hover {
  background: #5f9229;
}

/* Active Coupon */
.coupon-active {
  text-align: center;
}

.coupon-info {
  font-size: 15px;
  margin-bottom: 12px;
  color: #444;
}

.coupon-code {
  font-weight: 700;
  color: #78b533;
}

/* Remove Button */
.remove-coupon-btn {
  background: #ff4d4d;
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.remove-coupon-btn:hover {
	color: #fff;
  background: #cc0000;
}
.os{
	color: #000;
	font-weight: 600;
	font-size: 20px;
}
.chekout-section .form-control:focus {
    box-shadow: none;

}
/* *****aplly coupon**** */

/* *******checkout--------- */
/* Checkout Order Card */
.checkout__order {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 24px;
  transition: all 0.3s ease;
}

.checkout__order:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Title */
.checkout__order .order__title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 18px;
  border-bottom: 2px solid #f2f2f2;
  padding-bottom: 10px;
}

/* Products Header */
.checkout__order__products {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #555;
}

/* Product List */
.checkout__total__products {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkout__total__products li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px dashed #e6e6e6;
  color: #333;
  gap: 10px;
}

.checkout__total__products li:last-child {
  border-bottom: none;
}

/* Product Name */
.checkout__total__products .rnc {
  flex: 1;
  color: #444;
  font-weight: 500;
  word-break: break-word; /* handle long names */
}

/* Price */
.checkout__total__products .rolu {
  font-weight: 600;
  color: #111;
  white-space: nowrap;
}

/* Discount & Delivery styling */
.checkout__total__products li span.rnc {
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.checkout__total__products li span.rolu {
  color: #77b527;
  font-weight: 600;
  font-size: 20px;
}

/* Grand Total Highlight */
.checkout__total__products li.grndtl {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-top: 2px solid #ddd;
  margin-top: 10px;
  padding-top: 12px;
}

.checkout__total__products li.grndtl .rolu {
  color: #e63946; /* red highlight */
  font-size: 18px;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

/* Tablet (≤992px) */
@media (max-width: 992px) {
  .checkout__order {
    padding: 20px;
  }

  .checkout__order .order__title {
    font-size: 18px;
  }

  .checkout__total__products li {
    font-size: 14px;
  }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
  .checkout__order {
    padding: 18px;
    border-radius: 12px;
  }

  .checkout__order .order__title {
    font-size: 17px;
    text-align: center;
  }

  .checkout__order__products {
    font-size: 14px;
    text-align: center;
    flex-direction: column;
    gap: 4px;
  }

  .checkout__total__products li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .checkout__total__products .rolu {
    align-self: flex-end;
  }

  .checkout__total__products li.grndtl {
    font-size: 16px;
  }

  .checkout__total__products li.grndtl .rolu {
    font-size: 17px;
  }
}

/* Extra Small Devices (≤480px) */
@media (max-width: 480px) {
  .checkout__order {
    padding: 15px;
  }

  .checkout__order .order__title {
    font-size: 16px;
  }

  .checkout__total__products li {
    font-size: 13px;
    padding: 8px 0;
  }

  .checkout__total__products li.grndtl {
    font-size: 15px;
  }

  .checkout__total__products li.grndtl .rolu {
    font-size: 16px;
  }
}

/* *******checkout--------- */
.read{
	background-color: white;
	border-radius: 16px;
}
.addresslist li { position: relative; padding: 0;display: block;width: 100%;}

/* visually hide the native radio but keep it accessible */
.addresslist input[type="radio"] {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

/* Card-like label (clickable area) */
.payment-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 2px solid #e6e6e6;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Hover state */
.payment-card:hover {
  border-color: #2c7be5;
  box-shadow: 0 6px 18px rgba(44,123,229,0.08);
}

/* custom radio dot shown inside label */
.radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid green;
  display: inline-block;
  flex: 0 0 auto;
  transition: all 0.18s ease;
  box-sizing: border-box;
}

/* payment text */
.payment-info { font-size: 16px; font-weight: 600; color: #222; }

/* When the input before the label is checked, style the label and dot */
.addresslist input[type="radio"]:checked + label.payment-card {
  border-color: #2c7be5;
  box-shadow: 0 8px 26px rgba(44,123,229,0.10);
  background: linear-gradient(180deg, rgba(44,123,229,0.03), rgba(44,123,229,0.01));
}

.addresslist input[type="radio"]:checked + label.payment-card .radio-dot {
  border-color: green;
  background: radial-gradient(circle at center, #77b527 55%, transparent 56%);
}

/* Focus ring for keyboard users */
.addresslist input[type="radio"]:focus + label.payment-card {
  box-shadow: 0 0 0 6px rgba(44,123,229,0.12);
  outline: none;
}

/* Buttons (keeps previous style naming) */
#rzp-button2 {
  background: #2c7be5;
  border: none;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  width: 100%;
  font-weight: 600;
  margin-top: 16px;
}

.btn-order {
  width: 100%;
    background: #fe0003;
  border: none;
  color: #fff;
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 600;
}

/* Responsive tweaks */
/* Tablet */
@media (max-width: 992px) {
  .payment-info { font-size: 15px; }
  .payment-card { padding: 12px 14px; }
  .radio-dot { width: 18px; height: 18px; }
}

/* Mobile */
@media (max-width: 768px) {
  .addresslist { gap: 12px; }
  .payment-card { padding: 12px 12px; border-radius: 10px; }
  .payment-info { font-size: 14px; }
  .radio-dot { width: 16px; height: 16px; }
}

/* Extra small */
@media (max-width: 480px) {
  .payment-info { font-size: 13px; }
  #rzp-button2, .btn-order { font-size: 14px; padding: 10px; border-radius: 8px; }
}
