/* Google Fonts - Tajawal */


@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;


  font-family: 'Almarai', sans-serif;
  font-family: 'Tajawal', sans-serif;
}


body {
  direction: rtl;
  font-family: Tajawal, sans-serif !important;
  background: var(--background-body);
  font-weight: 500;
  direction: rtl;
  text-align: right;
  width: 100%;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1250px) {
  .container {
    max-width: 1200px;
  }
}

/**************************** start dropdown ****************************/
.select__menu,
.select__menu__lang {
  width: max-content;
  margin: 0 10px;
}

.select__menu .select__btn,
.select__menu__lang .select__btn__lang {
  display: flex;
  /* height: 55px; */
  /* background: #fff; */
  /* padding: 20px; */
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
}

.select__btn i,
.select__btn__lang i {
  font-size: 18px;
  color: var(--color-white);
  transition: .3s;
}

.select__menu.active .select__btn i,
.select__menu__lang.active .select__btn__lang i {
  transform: rotate(-180deg);
}

.select__menu .options,
.select__menu__lang .options__lang {
  padding: 10px;
  background: var(--color-bg);
  margin-top: 5px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  display: none;
  position: absolute;
  z-index: 1111;
}

.select__menu .options {
  right: 10%;
}

.select__menu__lang .options__lang {
  right: 5%;
}

.select__menu.active .options,
.select__menu__lang.active .options__lang {
  display: block;
}

.options .option,
.options__lang .option__lang {
  display: flex;
  height: 30px;
  cursor: pointer;
  padding: 0 10px;
  border-radius: 8px;
  align-items: center;
  background: var(--color-bg);
}

.options .option:hover,
.options__lang .option__lang:hover {
  background: #f2f2f2;
}

.options .option span,
.options__lang .option__lang span {
  font-size: 12px;
  font-weight: 400;
}

.option i,
.option__lang i {
  font-size: 12px;
  margin-right: 12px;
}

.option .text,
.option__lang .text {
  font-size: 18px;
  color: #333;
}

/**************************** end dropdown ****************************/

/**************************** start slider home top ****************************/
.slide-container.one {
  /* max-width: 1120px; */
  width: 100%;
  margin-top: 10vh;
  padding: 0;
}

.slide-content-one,
.slide-content-two {
  overflow: hidden;
  position: relative;
}

.card {
  position: relative;
  background-color: var(--color-bg);
}

.image-content,
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}

.image-content {
  position: relative;
  row-gap: 5px;
  padding: 0;
}
.card-image {
  position: relative;
  height: 100vh;
  width: 100%;
  background: var(--color-bg);
}

.card-image .card-img {
  height: 100%;
  width: 100%;
}

.name {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
}

.description {
  font-size: 14px;
  color: var(--color-gray);
  text-align: center;
}

.button {
  border: none;
  font-size: 16px;
  color: var(--color-white);
  padding: 8px 16px;
  background-color: var(--primary-color);
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: var(--secondary-color);
}

