@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Halant:wght@400;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap);
footer * {
  font-family: inherit;
  margin: 0;
  padding: 0;
}
.footer-container p {
  margin: 0;
}
.footer-container {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  color: black;
  padding: 2em 0 !important;
  margin: 0;
}

.footer-container .footer-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 95%;
}

.footer-content .about-company {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 1em;
}

.about-company .footer-logo {
  width: 45%;
  object-fit: contain;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.about-company .footer-logo img {
  width: 100%;
  height: 100%;
}

.about-company .footer-logo p {
  font-size: 0.6em;
  position: relative;
  top: -8px;
}

.about-company .content {
  font-size: 1rem;
  padding: 0.3em;
  line-height: 1.8;
  font-family: Roboto;
}

.footer-content .contact-us,
.footer-content .policy,
.footer-content .support {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 15%;
  gap: 1em;
  font-family: Roboto;
}

.contact-us .title,
.policy .title,
.support .title {
  font-size: 1.25rem;
  font-weight: 500;
  text-rendering: auto;
}

.contact-us .content,
.policy .content,
.support .content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.7em;
}

.contact-us .content a,
.policy .content a,
.support .content a {
  font-size: 0.9rem;
  color: inherit;
  text-decoration: none;
  line-height: 2;
  transition: all 0.2s linear;
}

.contact-us .content a:hover,
.policy .content a:hover,
.support .content a:hover {
  text-decoration: underline !important;
  translate: 5px;
}

.contact-us .content a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
}

.contact-us .content a img {
  height: 100%;
  width: 100%;
}

.contact-us .content a span:first-child svg {
  height: 1.5em;
  width: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container .desktop-hr {
  display: block;
}

.footer-container .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  font-family: Roboto;
}

.follow-us a img {
  width: 100%;
  height: 100%;
}

.footer-bottom .copyright {
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8em;
}

.footer-bottom .follow-us {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-size: 1rem;
  width: 25%;
}

.footer-bottom hr,
.footer-container .desktop-hr {
  width: 90%;
  border: none;
  outline: none;
  border-top: 1px solid black;
}

.follow-us a {
  display: flex;
  object-fit: contain;
  width: 8%;
  transition: scale 0.4s ease-in-out;
}

.follow-us a:hover {
  scale: 1.3;
}

.footer-bottom .mobile-hr,
.footer-container .footer-content hr,
.footer-content .follow-us {
  display: none;
}

.follow-us .follow-us-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .contact-us .content,
  .policy .content,
  .support .content {
    font-size: 1.3em;
    gap: 0.3em;
  }
  
  .most-loved-category-container .navigation-arrows > div:nth-child(2) {
    display: none;
  }

  .follow-us a:hover {
    scale: 1;
  }

  .footer-container .footer-bottom {
    flex-direction: column-reverse;
    align-items: start;
    width: 95%;
    gap: 1em;
  }

  .footer-bottom .follow-us {
    width: 100%;
    justify-content: start;
    gap: 5%;
  }

  .contact-us .content a:hover,
  .policy .content a:hover,
  .support .content a:hover {
    color: white;
  }

  .footer-bottom .copyright {
    width: 100%;
    font-size: 1.5em;
  }

  .footer-container .desktop-hr {
    width: 100%;
  }

  .more-questions-container {
    padding: 0;
  }

  .footer-container p {
    margin: 0;
  }

  .footer-container .follow-us p {
    font-size: 1.2em;
  }

  .footer-container {
    padding: 2em 1.5em;
  }

  .footer-container .policy .title,
  .footer-container .support .title,
  .footer-container .contact-us .title ,
  .footer-container .follow-us .title {
    text-decoration: underline;
    text-underline-offset: 0.3em;
    text-decoration-thickness:1px ;
  }

  .contact-us .content a:hover,
  .policy .content a:hover,
  .support .content a:hover {
    text-decoration: none;
  }

  .footer-container .footer-content {
    flex-direction: column;
    gap: 1.2em;
  }

  .footer-content .about-company {
    width: 90% !important;
  }

  .footer-container .footer-content hr {
    display: block;
    width: 95%;
    margin: 1.8em 0;
    border: 0.6px solid rgba(255, 255, 255, 0.6);
    border-bottom: none;
  }

  .footer-content .contact-us,
  .footer-content .follow-us,
  .footer-content .policy,
  .footer-content .support {
    width: 100%;
  }

  .contact-us .title,
  .follow-us .title,
  .policy .title,
  .support .title {
    font-size: 1.4em;
    font-weight: 500;
  }

  .contact-us .content a,
  .copyright span:nth-child(2),
  .policy .content a,
  .support .content a {
    font-size: 0.8em;
  }

  .footer-content .follow-us {
    display: flex;
    flex-direction: column;
  }

  .follow-us .follow-us-links {
    width: 50%;
    gap: 0.7rem;
    margin-top: 1em;
  }

  .hr-copyright {
    margin: 3em 0 0.8em !important;
  }

  .follow-us .copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.75);
    gap: 0.3em;
    text-align: center;
  }

  .follow-us a {
    width: 8%;
  }
}

@media (max-width: 576px) {
  .follow-us a {
    width: 10%;
  }

  .about-company .content {
    font-size: 1.1em;
    line-height: 1.5;
  }
}
