/* ================================ Pfeiffer Rental - Footer Widget ================================ */
:root {
  --bg-tect: #E2B007;
  --bg-darktect: #D4A700;
}

.footer-pfeiffer-rental {
  margin-top: 2rem;
  text-align: center;
  font-family: "Comfortaa", Verdana, sans-serif;
}

.footer-pfeiffer-rental summary {
  list-style: none;
  cursor: pointer;
  display: inline-block;
  background-color: var(--bg-tect, #E2B007);
  color: #000;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  margin: 1rem 0;
}

.footer-pfeiffer-rental summary:hover {
  background-color: var(--bg-darktect, #D4A700);
  transform: translateY(-1px);
}

#pfeiffer-rental-list {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-radius: 6px;
  border: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 1000px;
  width: 90%;
  box-sizing: border-box;
}

.footer-pfeiffer-rental[open] #pfeiffer-rental-list {
  border: 2px solid var(--bg-tect, #E2B007);
  padding: 1.5rem;
  max-height: 1000px;
  background-color: rgba(226, 176, 7, 0.05);
}

#pfeiffer-rental-list li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#pfeiffer-rental-list li a:hover {
  color: var(--bg-tect, #E2B007);
  background-color: rgba(226, 176, 7, 0.1);
}

@media (max-width: 1000px) {
  #pfeiffer-rental-list {
    gap: 0.8rem;
  }
}

@media (max-width: 600px) {
  #pfeiffer-rental-list {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  #pfeiffer-rental-list li a {
    width: 100%;
    text-align: center;
  }
}