.swiper-navBtn {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.swiper-navBtn:hover {
  color: var(--secondary-color);
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

.swiper-pagination-bullet {
  background-color: var(--primary-color);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--secondary-color);
}

.slide-content-one .card-content{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card-content .text{
  padding-bottom: 1.5rem;
}
.slide-content-one .card-content h1{
  fill: #FFFFFF;
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 700;
}
.slide-content-one .card-content h3{
  fill: #FFFFFF;
  color: #FFFFFF;
  font-size: 30px;
  font-weight: 700;
}
.slide-content-one .card-content .button-slider a{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  letter-spacing: 0.1px;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: var(--secondary-color);
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 6px 16px 0px rgba(3, 244, 212, 0.35);
  padding: 14px 38px 14px 38px;
}



@media screen and (max-width: 768px) {
  .slide-content-two{
    margin: 0 1rem;
    padding: 0;
  }
  .slide-container.one {
    margin-top: 0;
  }

  .slide-content {
    margin: 0 10px;
  }

  .swiper-navBtn {
    display: none;
  }
  .slide-content-one .card-content .text{
    padding-bottom: 1rem;
  }
  .slide-content-one .card-content h1{
    white-space: nowrap;
    fill: #FFFFFF;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
  }
  .slide-content-one .card-content h3{
    fill: #FFFFFF;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
  }
  .slide-content-one .card-conten .button a{
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: 0.1px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: var(--primary-color);
    border-radius: 5px 5px 5px 5px;
    box-shadow: 0px 6px 16px 0px rgba(3, 244, 212, 0.35);
    padding: 8px 20px 8px 20px;
  }
  .card-image {
    height: 70vh;
  }

  .slide-content-one .card-content .button-slider{
    background-color: var(--secondary-color);
    padding: 8px 14px;
    width: 150px;
  }
  .slide-content-one .card-content .button-slider a{
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3em;
    letter-spacing: 0.1px;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: var(--secondary-color);
    border-radius: 5px 5px 5px 5px;
    box-shadow: none;
    padding: 0;
  }
}

/**************************** end slider home top ****************************/

/**************************** start slider home center ****************************/
.slide-content-two {
  margin: 0 3rem;
  padding: 3rem 0;
}

.slide-content-two h1 {
  text-align: center;
  margin-bottom: 20px;
}

.slide-content-two .card {
  height: 100%;
  min-height: 1px;
  /* border: 1px solid #ECECEC; */
  transition: 0.4s ease;
  background: var(--background-body);
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */
}
.slide-content-two .card .image-content{
   height: 180px;
   border: 1px solid var(--primary-color);
}
.slide-content-two .card .card-content {
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
}
.slide-content-two .card .card-content a{
  color: var(--color-text);
}
.slide-content-two .card .card-image {
  max-height: 80px;
  max-width: 170px;
  margin: 0 auto;
  background: var(--background-body);

}

.slide-content-two .card .card-image img {
  height: 100%;
  width: 100%;
  padding: 10px;
  margin-top: 5px;

}

.swiper-button-next.two, .swiper-button-prev.two{
  transform: translateY(50%);
}

@media (min-width: 600px){
  .slide-content-two {
    margin: 0 6rem;
    padding: 3rem 0;
  }
  .slide-content-two .card .card-image {
    max-height: 100px;
    max-width: 170px;
    margin: 0 auto;
    padding: 0;
    background: var(--background-body);

  }
  .swiper-button-next.two{
    right: 3rem;
  }
  .swiper-button-prev.two{
    left: 3rem;
  }
  .swiper-button-next.two, .swiper-button-prev.two{
    transform: translateY(50%);
  }
}

/**************************** end slider home center ****************************/


/**************************** start section offers ****************************/

.slide-content-offers {
  margin: 0;
  padding: 3rem 0;
  overflow: hidden;
}

.slide-content-offers .title_new_products {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.slide-content-offers .title_new_products a {
  color: var(--color-text);
  text-shadow: var(--box-shadow);
  font-size: 18px;
  font-weight: 700;
}

.slide-content-offers .card {
  height: 100%;
  min-height: 1px;
  border: 1px solid #ECECEC;
  border-radius: 5px !important;
  transition: 0.4s ease;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */
}

.slide-content-offers .card .card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: flex-start;
  justify-content: center;
}

.slide-content-offers .card .title {
  font-size: 18px;
  font-weight: 700;
  text-align: start;
}

.slide-content-offers .card .info {
  max-width: 90%;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slide-content-offers .prices {
  margin-top: 1rem;
  white-space: nowrap;
}

.slide-content-offers .card .new__price {
  font-size: 16px;
  font-weight: 700;
  margin-left: 3px;
}

.slide-content-offers .old__price {
  margin: 0;
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-gray);
}

.slide-content-offers .card .card-image {
  border-radius: 5px !important;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

.slide-content-offers .card .card-image img {
  border-radius: 5px !important;
  height: auto;
  width: 100%;
  transform: scale(1);
  transition: all .5s;
}

.slide-content-offers .card .card-image:hover img {
  transform: scale(1.1);
}

.slide-content-offers .card .btn {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 10px 0;
  justify-content: space-between;
}

.slide-content-offers .card .btn .start {
  max-width: 150px;
  width: 100%;
  padding: 8px;
  pointer-events: none;
  background-color: var(--secondary-color);
  border-radius: 5px !important;
  border: none;
  transform: none;
  transition: 0.2s ease;
  white-space: nowrap;
  margin-left: 10px;
}

.slide-content-offers .card .btn .start a {
  color: var(--color-text-bg);
  font-weight: 600;
  font-size: 12px;
}

.slide-content-offers .card .btn .end {
  max-width: 70px;
  width: 100%;
  background: var(--primary-color);
  pointer-events: none;
  border-radius: 5px;
  padding: 8px;
  border: none;
}

.slide-content-offers .card .btn .end a {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-bg);
}

@media (max-width: 768px) {
  .slide-content-offers {
    margin: 0;
    padding: 1rem 0;
  }

  .slide-content-offers .card .btn .start a {
    font-size: 10px;
    font-weight: 600;
  }

  .slide-content-offers .card .btn .end a {
    font-size: 10px;
    font-weight: 600;
  }
}


/**************************** end section offers  ****************************/

/**************************** start section collections sale ****************************/
.homepage-collections-sale {
  width: 100%;
  margin: 2rem auto;
}

.homepage-collections .categories .category img {
  max-width: 100%;
}

.homepage-collections-sale .box_container_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5px;
}

.homepage-collections-sale .box_container_title a {
  color: var(--color-text);
  text-shadow: var(--box-shadow);
  font-size: 18px;
  font-weight: 700;
}

.homepage-collections-sale .box_container_title a:nth-child(2) {
  color: var(--primary-color);
}

.homepage-collections-sale .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px 20px;
}

