/* Start Global Rules */

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --main-color: #eba937;
  --main-alt-color: #ffd900;
  --borders-color: #ebebeb;
  --titles-color: #cac7c7;
  --main-transition: 0.6s;
  --main-padding-top: 100px;
  --main-padding-bottom: 100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans Arabic", sans-serif;
  user-select: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Small */

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Large */

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

.main-title {
  font-size: 30px;
  margin: auto;
  margin-bottom: 15px;
  border: 2px solid var(--main-alt-color);
  width: fit-content;
  padding: 10px 20px;
  border-radius: 100px;
  z-index: 5;
  position: relative;
  transition: var(--main-transition);
}

@media (max-width: 400px) {
  .main-title::before,
  .main-title::after {
    max-width: 20px;
  }
}

@media (max-width: 400px) {
  .main-title:hover::before,
  .main-title:hover::after {
    max-width: 30px;
  }
}

.main-title:hover {
  color: var(--main-alt-color);
  border-color: var(--borders-color);
}

.main-title::before {
  content: "";
  background-color: var(--main-alt-color);
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: 50%;
  left: 100%;
  transition: var(--main-transition);
}

.main-title:hover::before {
  background-color: var(--borders-color);
  width: 90px;
}

.main-title::after {
  content: "";
  background-color: var(--main-alt-color);
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: 50%;
  right: 100%;
  transition: var(--main-transition);
}

.main-title:hover::after {
  background-color: var(--borders-color);
  width: 90px;
}

.definition {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.definition p {
  max-width: 600px;
  line-height: 1.5;
  word-spacing: 3;
  font-size: 20px;
}

.floated-whatsapp {
  position: fixed;
  z-index: 10;
  bottom: 30px;
  left: 30px;
  background-color: white;
  border-radius: 70%;
  padding: 3px;
  box-shadow: 0 2px 15px rgb(64 195 81 / 15%);
  z-index: 1000;
  transition: var(--main-transition);
}

.floated-whatsapp:hover {
  box-shadow: 0 2px 15px rgb(64 195 81 / 30%);
  padding: 4px;
}

.floated-whatsapp a {
  position: relative;
  z-index: 1000;
}

.to-top {
  background: #ffb759;
  position: fixed;
  bottom: 16px;
  right: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #1f1f1f;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: var(--main-transition);
  z-index: 20;
}

.to-top:hover {
  background-color: #ffaf46;
}

.to-top.active {
  bottom: 32px;
  pointer-events: auto;
  opacity: 1;
}
/* End Global Rules */

/* Start Header */

header {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 20;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 77px;
}

header .container::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: #a2a2a2;
  bottom: 0;
  width: calc(100% - 30px);
  left: 15px;
}

