/* ── Cookie Consent Banner ────────────────────────────────── */

.cc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a18;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -8px 32px rgba(0,0,0,.35);
}

.cc-bar.cc-visible {
  transform: translateY(0);
}

.cc-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cc-bar__text {
  flex: 1;
  min-width: 280px;
}

.cc-bar__title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 6px;
}

.cc-bar__desc {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

.cc-bar__desc a {
  color: var(--accent, #EF4F3E);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-bar__desc a:hover {
  color: #fff;
}

.cc-bar__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: inherit;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: all .15s;
}

.cc-btn--accept {
  background: var(--accent, #EF4F3E);
  color: #fff;
  border-color: var(--accent, #EF4F3E);
}

.cc-btn--accept:hover {
  background: #d43e2f;
  border-color: #d43e2f;
}

.cc-btn--decline {
  background: transparent;
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.25);
}

.cc-btn--decline:hover {
  color: #fff;
  border-color: rgba(255,255,255,.6);
}

/* Zeitplanr placeholder (shown when consent is missing) */
.cc-placeholder {
  background: #f5f3ef;
  border: 1.5px dashed #ccc;
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  color: #5a5a58;
  font-size: .875rem;
  line-height: 1.7;
}

.cc-placeholder p { margin: 0 0 12px; }

.cc-placeholder button {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: #EF4F3E;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-size: .75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}

.cc-placeholder button:hover { background: #d43e2f; }

/* Mobile */
@media (max-width: 640px) {
  .cc-bar__inner {
    padding: 0 20px;
    gap: 16px;
  }
  .cc-bar__actions {
    width: 100%;
  }
  .cc-btn {
    flex: 1;
    justify-content: center;
  }
}