.homepage-collections-sale .box-container .box {
  /* box-shadow: 0 5px 10px rgba(0,0,0,.2); */
  border-radius: 3px;
  text-align: center;
  padding: 0;
  margin-bottom: 10px;
}

.homepage-collections-sale .box-container .box .img {
  width: 100%;
  height: 80%;
  border-radius: 3px;
  background: var(--color-bg);
}

.homepage-collections-sale .box-container .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.homepage-collections-sale .box-container .box .img {
  position: relative;
  overflow: hidden;
}

.homepage-collections-sale .box-container .box img {
  transform: scale(1);
  transition: all .5s;
}

.homepage-collections-sale .box-container .box:hover img {
  transform: scale(1.1);
}

.homepage-collections-sale .box-container .box .img .icon_shopping {
  position: absolute;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  top: auto;
  bottom: 10px;
  left: 10px;
  right: auto;
  z-index: 111;
}

.homepage-collections-sale .box-container .box .img .icon_shopping .bx-shopping-bag {
  color: var(--color-white);
  font-size: 18px;
}

.homepage-collections-sale .box-container .box .img .icon_heart {
  position: absolute;
  cursor: pointer;
  top: 10px;
  bottom: auto;
  right: 10px;
  left: auto;
  z-index: 111;
}

.homepage-collections-sale .box-container .box .img .icon_heart .bx-heart {
  color: #C90505;
  font-size: 20px;
}

.homepage-collections-sale .box-container .box .title {
  padding-top: 5px;
}

.homepage-collections-sale .box-container .box .title a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
}

.homepage-collections-sale .price {
  display: flex;
  align-items: center;
  justify-content: center;
}

.homepage-collections-sale .price .new_price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  padding-right: 3px;
}

.homepage-collections-sale .price .old_price {
  font-size: 14px;
  font-weight: 700;
  text-decoration: line-through;
  padding-left: 3px;
}

@media (max-width: 768px) {
  .homepage-collections-sale .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px 10px;
  }

}


/**************************** end section collections sale ****************************/

/**************************** start section banner ****************************/
.banner__wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto 1rem;
  padding: 0 15px;
}

.banner__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .banner__wrapper {
    padding: 0;
  }
}

/**************************** end section banner ****************************/


/**************************** start slider home brand ****************************/
.slide-content-brand {
  margin: 0 3rem;
  padding: 2rem 0;
  overflow: hidden;
}

.slide-content-brand h1 {
  text-align: center;
  margin-bottom: 10px;
}

.slide-content-brand .card {
  height: 100%;
  min-height: 1px;
  /* border: 1px solid #ECECEC; */
  transition: 0.4s ease;
  background: var(--background-body);
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.2); */
}

.slide-content-brand .card .card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: center;
  justify-content: center;
}

.slide-content-brand .card .card-content a {
  color: #121313;
}

.slide-content-brand .card .card-image {
  /* border-radius: 50% !important;
  border: none; */
  height: 100%;
  max-width: 150px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background: var(--background-body);
}

.slide-content-brand .card .card-image img {
  border-radius: 50% !important;
  height: auto;
  width: 100%;
  object-fit: cover;
}


/**************************** end slider home brand ****************************/

/**************************** start section footer ****************************/
.footer {
  background: var( --secondary-color) !important;
  margin-bottom: 0;
}

.footer .heading {
  color: #fff;
  text-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 10px;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
}

.footer .box-container .box h3 {
  width: 100%;
  background: var( --secondary-color);
  margin-bottom: 1rem;
  padding: 10px 0;
}

.footer a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.footer .phone,
.footer .email,
.footer .social {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding-left: 10px;
}

