/* =============================================================
   Footer — pneumatik24-theme
   ============================================================= */

.pn24-footer {
  margin-top: auto;
}

/* --- Footer Hauptbereich --- */
.pn24-footer-main {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 40px;
}

.pn24-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* --- Spalten-Grundstyle --- */
.pn24-footer-col {}

.pn24-footer-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* --- Spalte 1: Logo + Adresse --- */
.pn24-footer-logo {
  margin-bottom: 12px;
}
.pn24-footer-logo-img {
  max-width: 160px;
  max-height: 50px;
  width: auto;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.pn24-footer-site-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.pn24-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  font-style: italic;
}
.pn24-footer-address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
}

/* --- Spalte 2: Kontakt-Links --- */
.pn24-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pn24-footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.pn24-footer-links li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  stroke: var(--color-accent);
  opacity: 0.9;
}
.pn24-footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.pn24-footer-links a:hover {
  color: var(--color-accent);
}
.pn24-footer-hours span {
  color: rgba(255,255,255,0.6);
}
.pn24-footer-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}
.pn24-footer-cta:hover {
  color: #fff;
}

/* --- Spalte 3: Nav-Links --- */
.pn24-footer-links.menu {
  gap: 8px;
}
.pn24-footer-links.menu li {
  display: block;
}
.pn24-footer-links.menu li a {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
  padding: 2px 0;
}
.pn24-footer-links.menu li a:hover {
  color: #fff;
  padding-left: 6px;
}
/* WP wp_nav_menu erzeugt .menu class */
.pn24-footer-links.menu {
  padding: 0;
}

/* --- Spalte 4: Social + Newsletter --- */
.pn24-footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.pn24-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s, color 0.2s;
}
.pn24-social-link:hover {
  background: var(--color-accent);
  color: #fff;
}
.pn24-social-link svg {
  width: 18px;
  height: 18px;
}

.pn24-newsletter p {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 10px;
}
.pn24-newsletter-form {}
.pn24-newsletter-row {
  display: flex;
  gap: 0;
}
.pn24-newsletter-row input[type="email"] {
  flex: 1;
  padding: 10px 14px;
  font-size: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: #fff;
  border-radius: 3px 0 0 3px;
  outline: none;
}
.pn24-newsletter-row input[type="email"]::placeholder {
  color: rgba(255,255,255,0.4);
}
.pn24-newsletter-row input[type="email"]:focus {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.12);
}
.pn24-newsletter-row button {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.pn24-newsletter-row button:hover {
  background: var(--color-accent-hover);
}

/* --- Footer Bottom-Bar --- */
.pn24-footer-bottom {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
}
.pn24-footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pn24-payment-icons,
.pn24-shipping-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pn24-payment-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}
.pn24-payment-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 3px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.pn24-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* =============================================================
   Responsive Footer
   ============================================================= */
@media (max-width: 1024px) {
  .pn24-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 600px) {
  .pn24-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .pn24-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .pn24-copyright {
    white-space: normal;
  }
}
