/* =============================================
   PPX Website - Footer Styles
   Standalone CSS — loaded by Next.js and WordPress
   ============================================= */

.ppx-footer {
  background-color: #111111;
  color: #E5E7EB;
  padding: 3rem 0 1.5rem;
  margin-top: auto;
}

.ppx-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ppx-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 1024px) {
  .ppx-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Brand section */
.ppx-footer-brand {
  max-width: 320px;
}

.ppx-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
}

.ppx-footer-logo-img {
  height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.ppx-footer-brand p {
  font-size: 0.875rem;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}

/* Footer link columns */
.ppx-footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
}

.ppx-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppx-footer-column li {
  margin-bottom: 0.5rem;
}

.ppx-footer-column a {
  font-size: 0.875rem;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.15s;
}

.ppx-footer-column a:hover {
  color: #ffffff;
}

/* Social icons row */
.ppx-footer-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid #374151;
}

.ppx-footer-social-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1F2937;
  color: #9CA3AF;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.ppx-footer-social-row a:hover {
  background-color: #4b0a98;
  color: #ffffff;
}

/* Payment methods */
.ppx-footer-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #374151;
}

@media (max-width: 640px) {
  .ppx-footer-payments {
    flex-direction: column;
    align-items: center;
  }
}

.ppx-footer-payments-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #9CA3AF;
  white-space: nowrap;
}

.ppx-footer-payments-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ppx-footer-payment-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

/* Footer bottom bar */
.ppx-footer-bottom {
  padding-top: 1rem;
  text-align: center;
}

.ppx-footer-copyright {
  font-size: 0.8125rem;
  color: #6B7280;
  margin: 0;
}