.footer .bottom__footer {
  display: flex;
  background: var( --secondary-color);
  align-items: center;
  justify-content: center;
  border-top: 1px solid #3E3E3E;
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  width: 100%;
  padding-top: 15px;
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.logo__footer {
  padding-bottom: 10px;
}

.footer .bottom__footer a,
.footer .bottom__footer span {
  text-align: center;
  color: #fff;
  text-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  font-size: 16px;
  font-weight: 400;
  margin: 20px auto;
}

.text__center {
  text-align: center;
}

.footer .email span,
.footer .phone span,
.footer .social span {
  padding-right: 10px;
}

.footer .social i {
  font-size: 30px;
  padding-top: 10px;
  margin: 0 auto;
  text-align: center;
  padding: 10px 5px;
}

.footer .list__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: none;
  padding: 8px 14px;
  width: 120px;
  border-radius: 6px;
}

.footer button:nth-child(2) {
  margin-top: 10px;
}

.footer button a {
  color: #057174;
}

.footer button .bx {
  color: #057174;
}

@media (max-width: 768px) {
  .footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
    padding-bottom: 20px;
    gap: 10px 0;
  }
}

/**************************** end section footer ****************************/

/**************************** start product-details page ****************************/
.product_details_page{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  margin-top: 20px;
  padding-bottom: 20px;
}
.product_details .product_price{
  display: flex;
  align-items: center;
}
.product_details .product_price .new-price{
  margin-right: 10px;
}
.product_details .product-content {
  padding: 2rem 1rem;
  margin-bottom: 0;
}

.product_details .product-title {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  color: #12263a;
  margin: 5px 0;
}
.product_details .row{
  padding-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_details .product-link {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #256eff;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
}

.product_details .product-link:hover {
  opacity: 0.9;
}

.product_details .product-rating {
  color: #ffc107;
}

.product_details .product-rating span {
  font-weight: 600;
  color: #252525;
}

.product_details .product-price {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}

.product_details .product-price span {
  font-weight: 400;
}

.product_details .last-price span {
  color: #f64749;
  text-decoration: line-through;
}

.product_details .new-price span {
  color: #256eff;
}

.product_details .product-detail h2 {
  text-align: start;
  text-transform: capitalize;
  color: #12263a;
  color: #12263a;
  font-size: 18px;
}

.product_details .product-detail p {
  text-align: start;
  font-size: 0.9rem;
  padding: 0.3rem;
  opacity: 0.8;
}

.product_details .product-detail ul {
  margin: 1rem 0;
  font-size: 0.9rem;
}

.product_details .product-detail ul li {
  margin: 0;
  list-style: none;
  background: url(shoes_images/checked.png) left center no-repeat;
  background-size: 18px;
  padding-right: 1.7rem;
  margin: 0.4rem 0;
  font-weight: 600;
  opacity: 0.9;
}

.product_details .product-detail ul li span {
  font-weight: 400;
}

.product_details .purchase-info {
  margin: 1.5rem 0;
}

.product_details .purchase-info input,
.product_details .purchase-info .btn {
  text-align: center;
}

.product_details .purchase-info input {
  width: 60px;
}

/* counter */

.cont {
  display: flex;
  align-items: center;
  width: max-content;
  border: 1px solid #cccccc;
  height: 30px;
  margin: 1rem auto;
  border: none;
}

.cont span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 20px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  color: var(--color-text-bg);
  background: var(--primary-color);
}

.cont input {
  border-radius: 6px;
  outline: none;
  border: none;
  max-width: 40px;
  text-align: center;
  font-size: 1.5em;
}

/* dropdown */
.dropdown {
  display: flex;
  align-items: center;
}

.select__menu {
  position: relative;
  width: max-content;
  margin-left: 20px;
}

