:root {
	--first: #ffffff;
	--second: #000000;
	--third: #bc8d56;
	--gold: #f7ef8a;

	/*shadow vars */
	--box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px,
		rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px,
		rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;

	/* trasform */
	--transform: scale(0.98);

	/* trasnsitions */
	--transition: all 0.5s;
}
body {
	font-family: "Open Sans", sans-serif !important;
}

/* loader start */
.smoke-loader {
	width: 100px;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	top: 50%;
}
.coffee-cup {
	height: 80px;
	margin-left: auto;
	margin-right: auto;
}

.smoke-wave {
	width: 50px;
	height: 50px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	top: 0px;
	left: 0px;
}

.smoke1 {
	width: 6px;
	height: 30px;
	float: left;
	margin-right: 6px;
	margin-left: 4px;
	border-radius: 3px;
}
.smoke1:before,
.smoke1:after {
	content: "";
	background: var(--third);
	position: absolute;
	animation: load 0.9s infinite reverse ease-in-out;
	border-radius: 3px;
}
.smoke2 {
	display: grid !important;
	align-self: center;
	width: 6px;
	height: 15px;
	float: left;
	margin-right: 6px;
	margin-left: 4px;
	border-radius: 3px;
}
.smoke2:before,
.smoke2:after {
	content: "";
	background: var(--third);
	position: absolute;
	animation: load 0.6s infinite reverse ease-in-out;
	border-radius: 3px;
	margin-top: 5px;
}
.smoke3 {
	width: 6px;
	height: 30px;
	float: left;
	margin-right: 6px;
	margin-left: 4px;
	border-radius: 3px;
}
.smoke3:before,
.smoke3:after {
	content: "";
	background: var(--third);
	position: absolute;
	animation: load 0.9s infinite 0.5s reverse ease-in-out;
	border-radius: 3px;
}

@keyframes load {
	0% {
		top: 0;
		height: 30px;
		width: 6px;
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		top: 29px;
		height: 15px;
		width: 6px;
		opacity: 0;
	}
}
/* loader end */

/* navbar notification start*/
.discount-nav {
	background-color: var(--second);
}
.discount-text {
	color: var(--gold) !important;
	text-shadow: 0 0 10px rgba(247, 239, 138, 0.8),
		0 0 20px rgba(247, 239, 138, 0.8), 0 0 30px rgba(247, 239, 138, 0.8);
}

/* navbar notification end */
.ec-navbar {
	background-color: var(--first) !important;
	color: var(--second) !important;
}
.ec-nav-item {
	margin: 0px 20px !important;
}
.nav-item .nav-link {
	font-size: 17px;
	color: var(--second) !important;
}
.cart-link {
	position: relative;
}
.cart-badge {
	position: absolute;
	top: -9px;
	right: -11px;
	background-color: var(--second) !important;
	color: var(--first) !important;
}
.navbar-toggler {
	margin-left: 0px !important;
	margin-right: 0px !important;
}

/* offcanvas start */
.ec-offcanvas-search {
	width: 100% !important;
	color: var(--first) !important;
	background-color: var(--second);
}
.ec-offcanvas-search-btn-close {
	color: var(--first) !important;
	background: none;
	border: none !important;
}

.searchbar-container {
	width: 75%;
	position: relative;
}
.searchbar-container input,
.searchbar-container input:focus {
	position: absolute !important;
	top: 0px;
	left: 0px;
	background: transparent;
	border: none;
	box-shadow: none !important;
	border-bottom: 2px solid white;
	border-radius: 0px;
	outline: none !important;
	color: var(--first);
}
.searchbar-container button {
	position: absolute !important;
	top: 5px;
	right: 1px;
	border: none;
}
.searchbar-container button:focus,
.searchbar-container button:hover {
	background: none !important;
	color: white;
	border: none !important;
	outline: none !important;
}
/* offcanvas end */

/* product cart design start */
.product__item {
	margin-bottom: 35px;
	transition: var(--transition) !important;
	overflow: hidden !important;
}
.product__item:hover {
	transform: var(--transform) !important;
	box-shadow: var(--box-shadow);
}
@media screen and (min-width: 800px) { 
	.product__item:hover .product__hover li {
		opacity: 1;
		top: 0;
	}
}
@media screen and (max-width: 799.9px) { 
	.product__hover {
		display: none !important;
	}
}


