/* ===== MINIMAL FOOTER ===== */
.minimal-footer {
  background: #000;
  color: #ccc;
  padding: 20px 10px;
  text-align: center;
  font-family: "Jost", sans-serif;
  border-top: 1px solid #111;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Payment icons */
.footer-payments {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-payments i {
  font-size: 22px;
  color: #aaa;
  transition: 0.3s;
}

.footer-payments i:hover {
  color: #fff;
}

/* Text */
.footer-text {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

.footer-text a {
  color: #888;
  text-decoration: none;
  transition: 0.3s;
}

.footer-text a:hover {
  color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-text {
    font-size: 11px;
  }

  .footer-payments i {
    font-size: 18px;
  }
}
