.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  padding-top: 200px;
  margin: 0px auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-section h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding-left: 35px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 5px;
}

.payments {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.payment-logo {
  width: 100px;
  height: auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--padding);
  border-top: 1px solid #222;
  padding-top: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.footer-icon {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
}
.footer-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-section p {
  padding-left: 35px;
}
.footer-logo {
  align-items: center;
  gap: var(--gap);
  display: flex;
}
.footer-logo img {
  /* SVG Logo Placeholder */
  width: 25px;
  height: 25px;
  object-fit: contain;
}
#view-counter {
  padding: 0 5px;
}
.visitor-count {
  display: flex;
  gap: 10px;
  font-size: 0.95em;
  align-items: center;
}
.visitor-count > div:last-child {
  display: flex;
  flex-wrap: nowrap;
}
.visitor-count .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
}

.footer .payments {
  background-color: rgba(255, 255, 255, 0.088);
  padding: var(--padding);
  border-radius: var(--radius);
}

@media (max-width: 500px) {
  .footer {
    width: 100%;
  }
  .footer .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }
  .footer .footer-bottom .circle {
    display: none;
  }
  .footer .footer-bottom .footer-logo {
    flex-direction: column;
  }
  .footer .footer-bottom .footer-logo img {
    width: 50px;
    height: 50px;
  }
  .footer .footer-bottom .visitor-count {
    padding: var(--padding);
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
