* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: samim;
  src: url("../fonts/Samim.ttf") format("truetype");
}

html {
  font-family: samim;
  font-size: 16px;
  direction: rtl;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #fff;
}

button {
  font-family: samim;
}

.container {
  width: 100%;
  margin: auto;
}

header > div {
  padding: 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 33.3%;
      grid-template-columns: auto 33.3%;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 15px;
}

header .area-top img {
  width: 100%;
}

header .area-top a {
  background-color: #803691;
  height: 36px;
  min-width: 64px;
  padding: 0 16px;
  -webkit-box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border: none;
  margin: auto 0;
  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;
  gap: 5px;
  border-radius: 4px;
  font-size: .875rem;
}

header .area-top a::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  -webkit-animation: iconAnimate linear 1.2s infinite;
          animation: iconAnimate linear 1.2s infinite;
  -webkit-box-shadow: 3px -3px #803691,
 4px -4px #fff;
          box-shadow: 3px -3px #803691,
 4px -4px #fff;
}

header .area-bottom h5,
header .area-bottom a {
  font-size: 1em;
}

header .area-bottom a {
  direction: ltr;
  text-align: center;
}

header .area-bottom{
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

header .area-bottom .search-bar{
  margin-left: auto;
  display: flex;
}

header .area-bottom .search-bar input{
  border: 1px solid #803691 ;
  border-radius: 3px;
  padding: 5px;
  box-sizing: border-box;
}
header .area-bottom .search-bar input:focus{
  outline: none;
  
}
 .search-btn{
  position: relative;
  left: 30px;
  border-radius: 6px;
}



main .category {
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

main .products {
  padding-top: 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[3];
      grid-template-columns: repeat(3, auto);
  grid-auto-rows: auto;
  grid-gap: 8px;
  max-width: calc(100% - 20px);
  margin: auto;
}

main .products .product-item {
  border-radius: 5px;
  -webkit-box-shadow: 0 3px 1px -2px #808080, 0 2px 2px 0 rgba(0, 0, 0, 0.28), 0 1px 5px 0 rgba(0, 0, 0, 0.24);
          box-shadow: 0 3px 1px -2px #808080, 0 2px 2px 0 rgba(0, 0, 0, 0.28), 0 1px 5px 0 rgba(0, 0, 0, 0.24);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
  position: relative;
}

main .products .product-item img {
  width: 100%;
}

main .products .product-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

main .products .product-item:active::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

main .products .product-item::before {
  content: '';
  width: 0%;
  height: 0%;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  border-radius: 50rem;
  background-color: #0003;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

main .products .product-item::after {
  content: '';
  width: 100%;
  height: 25%;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff0));
  background-image: linear-gradient(360deg, #fff, #fff0);
}

main .products .product-item h6 {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 3px;
  left: 0;
  z-index: 2;
  font-weight: normal;
  font-size: 0.8rem;
}

main .popup-product {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  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;
}

main .popup-product .bg-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(33, 33, 33, 0.46);
}

main .popup-product .body-popup {
  position: relative;
  -webkit-animation: showPopup linear 0.2s;
          animation: showPopup linear 0.2s;
  width: 100%;
  height: 90%;
  max-width: 390px;
  background-color: #fff;
  border-radius: 5px;
  overflow-y: auto;
}

main .popup-product .body-popup button.close-popup {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 100;
  background-color: #fff0;
  padding: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50rem;
  border: none;
  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;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
}

main .popup-product .body-popup button.close-popup img {
  width: 100%;
}

main .popup-product .body-popup button.close-popup:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

main .popup-product .body-popup button.close-popup:active {
  background-color: rgba(0, 0, 0, 0.3);
}

main .popup-product .body-popup .image-product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  direction: ltr;
}

main .popup-product .body-popup .image-product .owl-next,
main .popup-product .body-popup .image-product .owl-prev {
  width: 35px;
  height: 35px;
  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;
  border-radius: 50rem;
  position: absolute;
  top: 50%;
  font-size: 2.2rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
}

main .popup-product .body-popup .image-product .owl-next:hover,
main .popup-product .body-popup .image-product .owl-prev:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

