/* Footer Styles — Lauffen WooCommerce */

/* Pre-Footer */
.lauffen-prefooter {
  background-color: var(--footer-pre-bg, #6c3a55);
  color: var(--white-color, #fff);
  padding: 2.5rem 0;
}

.lauffen-prefooter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.prefooter-empty {
  /* Leere Spalte fuer 4-Spalten-Layout */
}

.prefooter-title h3 {
  color: var(--white-color, #fff);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin: 0;
}

.prefooter-phone,
.prefooter-email {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.prefooter-phone a,
.prefooter-email a {
  color: var(--white-color, #fff);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.prefooter-phone a:hover,
.prefooter-email a:hover {
  text-decoration: underline;
}

.prefooter-phone i,
.prefooter-email i {
  color: var(--weissweine-1-color, #d19221);
  font-size: 1.4rem;
}

.prefooter-hint {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Hauptfooter */
.lauffen-mainfooter {
  background-color: var(--footer-bg, #fff);
  color: var(--black-color, #010101);
  padding: 3rem 2rem;
}

.lauffen-mainfooter-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
  color: var(--black-color, #010101);
}

.footer-col a {
  color: var(--black-color, #010101);
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

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

.footer-col ul li {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.footer-col address {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--black-color, #010101);
}

.footer-col address a {
  color: var(--black-color, #010101);
}

/* Logo + Socials */
.footer-col-logo img {
  width: 160px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  color: var(--black-color, #010101);
  font-size: 1.8rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-socials a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* Footer-Bottom (Partner) */
.lauffen-footer-bottom {
  background-color: var(--footer-bg, #fff);
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border-color, #d1d1d1);
}

.lauffen-footer-bottom h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 2rem;
  color: var(--black-color, #010101);
}

.footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.footer-partners a {
  display: inline-block;
}

.footer-partners img {
  display: block;
  max-height: 60px;
  width: auto;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .lauffen-prefooter-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .prefooter-empty {
    display: none;
  }

  .lauffen-mainfooter-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .lauffen-prefooter-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lauffen-mainfooter-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-partners {
    gap: 2rem;
  }
}
