* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-family: "Inter", sans-serif;
  font-style: normal;
}
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
:root {
  --font-xxl: 3.188rem;
  --font-xl: 2.188rem;
  --font-lg: 2rem;
  --font-sm: 1rem;
  --font-xsm: 0.875rem;
  --color-primary: #06c167;
  --color-accent: #f3fcf7;
  --color-accent2: #e6f9f0;
  --color-accent-mobile: #f0f1ec;
  --color-white: #ffffff;
  --color-dark-400: #1d1d1f;
  --color-gray: #c7c7c7;
}
@media (min-width: 768px) {
  :root {
    --font-xxl: 4.688rem;
    --font-xl: 3.75rem;
  }
}
/* /////////////////////////////////////////////////// custom utility class */

.container {
  width: 95vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 80vw;
  }
}
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.items-center {
  align-items: center;
}
.gap-10 {
  gap: 10px;
}
.gap-20 {
  gap: 20px;
}
.gap-30 {
  gap: 30px;
}
.gap-40 {
  gap: 40px;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-col {
  flex-direction: column;
}
.reverse-col {
  flex-direction: column-reverse;
}
/* //////////////////////////////////////// responsive flex utility class */
@media (min-width: 768px) {
  .flex-wrap {
    flex-wrap: nowrap;
  }
  .flex-row {
    flex-direction: row;
  }
  .reverse-col {
    flex-direction: row;
  }
}
/* //////////////////////////////////////// */
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.text-center {
  text-align: center;
}

/* //////////////////////////// responsive button design */
.title-top {
  font-weight: 500;
  color: var(--color-dark-400);
  font-size: 15px;
}
.section-title {
  font-size: var(--font-xl);
  font-weight: 500;
  margin: 30px 0;
  color: var(--color-dark-400);
}
.btn {
  padding: 20px 20px;
  font-size: var(--font-sm);
  background: var(--color-primary);
  color: var(--color-white);
  margin: 40px 0;
  width: 100%;
}
@media (min-width: 768px) {
  .btn {
    width: 200px;
  }
  .section-title {
    text-align: left;
  }
  .title-top {
    text-align: left;
  }
}
/* ////////////////////////////////////////////////////////////////////// */

/*/////////////////////////////////////// header area */
.inner--header--section {
  height: 80px;
  position: relative;
}
.header--logo a {
  font-size: var(--font-xl);
  color: var(--color-primary);
  font-weight: 500;
}
.nav--link a {
  font-size: var(--font-sm);
  color: var(--color-dark-400);
  font-weight: 400;
  display: inline-block;
  position: relative;
  transition: all 0.4s ease-in-out;
}
.nav--link a:hover {
  color: var(--color-primary);
}
.nav--link a:hover:after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: -6px;
  height: 8px;
  width: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.header--navigation {
  position: absolute;
  right: -100%;
  top: 100%;
  background: var(--color-accent);
  width: 100%;
  height: 70vh;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.active .header--navigation {
  right: 0;
}
.navbtn {
  display: block;
  font-size: var(--font-lg);
  color: var(--color-primary);
}
/* ////////////////////////////////////////// header desktop design */
@media (min-width: 768px) {
  .header--navigation {
    position: static;
    height: auto;
    width: auto;
  }
  .navbtn {
    display: none;
  }
}
/* ////////////////////////////////////////// hero area */
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background: var(--color-accent);
  z-index: -1;
}
.innter--hero--section {
  padding: 50px 0;
}
.hero--section__contant {
  width: 100%;
  text-align: center;
}
.hero--section__contant h2 {
  font-size: var(--font-xxl);
  font-weight: 600;
}
.hero--section__contant p {
  margin: 30px 0;
  color: var(--color-dark-400);
  font-weight: 400;
}
.hero--section__contant a span {
  position: relative;
  left: 20px;
}
.hero--section__brands {
  justify-content: center;
  width: auto;
}
.hero--section__brands .group1,
.group2 {
  width: 30%;
}
.hero--section__brands .group3 {
  width: 30%;
}
.hero--section__image {
  position: relative;
  width: 100%;
}
.hero--section__image .inner--image {
  padding: 0 50px;
}
.hero--section__rating {
  position: absolute;
  left: 25%;
  bottom: 25%;
  background: var(--color-white);
  padding: 15px;
  border-radius: 30px;
  z-index: 999;
}
.hero--section__rating span {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark-400);
}
.hero--section__rating .star {
  color: var(--color-primary);
  font-size: 12px;
  margin-left: 20px;
}
.hero--section__comment {
  position: absolute;
  top: 78%;
  right: 18%;
  background: var(--color-white);
  padding: 5px 10px;
  border-radius: 50px;
  z-index: 999;
}
.hero--section__comment--image img {
  margin-top: 2px;
}
.hero--section__comment h5 {
  font-size: 15px;
  color: var(--color-dark-400);
  font-weight: 500;
  line-height: 1rem;
}
.hero--section__dot {
  position: absolute;
  right: 0;
  bottom: 0;
}
/* ////////////////////////////////////////// desktop hero area design*/
@media (min-width: 768px) {
  .hero--section__contant {
    width: 50%;
    text-align: left;
  }
  .hero--section__image {
    width: 50%;
  }
  .hero--section__comment {
    top: 40%;
    right: 0;
  }
  .hero--section__rating {
    left: -50px;
    bottom: 40%;
  }

  .hero--section__brands {
    justify-content: center;
  }
}
/* ///////////////////////////////////// feature area */
.inner--feature {
  border-bottom: 1px solid #bdbdbd;
  border-top: 1px solid #bdbdbd;
  padding: 30px 0;
  height: auto;
}
.feature__card {
  width: 42%;
  gap: 10;
}
.feature__card span {
  font-size: 25px;
  color: var(--color-primary);
  padding: 15px;
  background: var(--color-accent);
  border-radius: 5px;
}
.feature__card--text h5 {
  font-size: 1.125rem;
  color: var(--color-dark-400);
  font-weight: 400;
}
.feature__card--text p {
  font-size: var(--font-xsm);
  font-weight: 500;
  color: var(--color-dark-400);
}
/* ///////////////////////////////////// desktop feature area design */
@media (min-width: 768px) {
  .inner--feature {
    height: 185px;
  }
  .feature__card {
    width: auto;
    gap: 30;
  }
}
/* //////////////////////////////////// about area */
.inner--about {
  padding: 100px 0;
}
.inner--about__imageSide {
  padding: 0 30px 60px 30px;
  background: transparent;
  position: relative;
  height: auto;
}
.inner--about__imageSide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92%;
  background: var(--color-accent-mobile);
  z-index: -1;
  display: block;
}
.inner--about__contentSide span {
}
.inner--about__contentSide ul {
  margin: 50px 0;
}
.inner--about__contentSide ul span {
  color: var(--color-primary);
  font-size: var(--font-sm);
  margin-right: 10px;
}
.inner--about__contentSide ul li {
  line-height: 40px;
  font-size: var(--font-sm);
  color: var(--color-dark-400);
}
/* //////////////////////////////////// desktop about area */
@media (min-width: 768px) {
  .inner--about__imageSide {
    padding: 0 50px 80px 50px;
    background: var(--color-accent);
  }
  .inner--about__imageSide::after {
    content: "";
    display: none;
  }
  .inner--about__contentSide span {
    text-align: left;
  }
}
/* ////////////////////////////////// stats area */
.inner--stats {
  flex-direction: column-reverse;
}