main .popup-product .body-popup .image-product .owl-next:active,
main .popup-product .body-popup .image-product .owl-prev:active {
  background-color: rgba(0, 0, 0, 0.1);
}

main .popup-product .body-popup .image-product .owl-next span,
main .popup-product .body-popup .image-product .owl-prev span {
  margin-bottom: 2px;
}

main .popup-product .body-popup .image-product .owl-next {
  right: 10px;
}

main .popup-product .body-popup .image-product .owl-next span {
  margin-left: 2px;
}

main .popup-product .body-popup .image-product .owl-prev {
  left: 10px;
}

main .popup-product .body-popup .image-product .owl-prev span {
  margin-right: 2px;
}

main .popup-product .body-popup .image-product a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

main .popup-product .body-popup .image-product a img {
  width: 100%;
}

main .popup-product .body-popup .image-product::after {
  content: '';
  width: 100%;
  height: 25%;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#fff0));
  background-image: linear-gradient(360deg, #fff, #fff0);
}

main .popup-product .body-popup > div:not(.image-product) {
  padding-bottom: 50px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  position: relative;
  z-index: 100;
}

main .popup-product .body-popup > div:not(.image-product) h6 {
  width: 100%;
  text-align: center;
  font-weight: normal;
  font-size: 1rem;
}

main .popup-product .body-popup > div:not(.image-product) div {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (4fr)[3];
      grid-template-columns: repeat(3, 4fr);
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  grid-gap: 20px;
  padding: 10px 5px;
}

main .popup-product .body-popup > div:not(.image-product) div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

main .popup-product .body-popup > div:not(.image-product) div > div div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
}

