/* Footer  */

.footer {
  background: #0f0f0f;
  color: #fff;
  padding: 20px;
  font-size: 0.9rem;
}

.footer a {
  color: #f39c12;
  text-decoration: none;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center; /* centre verticalement */
  flex-wrap: wrap;
  margin-bottom: 15px;
}

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

.footer-left .follow {
  margin-bottom: 8px;
  font-weight: bold;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.footer-right .payment-logo {
  height: 40px;
  object-fit: contain;
}

.footer-middle {
  text-align: center;
  margin: 10px 0;
  font-size: 0.85rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
    margin-top: 20px;
  }

  .social-icons {
    justify-content: center;
  }
}


/* Fin footer  */