/* ============================================================
   BUERO WUNDERDING – Cookie Banner (DSGVO-konform)
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 2px solid var(--black);
  padding: 24px 52px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-text { flex: 1; }

.cookie-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.cookie-desc {
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body);
}
.cookie-desc a {
  color: var(--orange);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  align-items: center;
}

.cbtn-accept {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 20px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.cbtn-accept:hover { background: #333; }

.cbtn-essential {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1px solid #ddd;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s;
}
.cbtn-essential:hover { border-color: var(--black); }

.cbtn-decline {
  background: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 12px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
}
.cbtn-decline:hover { color: var(--black); }

@media (max-width: 900px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .cookie-actions {
    flex-wrap: wrap;
    width: 100%;
  }
  .cbtn-accept, .cbtn-essential {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}
