.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo h2 {
  font-size: 24px;
  color: #f77fbe;
}

.footer-contact,
.footer-links,
.footer-social 
,.payment-icons{
  flex: 1 1 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}



.footer-social a {
  margin-right: 10px;
  display: inline-block;
  text-align: center;
  transition: transform 0.2s;
}

.footer-social a:hover {
  transform: scale(1.2);
}

#scrollToTop {
  position: fixed;
  bottom: 40px;
  left: 30px;
  z-index: 999;
  background-color: #f77fbe;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#scrollToTop:hover {
  background-color: #e063a3;
  transform: scale(1.1);
}
.payment__icons {
  margin-top: 30px;
  margin-bottom: 30px;
}

.payment__icons p {
  margin-bottom: 10px;
  font-weight: bold;
}

.payment__icons img {
  height: 30px;
  margin-right: 10px;
  vertical-align: middle;
}


.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-icon img {
    width: 100%;
    height: auto;
    border-radius: 40%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.whatsapp-icon img:hover {
    transform: scale(1.1);
}


@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .footer-contact,
  .footer-links,
  .footer-social,
  .payment-icons {
    flex: 1 1 100%;
    width: 100%;
  }

  .footer-logo h2 {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  .footer-links ul li {
    margin-bottom: 5px;
  }

  .footer-links ul li a {
    font-size: 14px;
  }

  .footer-social a {
    margin-right: 8px;
  }

  .payment__icons img {
    height: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px;
    font-size: 13px;
    text-align: center;
  }

  .footer-container {
    align-items: center;
  }

  .footer-links ul {
    padding-left: 0;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-social a {
    font-size: 18px;
  }

  #scrollToTop {
    bottom: 20px;
    left: 20px;
    font-size: 18px;
    padding: 10px 14px;
  }

  .whatsapp-icon {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon img {
    border-radius: 50%;
  }
}

