/* beautifulista - Cookie-Consent-Banner
   Farben kommen aus den Marken-Variablen in style.css (mit Fallback). */
#bf-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: var(--ivory, #FAF7F0);
  border-top: 1px solid var(--gold, #D4AF37);
  box-shadow: 0 -2px 16px rgba(28, 28, 28, 0.12);
  padding: 18px 20px;
  font-family: 'Raleway', sans-serif;
  color: var(--anthrazit, #1C1C1C);
}
#bf-consent .bf-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
#bf-consent p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  flex: 1 1 320px;
  min-width: 260px;
}
#bf-consent a {
  color: var(--dark-green, #4C5A47);
  text-decoration: underline;
}
#bf-consent .bf-btns {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
#bf-consent button {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  border: 1px solid var(--sage, #6E7B67);
  transition: background 0.2s ease, color 0.2s ease;
}
#bf-consent .bf-accept {
  background: var(--sage, #6E7B67);
  color: var(--white, #FFFFFF);
}
#bf-consent .bf-accept:hover {
  background: var(--dark-green, #4C5A47);
  border-color: var(--dark-green, #4C5A47);
}
#bf-consent .bf-decline {
  background: transparent;
  color: var(--dark-green, #4C5A47);
}
#bf-consent .bf-decline:hover {
  background: rgba(110, 123, 103, 0.12);
}
@media (max-width: 600px) {
  #bf-consent .bf-inner {
    flex-direction: column;
    text-align: center;
  }
  #bf-consent .bf-btns {
    width: 100%;
    justify-content: center;
  }
}
