/* Cookie-Banner — hanse-computing.de (Intelion-Design) */
.hc-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #0E2F33;
  color: #E8F0F2;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .9rem;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.hc-cookie-banner.show { transform: translateY(0); }
.hc-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hc-cookie-text { flex: 1 1 400px; }
.hc-cookie-text a { color: #7FD1E0; text-decoration: underline; }
.hc-cookie-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.hc-cookie-btn {
  padding: .6rem 1.4rem;
  border-radius: 99px;
  border: none;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, opacity .2s;
}
.hc-cookie-accept {
  background: #1C5E66;
  color: #fff;
}
.hc-cookie-accept:hover { background: #153f45; }
.hc-cookie-decline {
  background: transparent;
  color: #C2D4D8;
  border: 1px solid #3A5A60;
}
.hc-cookie-decline:hover { opacity: .8; }
@media (max-width: 768px) {
  .hc-cookie-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .hc-cookie-btns { justify-content: center; }
}