.inner--stats__number {
  width: 400px;
}
.inner--stats__contentSide h3 {
  font-size: var(--font-xl);
  font-weight: 500;
  margin: 30px 0;
  color: var(--color-dark-400);
}
.inner--stats__number span {
  font-size: 40px;
  color: var(--color-primary);
  font-weight: 500;
}
.inner--stats__imageSide {
  padding: 0 30px 60px 30px;
  background: transparent;
  position: relative;
  height: auto;
}
.inner--stats__imageSide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 92%;
  background: var(--color-accent-mobile);
  z-index: -1;
  display: block;
}
/* ///////////////////////////////////////// desktop stats area design */
@media (min-width: 768px) {
  .inner--stats {
    text-align: left;
  }
  .inner--stats__imageSide {
    padding: 0 0 80px 50px;
    background: var(--color-accent);
  }
  .inner--stats__imageSide::after {
    content: "";
    display: none;
  }
  .inner--stats {
    flex-direction: row;
  }
  .inner--stats__number {
    flex-direction: row;
  }
}
/* //////////////////////////////////////// category area */
.inner--category {
  padding: 100px 0;
}

.inner--category h3 {
  text-align: center;
}
.category--box {
  text-align: left;
}
.inner--category__container {
  flex-wrap: wrap;
}
.category--box__content {
  background: var(--color-accent-mobile);
  border: 2px solid var(--color-primary);
  height: 292px;
  width: 100%;
  padding: 20px 40px;
  margin-top: -10px;
}
.category--box__content h3 {
  font-size: var(--font-lg);
  color: var(--color-dark-400);
  font-weight: 500;
}
.category--box__content p {
  font-size: var(--font-sm);
  font-weight: 400;
  color: var(--color-dark-400);
  margin: 30px 0;
}
.category--box__content a {
  padding: 15px 30px;
  background: var(--color-accent2);
  color: var(--color-primary);
}
.category--box__image {
  width: 100%;
  height: 292px;
}
/* //////////////////////////////////////// desktop category area design */
@media (min-width: 768px) {
  .category--box__content {
    background: var(--color-accent);
    width: 292px;
    height: 100%;
    margin-top: 0px;
  }
  .category--box__image {
    width: auto;
    height: 292px;
  }
}
/* ////////////////////////////////////// popular products area */
.inner--products__container {
  padding: 50px 0;
}
.products--card:nth-child(1) {
  border: 2px solid var(--color-primary);
}
.products--card {
  padding: 20px 30px;
  height: auto;
  width: 100%;
  transition: all 0.4s ease-in-out;
  border: 2px solid var(--color-gray);
}
.products--card span {
  color: var(--color-primary);
}
.products--card h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 20px;
}
.products--card .price {
  font-size: 1.2rem;
}
.products--card span del {
  color: #d3d2d2;
}
.products--card a {
  padding: 10px 20px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  margin-top: 20px;
}
.hover:hover {
  border: 2px solid var(--color-primary);
}
/* ////////////////////////////////////// desktop popular products design */
@media (min-width: 768px) {
  .popular--products--section {
    text-align: left;
  }
  .products--card {
    height: 445px;
    width: auto;
  }
  .popular--products--section h3 {
    text-align: left;
    padding: 0;
  }
}
/* ////////////////////////////////////////// call to action area */
.inner--cta {
  background: url(./image/cta-bg.png) no-repeat center center, #0c0c0c54;
  background-size: cover;
  background-blend-mode: overlay;
  height: 460px;
  padding: 0 60px;
  margin: 50px 0;
}
.inner--cta h3 {
  font-size: var(--font-xl);
  color: var(--color-white);
  font-weight: 500;
}
/* ////////////////////////////////////////// desktop call to action design */
@media (min-width: 768px) {
  .inner--cta {
    padding: 0;
  }
}
/* /////////////////////////////////////////// footer area */
.inner--footer {
  height: 100%;
  padding-bottom: 100px;
}
.about--foodies {
  width: 210px;
}
.about--foodies p {
  padding: 30px 0;
}
.inner--footer a {
  color: var(--color-dark-400);
  font-size: var(--font-sm);
  line-height: 30px;
}
.inner--footer h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.about--foodies h2 {
  font-size: var(--font-lg);
  font-weight: 500;
  color: var(--color-primary);
}
.about--foodies p {
  color: var(--color-dark-400);
  font-size: var(--font-sm);
  font-weight: 400;
  padding: 25px 0;
}
.companey--newsLetter {
  width: 338px;
}
.companey--newsLetter p {
  font-size: var(--font-sm);
  font-weight: 400;
  color: var(--color-dark-400);
  margin: 20px 0;
}
.newsLetter__btn {
  gap: 0;
  height: 40px;
}
.companey--newsLetter .email--feld {
  width: 100%;
  height: 50px;
  border: none;
  background: var(--color-accent-mobile);
  padding: 0 20px;
}
.companey--newsLetter .submit--btn {
  border: none;
  margin: 5px 0;
}
.footer--copey {
  padding: 20px 0;
}

/* //////////////////////////////////////// desktop footer design */
@media (min-width: 768px) {
  .inner--footer {
    padding-bottom: 0;
  }
  .footer--section {
    text-align: left;
  }
  .about--foodies ul {
    justify-content: flex-start;
  }
  .companey--newsLetter .email--feld {
    width: 205px;
  }
  .companey--newsLetter .submit--btn {
    padding: 15px 20px;
  }
  .newsLetter__btn {
    height: 80px;
    gap: 10px;
  }
}