main .popup-product .body-popup > div:not(.image-product) div > div div span {
  font-size: 2rem;
  cursor: pointer;
  color: #000;
  width: 36px;
  height: 36px;
  padding: 0px 8px 25px 8px;
  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;
  border-radius: 50rem;
  font-weight: lighter;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

main .popup-product .body-popup > div:not(.image-product) div > div div span.plus {
  padding: 10px 8px 6px 8px;
}

main .popup-product .body-popup > div:not(.image-product) div > div div span.bin {
  padding: 8px;
}

main .popup-product .body-popup > div:not(.image-product) div > div div span.bin img {
  width: 17px;
  cursor: pointer;
}

main .popup-product .body-popup > div:not(.image-product) div > div div span:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

main .popup-product .body-popup > div:not(.image-product) div > div div span:active {
  background-color: rgba(0, 0, 0, 0.3);
}

main .popup-product .body-popup > div:not(.image-product) div > div div input {
  width: 40px;
  height: 35px;
  text-align: center;
  border: 1px solid #9ccc65;
  font-size: 1.3rem;
}

main .popup-product .body-popup > div:not(.image-product) div > div div input[type=number]::-webkit-outer-spin-button,
main .popup-product .body-popup > div:not(.image-product) div > div div input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

main .popup-product .body-popup > div:not(.image-product) div > div div input[type=number] {
  -moz-appearance: textfield;
}

main .popup-product .body-popup > div:not(.image-product) p {
  padding: 15px;
  font-size: .875rem;
  color: rgba(0, 0, 0, 0.87);
}

@-webkit-keyframes iconAnimate {
  50% {
    opacity: .1;
  }
}

@keyframes iconAnimate {
  50% {
    opacity: .1;
  }
}

.btn {
  display: inline-block;
  border: thin solid #803691;
  height: 36px;
  min-width: 64px;
  font-size: 0.8rem;
  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;
  border-radius: 3px;
  color: #fff;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
  Padding: 5px;
}

.btn:hover {
  background-color: #7c2491;
  color: #fff !important;
}

.btn:active {
  background-color: #7c2491;
}


.search-btn{
  background-color: #803691;

}


.btnCl {
  background-color: #803691;
}

@-webkit-keyframes showPopup {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes showPopup {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

footer {
  padding: 20px 0;
  margin-bottom: 5px;
}

footer div {
  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;
  gap: 40px;
  padding: 10px;
  position: relative;
}

footer div a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

footer div a img {
  width: 40px;
  max-width: 100%;
}

footer div::before {
  content: '';
  width: 100vw;
  height: 100%;
  background-color: rgba(240, 240, 240, 0.6);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

footer p {
  font-size: 11px;
  text-align: center;
  margin-top: 10px;
}

@media screen and (min-width: 580px) {
  main .products {
    grid-gap: 30px;
  }
  main .products article h6 {
    font-size: 1rem;
  }
}

@media screen and (min-width: 940px) {
  .container {
    max-width: 66.6%;
  }
  main .products article h6 {
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 1264px) {
  .container {
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  main .popup-product .body-popup {
    height: 100%;
    max-width: none;
  }
}

@media screen and (max-width: 900px) {
  .product {
    font-size: 3.5vw !important;
  }
}
/*# sourceMappingURL=index.css.map */

.red {
  color: #b50707  !important;
}
.btnEmpt {
  background-color: #f9b861;
}

.product-item-discount {
    color: #fff;
    font-weight: 700;
    background: #803691;
    position: absolute;
    top: .5rem;
    right: .5rem;
    padding: .25rem .5rem 0;
    border-radius: 1.5rem;
    line-height: 1.4;
    text-align: center;
    min-width: 2.5rem;
}

.ofPrc{
    color: #bd9e6b !important;
    text-decoration: line-through !important;
}

.topbutton{
    height: 50px;
    width: 50px;
    position: fixed;
    right: 40px;
    bottom: 5px;
    z-index: 1;
    background-image: url("../../images/wp.png");
    background-repeat: no-repeat;
    margin-bottom: 30px;
}
.baxwi{
   /* display: block ruby; */
}
.baxwi span {
    margin-bottom: 10px;
}

.btnBr {
  color: #f0900c;
  font-size: 20px;
  padding: 3px;
}



	/*********[add to cart]**********/
	.popup-add-order {
		width: 100vw;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		display: none;
		animation: popup 0.2s ease-in;
	}
	@keyframes popup {
		from {
			transform: scale(1);
		}
		50% {
			transform: scale(1.2);
		}
		to {
			transform: scale(1);
		}
	}
	.popup-add-order.active-popup {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.popup-add-order .bg-popup {
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.4);
		backdrop-filter: saturate(180%) blur(3px);
		position: absolute;
		top: 0;
		left: 0;
	}
	.popup-add-order .content-popup {
		position: relative;
		z-index: 1000;
		border-radius: 5px;
		overflow: hidden;
		box-shadow: 0 5px 10px #3336;
		background-color: #fff;
		width: fit-content;
		width: 350px;
		max-width: 90%;
	}
	.popup-add-order .content-popup > div {
		padding: 20px;
		width: 100%;
	}
	.popup-add-order .content-popup > .top-content-popup {
		background-color: #9d55b2;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
	}
	.popup-add-order .content-popup > .top-content-popup .close-popup {
		position: absolute;
		width: 15px;
		top: 15px;
		right: 15px;
		cursor: pointer;
	}
	.popup-add-order .content-popup > .top-content-popup svg {
		width: 100px;
		height: min-content;
	}
	.popup-add-order .content-popup > .top-content-popup svg path {
		stroke-dasharray: 2500;
		stroke-dashoffset: 0;
		stroke: #fff;
		stroke-width: 20px;
		fill: transparent;
		animation: animate-tick 0.5s ease-in;
	}
	@keyframes animate-tick {
		from {
			stroke-dashoffset: 2500;
		}
		to {
			stroke-dashoffset: 0;
		}
	}
	.popup-add-order .content-popup > .bottom-content-popup {
		background-color: #fff;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 40px;
	}
	.popup-add-order .content-popup > .bottom-content-popup h2 {
		color: #333;
		font-size: 22px;
		text-align: center;
	}
	.popup-add-order .content-popup > .bottom-content-popup button {
		padding: 5px 20px;
		background-color: #803691;
		cursor: pointer;
		color: #fff;
		border-radius: 5px;
	}
	.popup-add-order .content-popup > .progress-popup {
		width: 100%;
		height: 3px;
		background: rgb(204, 83, 83);
		display: block;
		animation: animate-progress 2s linear;
	}
	@keyframes animate-progress {
		from {
			width: 1px;
		}
		to {
			width: 100%;
		}
	}