/* Google Font */
@import url(https://fonts.googleapis.com/css?family=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);

* {
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  scroll-padding-top: 2rem;
  scroll-behavior: smooth;
  user-select: none;
}

img {
  width: 100%;
}
/* Root Variables */

:root {
  --green-color: #3cb815;
  --light-green-color: #c0eb7b;
  --orange-color: #ff7e00;
  --light-orange-color: #f75f1d;
  --text-color: #1a2428;
  --bg-color: #ffffff;
  --max: 999;
}

body {
  color: var(--text-color);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: var(--max);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-color);
  box-shadow: 0 8px 11px rgb(14 55 54 / 15%);
  padding: 20px 100px;
  transition-duration: 0.5s;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  column-gap: 0.5rem;
}

.logo i {
  font-size: 24px;
  color: var(--orange-color);
}

#menu-icon {
  font-size: 24px;
  cursor: pointer;
  z-index: calc(var(--max) + 1);
  display: none;
}

.navbar {
  display: flex;
  column-gap: 0.5rem;
}

.navbar a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
  padding: 0.5rem 1rem;
}

.navbar a:hover {
  background-color: var(--green-color);
  color: var(--bg-color);
  border-radius: 5rem;
  transition: background-color 0.5s;
}

.profile {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  cursor: pointer;
}

.profile img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
}

.profile span {
  font-size: 13px;
  font-weight: 500;
}

section {
  padding: 4.5rem 0 1.5rem;
}

.container {
  position: relative;
  width: 100%;
  min-height: 640px;
  display: flex !important;
  align-items: center;
  background: url(img/background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.container img {
  width: 400px;
  position: absolute;
  bottom: -500px;
  right: 200px;
}

.home-text {
  padding: 0 150px;
}

.home-text span {
  font-weight: 400;
  text-transform: uppercase;
  color: var(--green-color);
}

.home-text h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.btn {
  padding: 0.6rem 1rem;
  background-color: var(--green-color);
  color: var(--bg-color);
  font-weight: 400;
  border-radius: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.5rem;
  max-width: 160px;
}

.btn i {
  padding: 4px;
  color: var(--text-color);
  background-color: var(--bg-color);
  border-radius: 50%;
  font-size: 20px;
  margin: auto;
}

.btn:hover {
  background-color: var(--light-orange-color);
}

.swiper-button-next {
  background: url(img/right-arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-right: 20px;
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  background: url(img/left-arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  margin-left: 20px;
}

.swiper-button-prev::after {
  display: none;
}

.haeding {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.haeding h1 {
  font-size: 1.6rem;
  font-weight: 600;
}

.haeding span {
  color: var(--green-color);
}

.categories {
  max-width: 968px;
  margin: 0 auto 0;
}

.categories-conatiner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, auto));
  gap: 1rem;
  margin-top: 2rem;
}

.categories-conatiner .box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 0.5rem;
  cursor: pointer;
}

.categories-conatiner .box img {
  height: 100px;
  object-fit: contain;
  object-position: center;
}

.categories-conatiner .box h2 {
  font-size: 1rem;
  font-weight: 600;
}

.categories-conatiner .box span {
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.categories-conatiner .box:hover i {
  display: block;
  transition: all 0.2s linear;
}

.categories-conatiner .box i {
  padding: 10px;
  background-color: var(--green-color);
  color: var(--bg-color);
  border-radius: 50%;
  cursor: pointer;
  margin-top: 2rem;
  position: absolute;
  bottom: -8%;
  display: none;
}

.categories-conatiner .box i:hover {
  background-color: var(--orange-color);
}

.box1 {
  background-color: #fef4ea;
}

.box2 {
  background-color: #e9f4e3;
}

.box3 {
  background-color: #faeaea;
}

.box4 {
  background-color: #eeeef9;
}

.box5 {
  background-color: #f7f6d7;
}

.products {
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
}

.products-conatiner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, auto));
  gap: 1rem;
  margin-top: 2rem;
}

.products-conatiner .box {
  padding: 20px;
  box-shadow: 1px 2px 11px rgb(14 55 54 / 15%);
  border-radius: 0.5rem;
  position: relative;
  cursor: pointer;
}

.products-conatiner .box img {
  height: 200px;
  object-fit: contain;
  object-position: center;
}

.products-conatiner .box span {
  font-weight: 500;
  font-size: 13px;
}

.products-conatiner .box h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

.products-conatiner .box .price {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: var(--light-orange-color);
}

.products-conatiner .box .price span {
  color: var(--text-color);
}

.products-conatiner .box .bx-cart-alt {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px;
  color: var(--bg-color);
  background-color: var(--green-color);
  border-radius: 0.5rem 0 0.5rem 0;
}

.products-conatiner .box .bx-cart-alt:hover {
  background-color: var(--orange-color);
  transition: all 0.2s linear;
}

.products-conatiner .box .bx-heart {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 20px;
  color: var(--light-orange-color);
}

.products-conatiner .box .discount {
  position: absolute;
  top: 1rem;
  left: 0;
  background-color: var(--light-orange-color);
  color: var(--bg-color);
  padding: 4px 24px 4px 12px;
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}

