/*
 * w1w24.de - Cookie-/Datenschutz-Hinweis (Pack 61)
 * Programmierung & Umsetzung: W. Welz | Copyright (c) W. Welz, w1w24.de
 */

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffffff;
  border-top: 2px solid var(--orange, #e66f00);
  box-shadow: 0 -2px 14px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-consent.is-visible {
  transform: translateY(0);
}

.cookie-consent__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cookie-consent__text {
  margin: 0;
  flex: 1;
  min-width: 240px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text, #252525);
}

.cookie-consent__text a {
  color: var(--orange, #e66f00);
  text-decoration: underline;
}

.cookie-consent__btn {
  flex-shrink: 0;
  background: var(--orange, #e66f00);
  color: #fff;
  border: 0;
  border-radius: var(--radius-md, 6px);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus {
  background: var(--orange-warm, #ea580c);
}

@media (max-width: 560px) {
  .cookie-consent__inner { padding: 12px 14px; gap: 10px; }
  .cookie-consent__btn { width: 100%; }
}