.product_details .select__menu .select__btn {
  display: flex;
  height: 55px;
  background: #fff;
  padding: 20px;
  font-size: 18px;
  font-weight: 400;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.product_details .select__btn i {
  font-size: 25px;
  transition: .3s;
}

.product_details .select__menu.active .select__btn i {
  transform: rotate(-180deg);
}

.product_details .select__menu .options {
  width: 100%;
  position: absolute;
  padding: 10px 20px;
  background: #fff;
  margin-top: 10px;
  border-radius: 8px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  display: none;
}

.product_details .select__menu.active .options {
  display: block;
}

.product_details .options .option {
  display: flex;
  height: 30px;
  cursor: pointer;
  padding: 0 16px;
  border-radius: 8px;
  align-items: center;
  background: #fff;
}

.product_details .options .option:hover {
  background: #f2f2f2;
}

.product_details .option i {
  font-size: 25px;
  margin-right: 12px;
}

.product_details .option .text {
  font-size: 18px;
  color: #333;
}
.swiper-navBtn{
  display: flex;
}
.purchase-info .btn_submit input{
  margin-top: 20px;
  padding: 8px 24px;
  width: 200px;
  background: var(--primary-color);
  border: none;
  border-radius: 8px;
  color: var(--color-text-bg);
  font-size: 16px;
  font-weight: 700;
}
.product_details form .row{
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purchase-info form .col{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  margin: 5px 30px;
  white-space: nowrap;
}
@media (max-width:768px){
  .product_details .card-wrapper {
    margin-top: 0;
    margin-bottom: 0;
  }

  .product_details .product-content {
    padding: 0 0.5rem;
    margin-bottom: 70px;
  }

  .purchase-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    bottom: -100%;
    background: var(--background-body);
    height: 30vh;
    transform: scale(0);
    transition: all .5s ease-in-out;
  }
  .purchase-info.show_form_details{
    bottom: 0;
   transform: scale(1);
  }
  .purchase-info form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .purchase-info form .col{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    margin: 5px 30px;
    white-space: nowrap;
  }

  .product_details .product-content .btn_product_details_mob{
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 1;
    transition: all .3s ease-in-out;
  }
  .product_details .product-content .btn_product_details_mob.hidden{
    display: none;
  }
  .product_details .product-content .btn_product_details_mob .btn{
    width: 100%;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    color: #fff;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 700;
  }
  .product_details form .row{
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

}


/**************************** end product details ****************************/


/**************************** start cart page ****************************/
.cart_page_desktop {
  width: 100%;
  margin: 1rem auto;
}

.cart_page_desktop table {
  width: 100%;
  border-collapse: collapse;
}
.cart_page_desktop .cart_info{
  display: flex;
  flex-wrap: wrap;
}
.cart_page_desktop th{
  text-align: center;
  padding: 5px;
  color: #fff;
  background: var(--primary-color);
  font-weight: normal;
}
.cart_page_desktop th:nth-child(1){
  text-align: right;
}
.cart_page_desktop td{
  text-align: center;
  padding: 10px 5px;
}
.cart_page_desktop td img{
  width: 80px;
  height: 80px;
  margin-left: 10px;
}
.cart_page_desktop .icon_remove{
  margin: 0 auto;
  color: #f64749;
  background: #ececec;
  padding: 3px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart_page_desktop .icon_remove i{
  font-size: 24px;
}

/* counter */

.cart_page_desktop .cont {
  display: flex;
  align-items: center;
  width: max-content;
  border: 1px solid #cccccc;
  border-radius: 6px;
  height: 30px;
  margin: 0 auto;
}

.cart_page_desktop .cont button {
  width: 25px;
  height: 30px;
  font-size: 24px;
  line-height: 30px;
  border-radius: 6px;
  outline: none;
  border: none;
  cursor: pointer;

}

.cart_page_desktop .cont input {
  border-radius: 6px;
  outline: none;
  border: none;
  max-width: 30px;
  text-align: center;
  font-size: 20px;
}
.cart_page_desktop tfoot tr{
  border-top: 2px solid #05C3C9;
}
.cart_page_desktop tfoot td{
  display: flex;
  align-items: center;
  text-align: start;
}
.cart_page_desktop tfoot h5{
  margin-left: 20px;
}

@media (max-width: 991px) {

}

.cart_page_mob .box-container{
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap:15px;
  margin-bottom: 150px;
}

.cart_page_mob .box-container .box{
  display: flex;
  align-items: start;
  justify-content: space-between;
  box-shadow: 0 5px 10px rgba(0,0,0,.2);
  border-radius: 5px;
  background: #fff;
  text-align: center;
  padding: 30px 10px 10px;
}
.cart_page_mob .box-container .start{
  position: relative;
}
.cart_page_mob .box-container .start i{
  position: absolute;
  top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #f64749;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.cart_page_mob .box-container .start img{
  height: 120px;
  max-width: 100px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.cart_page_mob .box-container .end{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cart_page_mob .box-container .end .product_name{
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
}
.cart_page_mob .box-container .end small{
  color: #5c5c5c;
}
.cart_page_mob .box-container .end span{
  color: var(--primary-color);
  text-transform: uppercase;
}
.cart_page_mob .box-container .end .cont{
  border: none;
}
.cart_page_mob .box-container .end .cont button{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 20px;
  background: var(--primary-color);
  color: var(--color-text-bg);
}
.cart_page_mob .btn_cart_mob{
  position: fixed;
  bottom: 0;
  right: 0;
  top: auto;
  left: auto;
  width: 100%;
  height: 120px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 5px rgba(0,0,0,.1);
  background: #fff;
  text-align: center;
  padding: 10px 40px 10px;
  z-index: 1111;
}
.cart_page_mob .btn_cart_mob .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--primary-color);
  height: 40px;
  margin: 10px auto;
  border-radius: 8px;
  color: var(--color-text-bg);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 14px;
}
.cart_page_mob .btn_cart_mob p{
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width:768px){
  .container{
    padding-left: 10px;
    padding-right: 10px;
  }
  .cart_page_desktop {
    display: none;
   }
   .cart_page_mob .box-container{
    display: grid;
   }
   .cart_page_mob .btn_cart_mob{
    display: flex;
   }
}


/**************************** end cart page ****************************/

/**************************** start delivery address page ****************************/
.form-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  pointer-events: auto;
  z-index: 999999;
}
.form-container .start{
  padding: 3rem;
  background: #fff;
  min-width: 50vw;
  margin: 0 auto;
  border-radius: 12px;
}

.form-container h1 {
  position: relative;
  font-weight: 600;
  font-size: 1.3rem;
  color: black;
}
.form-container h1::before{
  content: '';
  width: 130px;
  height: 5px;
  border-radius: 50%;
  background: #121313;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.form-container .start select{
  border: 2px solid #d3d9f0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.3rem;
  height: 3rem;
  padding: .3rem;
  outline: none;
}
.form-container .start input {
  border: 2px solid #d3d9f0;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0.3rem;
  height: 3rem;
  padding: .3rem;
  outline: none;
  font-size: 18px;
  font-weight: 500;
}

.form-container .start input:focus,
.form-container .start button:focus,
.form-container .start select:focus{
  border: 2px solid #a7b8f6;
}

.form-container button{
  width: 100%;
  margin: 3rem auto 0;
  background-color: #5c5c5c;
  border: none;
  color: var(--color-text-bg);
  font-size: 1.2rem;
  font-weight: 500;
  height: 2.5rem;
  outline: none;
  border-radius: 0.3rem;
  cursor: pointer;
}
.form-container button:hover{
  background: var(--primary-color);
}

.form-container .start label {
  display: block;
  font-weight: 500;
  padding: 1rem 0 0.5rem;
}
.form-container .end  .cart_total div{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-container .end  .cart_total div h6{
  font-size: 16px;
  font-weight: 500;
}
.form-container .end  .cart_total div span{
  padding-left: 60%;
  font-size: 14px;
  font-weight: 600;
}
.form-container .end .payment,
.form-container .end  .cart_total{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.form-container .end h3{
  margin-bottom: 10px;
}
.form-container .end .payment div{
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-container .end .payment label{
  font-size: 14px;
  font-weight: 600;
}
.form-container .end .payment input{
  margin-left: 60%;
  width: 20px;
  height: 1.5rem;
  padding: .5rem;
  outline: none;
}

@media (max-width: 768px) {
  .form-container{
    padding: 0;
  }
  .form-container .start{
    padding: 3rem 10px 0;
  }
}


 /**************************** end delivery address page ****************************/


 /**************************** start contact page ****************************/
 .contact_page .col{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
 }
 .contact_page .google_maps{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3rem auto;
 }
 .contact_page .box_container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
 }
 .contact_page .contact_page_form{
  width: 100%;
  height: 100%;
 }
 .contact_page .contact_page_form .row{
  display: flex;
  align-items: center;
  justify-content: space-between;
 }
 .contact_page .contact_page_form .row :nth-child(1){
  margin-left: 1rem;
 }
 .contact_page .contact_page_form input{
  width: 100%;
  height: 40px;
  margin-bottom: 1rem;
  padding: 8px 14px;
  outline: none;
 }
 .contact_page .contact_page_form textarea{
  width: 100%;
  height: 100px;
  margin-bottom: 1rem;
  padding: 8px 14px;
  outline: none;
 }
 .contact_page .contact_page_form button{
  background: var(--secondary-color);
  width: 100%;
  height: 40px;
  padding: 8px 14px;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
 }
 .contact_page .box_container .end div{
  margin: .5rem 0;
 }
 .contact_page .box_container .end h5{
  margin: .3rem 0;
 }
 .contact_page .box_container h3,
 .contact_page .box_container p{
  margin: .75rem 0;
 }

@media (max-width: 768px){
  .contact_page .col {
    padding: 0 10px;
  }

}

 /**************************** end contact page ****************************/


/**************************** start policy page ****************************/

 .policy_page .text{
  margin: 0 auto;
  max-width: 70vw;
 }
 .policy_page .text h1{
  text-align: center;
  margin-bottom: 1rem;
 }
 .policy_page .text p{
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
 }

@media (max-width: 768px) {
  .policy_page .text{
    max-width: 100%;
    padding: 5px;
  }
  section.static-home-section.build-your-store-section h2.section-title {
    font-size: 22px;
    text-align: center;
  }
}


 /**************************** end policy page ****************************/
 /**************************** start section elementor-column-gap-default ****************************/
 .elementor-column-gap-default .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px 20px;
  margin: 3rem auto;
}
.elementor-column-gap-default .box-container.text-right{
  padding: 100px 0 40px;
  background: linear-gradient(0deg,#f5f5f5 25%,#fafafa 0);
}
.elementor-column-gap-default .box-container.text-left{
  padding: 100px 0 50px;
  background-color: #fbfbfc;
  background: linear-gradient(0deg,#fefefe 25%,#f5fcff 0);
}
.elementor-column-gap-default .box-container .box {
  /* box-shadow: 0 5px 10px rgba(0,0,0,.2); */
  border-radius: 3px;
  text-align: center;
  padding: 0;
  margin-bottom: 10px;
}

.elementor-column-gap-default .box-container .box .img {
  width: 100%;
  max-height: 450px;
  border-radius: 3px;
  background: var(--color-bg);
}

.elementor-column-gap-default .box-container .box img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
}

.elementor-column-gap-default .box-container .box .img {
  position: relative;
  overflow: hidden;
}
.elementor-column-gap-default .box-container .box .col {
  height: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
}
.elementor-column-gap-default .box-container .box p {
  max-width: 70%;
  text-align: center;
  margin: 3rem auto 2rem;
 }

.elementor-column-gap-default .box-container .box .elementor-button {
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3em;
  letter-spacing: 0.1px;
  fill: #FFFFFF;
  color: #FFFFFF;
  background-color: var(--primary-color);
  border-radius: 5px 5px 5px 5px;
  box-shadow: 0px 6px 16px 0px rgba(3, 244, 204, 0.35);
  padding: 14px 38px 14px 38px;
}

.elementor-column-gap-default .box-container .box a {
  padding: 14px 38px !important;
}
@media (max-width: 768px) {
  .elementor-column-gap-default .box-container {
    margin: 0 auto;
  }
  .elementor-column-gap-default .box-container .box p{
    max-width: 100%;
    text-align: center;
    margin: 0 auto ;
  }
  .row{
        margin-right: 0;
        margin-left: 0;
  }
  section.static-home-section.cta-section .section-title{
    text-align: center;
  }
  body.rtl section.static-home-section.cta-section .section-title, section.static-home-section.cta-section p.section-subtitle{
    text-align: center;
  }
}

/**************************** end section elementor-column-gap-default ****************************/

/**************************** end section elementor-column-gap-default ****************************/




  /**************************** section coming-soon-section ****************************/

  .coming-soon-section{
    position: relative;
    z-index: 999;
  }
  .auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}
  .coming-soon-section .outer-box{
    position: relative;
    display: block;
    padding: 10px 80px;
    background-color: #ffffff;
    text-align: center;
    margin-top: -189px;
    background: rgb(247,0,104);
    background: -moz-linear-gradient(to left, rgba(247,0,104,1) 0%, rgba(68,16,102,1) 100%);
    background: -webkit-linear-gradient(to left, rgba(247,0,104,1) 0%, rgba(68,16,102,1) 100%);
    background: linear-gradient(to left, rgba(247,0,104) 0%,rgba(68,16,102,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F70068', endColorstr='#441066',GradientType=1 );
    box-shadow: 0 0 30px rgba(0,0,0,0.30);
  }

  .coming-soon-section .timer-column{
    position: relative;
  }

  .coming-soon-section .time-counter{
    position:relative;
  }

  .coming-soon-section .time-countdown{
    position:relative;
  }

  .coming-soon-section .time-countdown .counter-column{
    position:relative;
    display: inline-block;
    margin: 0 40px;
    max-width: 100px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
  }

  .coming-soon-section .time-countdown .counter-column:before{
      position:absolute;
      content:':';
      top: 0;
      left:-50px;
      font-size:56px;
      line-height:1em;
      color:#ffffff;
  }

  .coming-soon-section .time-countdown .counter-column:last-child:before{
    display: none;
  }

  .coming-soon-section .time-countdown .counter-column .count{
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 1em;
    color: #ffffff;
    font-weight: 700;
  }

  @media screen and (max-width: 992px) {
    .coming-soon-section .time-countdown .counter-column{
      margin: 0 40px;
      max-width: 50px;
    }

    .coming-soon-section .time-countdown .counter-column .count{
      font-size: 45px;
    }
  }
  @media screen and (max-width: 768px) {
    .coming-soon-section .outer-box{
      padding: 10px 10px;
      text-align: center;
      margin-top: -78px;
    }
    .coming-soon-section .time-countdown .counter-column:before{
      position:absolute;
      content:':';
      top: -20px;
      left:-19px;
      font-size:56px;
      line-height:1em;
      color:#ffffff;
  }
    .coming-soon-section .time-countdown .counter-column{
      margin: 0 12px;

    }

    .coming-soon-section .time-countdown .counter-column .count{
      font-size: 20px;
      padding-bottom: 10px;
    }
    .coming-soon-section .time-countdown .counter-column:before{
      font-size: 30px;
      top: -5px;
  }
  }

/* *********************************************************************************** */
/* products_preview */
.products_preview{
  position: fixed;
  top: 0;
  left: 0;
  bottom: auto;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.8);
  z-index: 99999999;
}
.products_preview .preview{
  display: inline-block;
  padding: 1rem 2rem;
  text-align: center;
  background: #fff;
  position: relative;
  width: 50vw;
  border-radius: 8px;
}
.products_preview .preview img{
  height: 230px;
}
.products_preview .preview i{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: #444;
  font-size: 4rem;

}
.products_preview .preview .col{
  padding-top: 1rem;
  text-align: start;
}
.products_preview .preview .col div{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
}
.products_preview .preview .col div i{
  position: absolute;
  top: 5px;
  right: 0;
  font-size: 2rem;
}
.products_preview .preview img{
  height: 230px;
}
.products_preview .preview .bx-x{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  color: #444;
  font-size: 3rem;
}
.products_preview .preview h3{
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  color: #444;
  padding-top: 10px;
  padding-right: 3rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.products_preview span{
  padding: 0 5px;
}
/* The container */
.products_preview .policy .row{
  display: flex;
  align-items: center;
}
.products_preview .policy span{
  font-size: 12px;
  color: #C90505;
}
.products_preview .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.products_preview .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.products_preview .checkmark {
  position: absolute;
  top: 20px;
  right: 3px;
  height: 25px;
  width: 25px;
  background-color: #eee;
}
.products_preview .checkmark.no{
  left: 10%;
}

/* On mouse-over, add a grey background color */
.products_preview .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.products_preview .container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.products_preview .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.products_preview .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.products_preview .container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.products_preview .preview .btn{
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}
.products_preview .preview .btn a{
  width: 30%;
  padding: 8px 14px;
  font-size: 18px;
  white-space: nowrap;
  color: #fff;
  background: var(--primary-color);;
  border: .1rem solid var(--primary-color);
  transition: all .3s ease-in-out;
}
.products_preview .preview .btn a:hover{
  background: var(--primary-color);
  border: .1rem solid var(--primary-color);
}

@media (max-width: 992px) {
  .products_preview .preview{
    padding: 10px;
    width: 95vw;
    border-radius: 10px;
  }
  .products_preview .preview h3{
    padding-right: 2.5rem;
    font-size: 12px;
    font-weight: 600;
  }
  .products_preview .policy span {
    font-size: 10px;
    color: #C90505;
}
}

/******************* video section **********************/
.viedo-wrapper {
  margin: 3rem auto;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-image: linear-gradient(rgba(12,3,51,0.3), rgba(12,3,51,0.3)); */
}
.viedo-wrapper .video{
  display: flex;
  width: 100%;
  height: 100%;
}

/* ***************************************************************************** */
.map-wrapper{
  direction: rtl;
}
.map-h{
  text-align: center;
   padding-top: 2rem;
}
.map-p{
  padding-right: 3rem;
}
.alert {
    padding: 20px;
    background-color: #f44336;
    color: white;
  }

  .closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }

  .closebtn:hover {
    color: black;
  }


  /* home edite */

  .row.widget-row .col-12.col-md-4{
    margin-bottom: 20px;
  }

@media (max-width:768px) {
  h1, .h1 {
    font-size: 2rem;
}
  .box-container.text-left{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }

  .elementor-column-gap-default .box-container.text-left{
    padding: 40px 10px;
    padding: 8px 14px;
    margin-top: 40px;
  }
  .elementor-column-gap-default .box-container.text-right{
    padding: 40px 10px;
    margin-top: 40px;
  }
  .img-request{
    max-width:240px !important;
  }
}

.mb-20{
  margin-bottom: 20px;
}


