/* PayLoadz Footer - Responsive Design */

.payloadz-footer {
  background-color: #F8F8F8;
  padding-top: 40px;
  padding-bottom: 98px;
}

.payloadz-footer-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Main Footer Content */
.footer-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  justify-content: space-between;
}

/* Footer Columns */
.footer-column {
  flex: 1;
  min-width: 0;
}

.footer-column--primary a {
  text-decoration: none;
}

.footer-column--primary img {
  max-width: 150px;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

.footer-column--primary p {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 400;
  color: #414449;
  line-height: 1.5;
}

/* Footer Links */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 16px;
}

.footer-column ul li a {
  color: #242424;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #3eb3f3;
}

/* Footer Bottom Section */
.footer-divider {
  border-top: 1px solid #DDD;
  padding-top: 40px;
  margin-top: 40px;
}

.footer-bottom-section {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

/* Currency and Social Container */
.footer-currency-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-currency-social-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Currency Select */
.footer-currency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-currency img {
  height: 18px;
}

.footer-currency span {
  font-weight: 400;
  color: #373737;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li a {
  text-decoration: none;
  display: inline-block;
}

.footer-social svg {
  vertical-align: middle;
  transition: all 0.2s ease;
}

.footer-social a:hover svg path {
  fill: #3eb3f3;
}

/* Copyright Section */
.footer-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-copyright span {
  color: #373737;
  font-size: 14px;
}

.footer-copyright .footer-separator {
  opacity: 0.6;
}

.footer-copyright a {
  color: #373737;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-copyright a:hover {
  color: #3eb3f3;
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
  .payloadz-footer {
    padding-bottom: 60px;
  }
  
  .payloadz-footer-container {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  .footer-row {
    flex-direction: column;
    gap: 30px;
    justify-content: flex-start;
  }
  
  .footer-bottom-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .footer-currency-social {
    width: 100%;
  }
  
  .footer-copyright {
    flex-wrap: wrap;
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-row {
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 1 auto;
  }
}