.about {
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, auto));
  align-items: center;
  gap: 1.5rem;
}

.about-text span {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green-color);
}

.about-text p {
  margin: 0.5rem 0 1rem;
}

.customers {
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
}

.customers h2 {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

.customers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, auto));
  gap: 1.5rem;
  margin-top: 2rem;
}

.customers-container .box{
  padding: 20px;
  box-shadow: 1px 2px 11px 4px rgb(14 55 54 / 15%);
  border-radius: 0.5rem;
  border-bottom: 7px solid var(--green-color);
}

.customers-container .box:hover {
  transform: translateY(10px);
  transition: all 0.2s linear;
}

.customers-container .box i {
  font-size: 24px;
  color: var(--green-color);
}

.customers-container .box .stars i {
  font-size: 1rem;
  color: var(--light-orange-color);
}

.customers-container .box p {
  font-size: 0.938rem;
}

.review-profile {
  display: flex;
  align-items: center;
  margin-top: 1rem;
  column-gap: 0.5rem;
}

.review-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.review-profile h3 {
  font-size: 1rem;
  font-weight: 600;
}

.footer {
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  gap: 1.5rem;
  margin-top: 2rem;
  background-color: #fef4ea;
  border-radius: 0.5rem;
  padding: 20px;
}

.footer-box {
  display: flex;
  flex-direction: column;
}

.footer-box p {
  font-size: 0.938rem;
  margin: 0.5rem 0 1rem;
}

.social {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.social i {
  padding: 10px;
  background-color: var(--bg-color);
  color: var(--green-color);
  font-size: 20px;
  border-radius: 50%;
}

.social i:hover {
  background-color: var(--green-color);
  color: var(--bg-color);
  transition: all 0.2s linear;
}

.footer-box h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-box a {
  color: #868a92;
  margin-bottom: 1rem;
}

.footer-box a:hover {
  color: var(--light-orange-color);
}

.footer-box form {
  border-bottom: 1px solid var(--text-color);
  padding: 10px;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}

.footer-box form input {
  background-color: transparent;
  border: none;
  outline: none;
  min-width: 0;
}

.footer-box form i {
  font-size: 20px;
  color: var(--light-orange-color);
  cursor: pointer;
}

.footer-box form .bxs-envelope {
  color: var(--green-color);
}

.copyright {
  text-align: center;
  padding: 20px;
}

/* Rsponsive */

@media (max-width: 1080px) {
  header {
    padding: 18px 60px;
  }

  .home-text{
    padding: 0 100px;
  }

  .container img {
    right: 100px;
  }

  .copyright {
    padding: 10px;
  }
}

@media (max-width: 992px) {
  header {
    padding: 18px 4%;
  }

  section {
    padding: 50px 4%;
  }

  .home-text h1 {
    font-size: 2rem;
  }

  .home-text {
    padding-top: 5%;
    padding-bottom: 5%;
    padding-left: 60px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    margin: 0;
  }

  .copyright {
    padding: 6px;
  }

  .categories-conatiner .box:hover i {
    display: none;
  }

  .customers-container .box:hover {
    transform: none;
  }
}

@media (max-width: 852px) {
  header {
    padding: 12px 4%;
  }

  #menu-icon {
    display: initial;
  }

  .navbar {
    position: absolute;
    top: -570px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-color);
    box-shadow: 4px 4px 0 4px rgb(14 55 54 / 15%);
    transition: all 0.2s linear;
    text-align: left;
    z-index: -1;
  }

  .navbar a {
    padding: 1rem;
    margin: 1rem;
    display: block;
  }

  .navbar a:hover, .navbar .home-active {
    border-radius: 0.5rem;
    background-color: var(--green-color);
    color: var(--bg-color);
  }

  .navbar.active {
    top: 100%;
  }

  .home-text h1 {
    font-size: 1.7rem;
  }

  .container img {
    width: 390px;
  }

  .btn {
    padding: 0.6rem 1.2rem;
  }

  .products-conatiner {
    grid-template-columns: repeat(auto-fit, minmax(244px, auto));
  }

  .about-text .btn {
    max-width: 170px;
  }

  .copyright {
    padding: 2px;
  }
}

@media (max-width: 812px) {
  .container img {
    right: 20px;
  }

  .haeding h1 {
    font-size: 1.2rem;
  }

  .products-conatiner {
    grid-template-columns: repeat(auto-fit, minmax(224px, auto));
  }

  .about {
    grid-template-columns: repeat(auto-fit, minmax(20rem, auto));
  }

  .about img {
    order: 2;
  }

  .about-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .btn {
    max-width: 164px;
  }

  .customers h2 {
    font-size: 1.2rem;
  }

  .products-conatiner .box h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 712px) {
  .container img {
    right: 30px;
    width: 350px;
  }
}

@media (max-width: 668px) {
  .container img {
    right: 0;
  }
}

@media (max-width: 604px) {
  .container img {
    height: 820px;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 536px) {
  .home-text {
    padding-bottom: 17rem;
    padding: 5% 0 17rem 0;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container img {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 370px) {
  .logo {
    font-size: 1rem;
  }

  .haeding .btn {
    margin-top: 1rem;
  }
}