footer {
  background-color: white;
  color: #1f2937; /* text-gray-800 */
  padding: 2.5rem 0;
  border-top: 1px solid #e5e7eb; /* border-t */
}

.footer-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.footer-list li {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.footer-list a {
  text-decoration: none;
  color: inherit;
}

.footer-list a:hover {
  text-decoration: underline;
}

.footer-logo {
  height: 2.8rem;
  margin-bottom: 0.1rem;
  display: block;
}

.footer-icons {
  display: flex;
  gap: 0.5rem;
}

.payment-icons {
  margin-top: 1.25rem;
}

.icon-mir {
  height: 1rem;
  margin-top: 0.5rem;
}

.icon-pay,
.social-icons a img {
  height: 2rem;
}

@media (max-width: 639px) {
  .footer-container {
    text-align: center;
    justify-items: center;
  }

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

  .payment-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
