body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: "Fredoka";
}

@media (max-width: 768px) {
  .kits-header {
    flex-direction: column;
    text-align: center;
  }

  .kits-header hr {
    width: 50%;
  }

  .kits-title {
    font-size: 24px;
    margin: 0.5rem;
  }

  .product-container {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
    margin: 10px;
  }

  .icon-link {
    font-size: 24px;
    margin: 0.5rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-logo img {
    margin: 20px 0;
  }
}

.kits-header {
  display: flex;
  align-items: center;
  position: relative;
}

.kits-title {
  color: #7279f3;
  margin-left: 1rem;
  font-size: 50px;
}

.kits-header hr {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 35%;
  border: none;
  height: 5px;
  background-color: #6e51f0;
  z-index: -1;
  border-radius: 20px;
}

.product-container {
  display: flex;
  justify-content: space-around;
  margin: 20px;
}

.product-card {
  width: 400px;
  height: auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background: white;
  margin: 10px;
  border: 5px solid #7279f3;
}

.product-card:hover {
  box-shadow: 0 0 15px 5px rgba(110, 81, 240, 0.5);
}

.product-image {
  width: 100%;
  display: block;
}

.product-info {
  padding: 10px;
}

.product-info h2 {
  font-size: 1em;
  margin: 10px 0;
}

.icon-link {
  margin-top: 0;
  display: flex;
  z-index: 10;
  color: #6e51f0;
  font-size: 40px;
  text-decoration: none;
  justify-content: end;
  transition: transform 0.3s ease;
}

.icon-link:hover,
.icon-link:focus {
  transform: scale(1.1);
}

.kits-header {
  justify-content: space-between;
}

.icon-btn {
  border: none;
  background-color: transparent;
  cursor: pointer;
  color: #7279f3;
  font-size: 1.5rem;
  margin-right: 1rem;
}

.icon-btn:hover {
  color: #6e51f0;
}

.price {
  font-weight: bold;
  color: #000;
}

.favorite {
  color: orange;
  font-size: 1.5em;
}

/* ------------------------------------------FOOTER SECTION--------------------------------------------- */

.footer-section {
  margin-top: 100px;
  background-color: #7279f3;
  color: white;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Fredoka", sans-serif;
}

.footer-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  color: #021218;
}

h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.social-icon,
.app-store,
.google-play {
  font-size: 30px;
  margin: 0 10px;
  color: #021218;
}

.footer-logo img {
  max-width: 100px;
  margin-top: 20px;
}

.information a {
  color: #021218;
  text-decoration: none;
}

.social-icon:hover,
.app-store:hover,
.google-play:hover {
  color: white;
  background: none;
}

.information a:hover {
  text-decoration: underline;
}