.product__item.sale .product__item__pic .label {
	background: #ca1515;
}

.product__item.sale .product__item__text .product__price {
	color: #ca1515;
}

.product__item__pic {
	width: 100%;
	height: auto;
	position: relative;
	overflow: hidden;
}
/* .product__item__pic:hover {
	background-attachment:local;
} */
/* .product__item__pic:hover {
	background-position: center center;
	transform: scale(1.1);
} */
/* .product__item__pic:hover + .product__item {
	overflow: hidden !important;
	margin-left: 20px;
} */
.product__item__pic .label {
	font-size: 12px;
	color: #ffffff;
	font-weight: 500;
	display: inline-block;
	padding: 2px 8px;
	text-transform: uppercase;
	position: absolute;
	left: 0px;
	bottom: 1px;
}

.product__item__pic .label.new {
	background: #36a300;
}

.product__item__pic .label.stockout {
	background: var(--second);
}

.product__item__pic .label.stockblue {
	background: #0066bd !important;
}

.product__item__pic .label.sale {
	background: #ca1515;
}

.product__hover {
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 30px;
	text-align: center;
}

.product__hover li {
	list-style: none;
	display: inline-block;
	margin-right: 10px;
	position: relative;
	top: 200px;
	opacity: 0;
}

.product__hover li:nth-child(1) {
	-webkit-transition: all 0.4s ease 0.1s;
	-o-transition: all 0.4s ease 0.1s;
	transition: all 0.4s ease 0.1s;
}

.product__hover li:nth-child(2) {
	-webkit-transition: all 0.4s ease 0.15s;
	-o-transition: all 0.4s ease 0.15s;
	transition: all 0.4s ease 0.15s;
}

.product__hover li:nth-child(3) {
	-webkit-transition: all 0.4s ease 0.2s;
	-o-transition: all 0.4s ease 0.2s;
	transition: all 0.4s ease 0.2s;
}

.product__hover li:last-child {
	margin-right: 0;
}

.product__hover li:hover a {
	background: var(--third);
	color: var(--first);
}

