.site-footer {
  background-color: #fff;
  color: #333;
  font-size: 15px;
  padding: 60px 30px 20px;
  border-top: 1px solid #eee;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .logo {
  font-size: 24px;
  font-weight: 700;
  color: #7b2be2;
}

.footer-brand .logo span {
  color: #000;
}

.footer-brand p {
  margin: 12px 0 20px;
  color: #555;
  line-height: 1.5;
}

.footer-columns-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer-columns {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}

.footer-columns > div {
  min-width: 140px;
}

.footer-columns h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns li {
  margin-bottom: 8px;
}

.footer-columns a {
  color: #444;
  text-decoration: none;
}

.footer-columns a:hover {
  color: #7b2be2;
}

/* Separator */
footer hr {
  margin: 40px 0 20px;
  border: none;
  border-top: 1px solid #e6e6e6;
}

/* Bottom area */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: #666;
  padding-top: 20px;
}

.footer-links a {
  margin: 0 8px;
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  color: #7b2be2;
}

.footer-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}

.hiddenFrame {
  display: none;
}

/* Responsive: Tablet & down */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-columns-wrapper {
    justify-content: center;
    width: 100%;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-columns > div {
    min-width: 160px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    margin-top: 10px;
  }

  .footer-payment {
    margin-top: 10px;
    justify-content: center;
  }
}