.header .navbar {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header .logo img {
  width: 70%;
  position: relative;
}

.header .logo {
  width: 10%;
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close {
  user-select: none;
  cursor: pointer;
}

.hamburger {
  display: none;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #f8f6f6;
}

.header .navbar .nav-menu span {
  display: none;
}

.nav-menu {
  display: flex;
}

.nav-link {
  padding: 38px 10px;
  display: block;
  color: white;
  text-decoration: none;
  font-size: 17px;
  transition: 0.3s;
  position: relative;
  z-index: 2;
}

.nav-link.active {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

.nav-link:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

/* Header Media */
@media only screen and (max-width: 768px) {
  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    flex-direction: column;
    background-color: white;
    width: 50%;
    height: 100%;
    border-radius: 1px;
    transition: var(--main-transition);
    border-top: 0.5px solid #ece9e9;
    z-index: 3;
  }

  .header {
    background-color: rgba(0, 0, 0, 0.473);
  }

  .header .navbar .nav-menu .cls span {
    font-weight: bold;
    font-size: 30px;
    display: flex;
    float: left;
    padding: 20px;
    font-family: "Montserrat", sans-serif;
    transition: var(--main-transition);
  }

  .header .navbar .nav-menu .cls span:hover {
    color: var(--main-alt-color);
  }

  .header .container::after {
    display: none;
  }

  .nav-menu.active {
    right: 0%;
  }

  .header .nav-link.active {
    border-top: 1px solid #ece9e9;
  }

  .header .nav-link {
    color: black;
    padding: 30px 10px;
    border-bottom: 1px solid #ece9e9;
  }

  .header .nav-link:hover {
    color: var(--main-color);
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}

@media (max-width: 599px) {
  .header .logo {
    width: 17%;
  }
}

@media (min-height: 720px) and (max-height: 720px) {
  .header .logo {
    width: 15%;
  }
}

@media (min-width: 600px) and (max-width: 766px) {
  .header .logo {
    width: 12%;
  }
}

@media only screen and (max-width: 414px) {
  .nav-menu {
    width: 75%;
  }
}
/* Header Media */
/* End Header */
/* Start Landing */
.landing {
  background-image: url(/images/bee-landing.jpg);
  background-size: cover;
  position: relative;
  min-height: 70vh;
}

.landing::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 50%);
}

.landing .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.landing .text h3 {
  font-size: 50px;
  color: white;
  text-align: center;
}

.landing .text h3 span {
  color: var(--main-color);
}

.landing img {
  position: absolute;
  max-width: 100%;
  bottom: 0%;
}

/* Landing Media */
@media screen and (max-width: 767px) {
  .landing img {
    bottom: 0%;
  }
}

@media (min-width: 1280px) and (max-width: 1280px) {
  .landing img {
    bottom: 0;
  }
}
/* Landing Media */
/* End Landing */
/* Start Products */
.products {
  padding-top: var(--main-padding-top);
  position: relative;
  flex: 1;
}

.products .container {
  display: flex;
  flex-wrap: wrap;
  gap: 45px;
}

.products .box-1 {
  flex-basis: 22%;
  background-color: white;
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
  margin-bottom: 20px;
  margin-top: 20px;
  overflow: hidden;
  transition: var(--main-transition);
}

.products .box-1:hover {
  transform: translateY(-10px);
  box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
}

.products .box-1 .image-holder {
  overflow: hidden;
}

.no-image-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.no-image-boxes .box-1 {
  flex-basis: 269px;
}

.no-image-boxes .box-1 .content-1 {
  margin-bottom: 20px;
}

.products .alone {
  display: flex;
  width: 100%;
}

.products .alone .box-1 {
  flex: 1;
}

.products .alone .box-1 .image-holder {
  min-height: 100vh;
}

.products .box-1 .image-holder img {
  max-width: 100%;
  width: 100%;
}

.products .box-1 .content-1 {
  padding: 20px;
}

.products .box-1 .content-1 .prices {
  display: flex;
  position: relative;
}

.products .box-1 h3 {
  margin: 0;
  margin-bottom: 5px;
}

.products .box-1 span {
  line-height: 1.5;
  margin: 20px 0 0;
  display: inline;
  font-size: 15px;
  color: red;
  font-family: "Aref Ruqaa", serif;
}

.products .another-font span {
  font-family: "Noto Sans Arabic", sans-serif;
}

.products .box-1 span.new-price {
  margin-left: 10px;
  font-size: 18px;
}

.products .box-1 span.old-price {
  color: var(--titles-color);
}

.products .box-1 span.old-price::before {
  content: "";
  border-bottom: 1px solid var(--titles-color);
  width: 25%;
  height: 1px;
  position: absolute;
  bottom: 24%;
  transform: rotate(-10deg);
}

.products .products-title {
  color: var(--main-color);
  font-weight: 550;
  position: absolute;
  top: 225px;
  padding-right: 10px;
  border-right: 4px solid;
  font-size: 21px;
}

.s-2 .products-title {
  top: 19px;
}

.s-3 .products-title {
  top: 19px;
}

.s-4 {
  padding-bottom: var(--main-padding-top);
}

.s-4 .products-title {
  top: 19px;
}

/* Products Media */
@media (min-width: 992px) and (max-width: 1199px) {
  .products .box-1 {
    flex-basis: 21%;
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .products .box-1 {
    flex-basis: 45%;
  }
}

@media (max-width: 499px) {
  .products .box-1 {
    flex-basis: 43%;
  }
}

@media (max-width: 369px) {
  .products .box-1 {
    flex-basis: 100%;
  }
}

@media (max-width: 400px) {
  .products .box-1 span.old-price::before {
    width: 20%;
    bottom: 25%;
  }
}
@media (min-width: 401px) and (max-width: 599px) {
  .products .box-1 span.old-price::before {
    width: 12%;
    bottom: 32%;
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .products .box-1 span.old-price::before {
    width: 20%;
  }
}

@media (max-width: 991px) {
  .products .alone .box-1 .image-holder {
    min-height: 10vh;
  }
}
/* Products Media */
/* End Products */
/* Start Footer */
.footer {
  background-image: url(/images/footer-bg.jpg);
  background-size: cover;
  position: relative;
  color: white;
  text-align: center;
}

.footer::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 70%);
}

.footer .container {
  position: relative;
}
.footer img {
  margin-bottom: 20px;
  width: 20%;
  margin-top: 30px;
}
.footer p:not(.copyright) {
  text-transform: uppercase;
  padding: 20px;
  border-bottom: 1px solid white;
  font-size: 22px;
  width: fit-content;
  margin: 20px auto;
}
.footer .social-icons i {
  padding: 10px 15px;
  transition: var(--main-transition);
}

.footer .social-icons a i.fa-facebook-f {
  background-color: #3b5998;
  color: white;
}

.footer .social-icons a i.fa-facebook-f:hover {
  color: rgb(189, 189, 189);
}

.footer .social-icons a i.fa-instagram {
  background: #f09433;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  color: white;
}

.footer .social-icons a i.fa-instagram:hover {
  color: rgb(189, 189, 189);
}

.footer .social-icons a i.fa-whatsapp {
  background-color: #2fd254;
  color: white;
}

.footer .social-icons a i.fa-whatsapp:hover {
  color: rgb(189, 189, 189);
}

.footer .social-icons a i.fa-envelope {
  color: white;
  background-color: #777;
}

.footer .social-icons a i.fa-envelope:hover {
  color: rgb(189, 189, 189);
}
.footer .copyright {
  margin-top: 60px;
  margin-bottom: 0;
  background-color: #1a1a1a;
  z-index: 10;
  padding: 20px;
}
.footer .copyright span {
  font-weight: bold;
  color: var(--main-color);
}
/* Footer Media */
@media (max-width: 767px) {
  .footer img {
    width: 40%;
  }

  .footer {
    background-position: -350px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer {
    background-position: -50px;
  }
}
/* Footer Media */
/* End Footer */