.product__hover li:hover a span {
	color: #ffffff;
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.product__hover li a {
	font-size: 18px;
	color: var(--second);
	display: block;
	height: 45px;
	width: 45px;
	background: #ffffff;
	line-height: 48px;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.product__hover li a span {
	position: relative;
	-webkit-transform: rotate(0);
	-ms-transform: rotate(0);
	transform: rotate(0);
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	display: inline-block;
}

.product__item__text {
	text-align: center;
	padding-top: 22px;
}

.product__item__text h6 a {
	font-size: 18px;
	color: var(--second);
	padding-left: 10px;
	padding-right: 10px;
}

.product__item__text .rating {
	line-height: 18px;
	margin-bottom: 5px;
}

.product__item__text .rating i {
	font-size: 10px;
	color: #e3c01c;
	margin-right: -4px;
}

.product__item__text .rating i:last-child {
	margin-right: 0;
}

.product__item__text .product__price {
	color: #111111;
	font-weight: 600;
}

.product__item__text .product__price span {
	font-size: 14px;
	color: #b1b0b0;
	text-decoration: line-through;
	margin-left: 4px;
}
.set-bg {
	background-repeat: no-repeat;
	background-size: cover !important;
	background-position: top center;
}

.section-title {
	margin-bottom: 25px;
}

.section-title h4 {
	color: var(--second);
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.section-title h4:after {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 70px;
	background: var(--third);
	content: "";
}

.section-title h6 {
	color: var(--second);
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.section-title h6:after {
	position: absolute;
	left: 0;
	bottom: -4px;
	height: 2px;
	width: 70px;
	background: var(--third);
	content: "";
}
/* for arabic start */
.section-title_rtl {
	margin-bottom: 25px;
}

.section-title_rtl h4 {
	color: var(--second);
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.section-title_rtl h4:after {
	position: absolute;
	right: 0;
	bottom: -4px;
	height: 2px;
	width: 70px;
	background: var(--third);
	content: "";
}

.section-title_rtl h6 {
	color: var(--second);
	font-weight: 600;
	text-transform: uppercase;
	position: relative;
	display: inline-block;
}

.section-title_rtl h6:after {
	position: absolute;
	right: 0;
	bottom: -4px;
	height: 2px;
	width: 70px;
	background: var(--third);
	content: "";
}
/* for arabic end */

/* product cart design end */

/* back to top btn */
#back-to-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 9999;
	width: 45px;
	height: 45px;
	text-align: center;
	line-height: 5px;
	background: var(--third);
	color: #ffffff;
	cursor: pointer;
	border: 0;
	border-radius: 0px;
	text-decoration: none;
	transition: opacity 0.2s ease-out;
	font-size: 23px;
	padding: 10px;
	border-radius: 50%;
}

/* footer start */
footer {
	background-image: url("../../assets/img/footer/bg.jpg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.foot-link {
	text-decoration: none !important;
}
.foot-sm-btn {
	border-radius: 50%;
}

.user-dropdown-menu:before {
	font-family: "FontAwesome";
	content: "\f0d8";
	position: absolute;
	top: -17px;
	right: 20px !important;
	font-size: 22px;
	color: #fff;
	transition: top 0.35s ease;
	border: 1px !important;
}

.user-dropdown-menu-arabic::before {
	font-family: "FontAwesome";
	content: "\f0d8";
	position: absolute;
	top: -17px;
	left: 20px !important;
	font-size: 22px;
	color: #fff;
	transition: top 0.35s ease;
	border: 1px !important;
}

@media screen and (min-width: 992px) {
	.user-dropdown-menu {
		position: absolute;
		left: -322% !important;
	}
	.user-dropdown-menu-arabic {
		position: absolute;
		right: -337% !important;
	}
}

.capitalized-text {
	text-transform: capitalize;
}

.setting_dropdown_sm {
	top: 100%;
	left: -349% !important;
	margin-top: var(--bs-dropdown-spacer);
}
.respon_nav_item a {
	font-size: large !important;
	font-weight: bolder !important;
}
@media screen and (width<=991px) {
	.respon_nav {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	.respon_nav_item {
		margin-bottom: 20px !important;
		border-bottom: 0.01px solid var(--second) !important;
		padding-left: 0px !important;
		padding-right: 0px !important;
		margin-left: 0px !important;
		margin-right: 0px !important;
	}
	.respon_nav_item a {
		margin-left: 0px !important;
		margin-right: 0px !important;
		padding-left: 20px;
		padding-bottom: 10px !important;
	}
	.ac_btn {
		font-size: large !important;
		font-weight: bolder !important;
	}
	#accordion-body a {
		font-size: small !important;
	}
	.respon_nav_item .accordion .accordion-item .accordion-header {
		border: none !important;
	}
	.respon_nav_item .accordion .accordion-item .accordion-collapse.show {
		border: none !important;
	}
	.search_btn {
		text-align: center;
	}
}
.accordion-item,
.accordion-header,
.accordion-header button {
	color: var(--second) !important;
	background-color: var(--first) !important;
	border: none !important;
}
.accordion-button:not(.collapsed) {
	box-shadow: none !important;
}
.accordion-button:focus {
	z-index: 3;
	outline: 0;
	box-shadow: none !important;
}

.accordion-button::after {
	content: "+" !important;
	background-image: none !important;
	font-size: xx-large !important;
	transform: none !important;
	margin-bottom: 10px !important;
}
.ac_btn_ar::after {
	margin-right: auto !important;
	margin-left: 0px !important;
}
.accordion-button:not(.collapsed)::after {
	content: "-" !important;
	background-image: none !important;
	font-size: xx-large !important;
	transform: none !important;
}

.dropdown-toggle::after {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: none !important;
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
}
.filter_btn,.filter_btn:focus {
	background-color: var(--first);
	color: var(--third);
	border: 1px solid var(--third);
}
.filter_btn:hover {
	background-color: var(--third);
	color: var(--first);
	border: 1px solid var(--third);
}

.swiper-pagination-bullet-active {
	background-color: var(--second) !important;
}