/*********************
START: GENERAL STYLES
*********************/
html {
  scroll-behavior: smooth;
  font-size: 100%;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

:root {
  --direction: rtl;
  --container: 95%;
  --font-family: "DiodrumArabic-Medium";
  --font-family-light: "DiodrumArabic-Light";
  --font-family-Semibold: "DiodrumArabic-Semibold";
  --font-family-Bold: "DiodrumArabic-Bold";
  --primary-color: #5e0022;
  --secondary-color: #2c2c2c;
  --text-color: #ffffff;
  --white: #ffff;
  --background-color: #040404;
  --h1-size: 3.5rem;
  --h2-size: 2.5rem;
  --h3-size: 1.5rem;
  --text-size: 1rem;
  --text-size2: 1.125rem;
  --text-size3: 1.25rem;
  --line-height: 150%;
  --line-height2: 150%;
  --gap: 6rem;
  --border-radius: 10px;
  --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  direction: var(--direction);
  color: var(--text-color2);
  background-color: var(--background-color);
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr var(--container) 1fr;
  grid-template-areas: ". content .";
}

.container > * {
  grid-area: content;
}

/*********************
END: GENERAL STYLES
*********************/

/*********************
START: MENU STYLES
*********************/
.loader {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 10000;
  background: var(--background-color);
}
.loader img {
  width: 100%;
  height: auto;
}
.loader.hidden {
  animation: fadeOut 1s;
  -webkit-animation: fadeOut 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.languages {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
img.logo {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 229px;
}
span.selectLanguages {
  display: block;
  text-align: center;
  margin-block: 61px 20px;
  font-size: var(--text-size3);
}
.butLanguages {
  display: flex;
  justify-content: center;
}
a.but {
  border: solid 1px var(--primary-color);
  border-radius: 22px;
  padding: 6px 43px;
  background-color: var(--primary-color);
  margin-inline: 10px;
  height: 45px;
}
a.but.more {
  border-color: var(--text-color);
  background-color: var(--background-color);
}
a.but span {
  line-height: 1.4rem;
  display: block;
  font-size: var(--text-size2);
}
.fixMenu {
  position: fixed;
  bottom: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  background: var(--background-color);
}
.fixMenu .rightFixMenu {
  padding: 8px 25px;
  border-radius: 40px;
  background-color: var(--primary-color);
  display: block;
  height: 42px;
}
.fixMenu .leftFixMenu a {
  display: flex;
  align-items: center;
}
.fixMenu .leftFixMenu a img {
  margin-inline-end: 5px;
}
.forCategories {
  animation: scaleLogo 1s forwards;
  animation-delay: 1s;
  position: absolute;
  left: 0;
  right: 0;
  top: 320px;
}

@keyframes scaleLogo {
  100% {
    height: 106px;
    top: 17px;
  }
}
ul.allCategories {
  margin-block-start: 170px;
  opacity: 0;
  animation: fadeOn 1s forwards;
  animation-delay: 1.5s;
  margin-block-end: 85px;
}

@keyframes fadeOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ul.allCategories li a {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 30px;
  margin-block-start: 10px;
      flex-direction: row-reverse;

}
ul.allCategories li a:is(:hover, :focus) {
  background-color: var(--primary-color);
}
ul.allCategories li span {
  display: block;
  font-size: var(--h3-size);
  font-family: var(--font-family-light);
  font-size: var(--text-size3);
}
ul.allCategories li img {
  height: 32px;
  width: auto;
}
.subCategories {
  display: flex;
  justify-content: space-between;
  margin-block-start: 23px;
      flex-direction: row-reverse;

}
.subCategories ul.rightMenu {
  width: 10%;
  overflow-y: scroll;
  height: 100vh;
  position: fixed;
}
.underRightMenu {
  width: 10%;
}
.titleCatMain {
  text-align: center;
  position: relative;
  margin-block-end: 30px;
}
.titleCatMain::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 20px;
  background: white;
  opacity: 0.5;
}
.titleCatMain span {
  background: var(--background-color);
  z-index: 2;
  position: relative;
  padding-inline: 14px;
}
.subCategories ul.rightMenu li:first-child img {
  width: 100%;
}
.subCategories ul.rightMenu li {
  margin-block: 15px;
}
.subCategories ul.rightMenu li:last-child {
  margin-block-end: 110px;
}
.subCategories ul.rightMenu li a {
  writing-mode: vertical-rl;
  padding-inline: 15px;
  text-orientation: mixed;
  font-family: var(--font-family-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.subCategories ul.rightMenu li.active a {
  font-family: var(--font-family-Semibold);
}
.subCategories .mainSubcategories {
  width: 88%;
}
.subCategories .mainSubcategories .products .item {
  position: relative;
}
.subCategories .mainSubcategories .products .item a {
  display: block;
  width: 100%;
  height: 215px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-block-end: 20px;
}
.subCategories .mainSubcategories .products .item .bottomFood {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgb(36 36 36 / 80%);
  display: flex;
  justify-content: space-between;
  bottom: 0;
  align-items: center;
  height: 36px;
  padding: 3px 15px;
  flex-direction: row-reverse;
}
.subCategories .mainSubcategories .products .item .bottomFood span {
  display: block;
  font-family: var(--font-family-Semibold);
  line-height: 1.4rem;
  margin-block-start: -5px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
        background: transparent;
}
.subCategories .mainSubcategories .products .item .bottomFood b {
  margin-block-start: -5px;
  direction: ltr;
}
.subCategories .mainSubcategories .products .item .bottomFood span img {
  margin-inline-end: 5px;
  transform: rotate(0deg);
}
.bg {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  position: absolute;
  animation: opacity 1s forwards;
  animation-delay: 1s;
  z-index: 100;
}
@keyframes opacity {
  0% {
    opacity: 1;
    z-index: 100;
  }
  100% {
    opacity: 0.15;
    z-index: 1;
  }
}
.bg img {
  height: 100%;
  width: auto;
}
.swiper {
  width: 100%;
  height: 100%;
  animation-delay: 1s;
  min-height: 100vh;
}
.swiper-slide,
swiper-slide {
  min-height: 100vh;
}
.topSwiperSlide {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-block-start: 30px;
  z-index: 1;
}
.topSwiperSlide .dataFood {
  background-color: var(--primary-color);
  border-radius: 30px;
  display: flex;
  direction: ltr;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 3px 15px;
  width: 70%;
  flex-direction: row-reverse;
}
.topSwiperSlide .dataFood span {
  display: flex;
  align-items: center;
  margin-block-start: -4px;
}
.topSwiperSlide .dataFood b {
  margin-block-start: -4px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: var(--text-color);
}
.txtArea {
  margin-block: 60px;
  z-index: 1;
  position: relative;
}
.txtArea ul {
  padding-inline-start: 15px;
}
.txtArea ul li {
  display: flex;
  align-items: center;
}
.txtArea ul li:before {
  content: "·";
  font-size: 32px;
  line-height: 20px;
  margin-inline-end: 7px;
}
ul.gallery {
  position: relative;
  z-index: 1;
}
ul.gallery li {
  width: 100%;
  margin-block-end: 20px;
  border-radius: var(--border-radius);
  overflow: hidden;
}
ul.gallery li img {
  width: 100%;
  display: block;
}
.history h2 {
  display: inline-block;
  margin-block-end: 15px;
  position: relative;
  font-family: var(--font-family-light);
}
.history h2::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: -9px;
  right: 0;
}
.goBack {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    z-index: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: opacity2 1s forwards;
    animation-delay: 1s;
    z-index: 100;
}

@keyframes opacity2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.goBack::after {
  content: "prev";

  font-family: swiper-icons;
  font-size: 25px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
/*********************
END: MENU STYLES
*********************/
/*********************
Start: New style
*********************/
.seprator {
  text-align: center;
  margin-block: 24px;
  position: relative;
}
.seprator::after {
  content: "";
  width: 100%;
  height: 2px;
  border-bottom: dashed 1px white;
  position: absolute;
  left: 0;
  top: 17px;
  opacity: 0.3;
}
.seprator img {
  padding-inline: 5px;
  background-color: var(--background-color);
  position: relative;
  z-index: 2;
  width: 50px;
}
.v-counter {
  border-radius: 32px;
  max-width: 89px;
  overflow: auto;
  padding: 0px 4px;
  border: 1px solid #323140;
  margin: 10px;
}

.v-counter input[type="button"]:hover {
  color: black;
  font-weight: bold;
  background-color: transparent;
}
.v-counter span {
  font-size: 13px;
  color: black;
  font-family: "Open Sans";
}
.v-counter input[type="button"],
input[type="text"] {
  display: inline-block;
  width: 20px;
  background-color: transparent;
  outline: none;
  border: none;
  text-align: center;
  cursor: pointer;
  padding: 0px;
  color: black;
  height: 33px;
  font-family: "Open Sans";
}
.rightbottomFood {
  display: flex;
  align-items: center;
}
.item .add-to-cart {
touch-action: manipulation;
    padding: 5px;
    position: absolute;
   right: 5px;
    top: 5px;
    z-index: 100;
    background: rgb(4 4 4 / 50%);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.shopping-bag {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 10px;
    right: 80px;
    border-radius: 50%;
}

.shopping-bag a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.shopping-bag a img {
  width: 60%;
}
.total-items-in-cart {
  position: absolute;
  top: -15px;
  right: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

div.darkPage {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 198;
  background: #0003;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

div.darkPage.vis {
  opacity: 1;
  visibility: visible;
}
nav.sideNav {
  position: fixed;
  width: 100%;
  overflow: hidden;
  height: 100%;
  top: 0;
  right: 0;
  transform: translateX(100%);
  background: var(--background-color);
  z-index: 200;
  display: block;
  -webkit-transition: all linear 0.4s;
  transition: all linear 0.4s;
  overflow-y: scroll;
  padding-inline: 10px;

}
nav.sideNav.open {
  transform: translateX(0);
}
img.logo.logoSidenav {
  height: 110px;
margin-block: 15px;
}
.cart-items {
  margin-block: 32px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-block-end: 15px;

}
.cart-item::after {
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: dashed 1px var(--white);
  bottom: 33%;
  position: absolute;
}
.cart-item .item-info {
  display: flex;
  align-items: center;
  background-color: var(--background-color);
  z-index: 2;
  padding-inline-end: 7px;
}
.cart-item .item-info img {
margin-inline-end: 8px;
    height: 15px;
    touch-action: manipulation;
}
.cart-item .units {
  display: flex;
  background-color: var(--background-color);
  z-index: 2;
  padding-inline-start: 10px;
  font-size: 19px;
  align-items: center;
  touch-action: manipulation;
}
.cart-item .units .btn {
  font-size: 30px;
  display: flex;
  align-items: center;
    touch-action: manipulation;

}
.cart-item .units .btn img {
width:15px;
height:auto;
    touch-action: manipulation;

}
.number {
  padding-inline: 8px;

}
.products ul:last-of-type .item:last-of-type {
    margin-block-end: 90px;
}
.products ul .item:first-of-type {
    margin-block-start: 20px;
}
.alert-food {
    text-align: center;
    position: fixed;
    z-index: 300;
    background: var(--primary-color);
    width: 100%;
    margin: 5px auto;
    box-sizing: border-box;
    border-radius: 5px;
    padding-block: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  opacity:0;
 transition:opacity .7s;
}
.alert-food.fade {
opacity:1;
}
.changeToEn {
    position: absolute;
    left: 45px;
    top: 50px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    opacity: 0;
    animation: fadeOn 1s forwards;
    animation-delay: 1.5s;

}
.changeToEn img {
margin-inline-start:4px;
}

.time-menu {
    font-size: 12px;
    margin-block-start: -3px;
}
/*********************
END: New style
*********************/