/* ── Cookie Consent Banner ─────────────────────────────────────── */
#aip-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a2a3a;
  color: #f0f4f8;
  border-top: 3px solid #3a8fc1;
  padding: 0;
  font-family: inherit;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  animation: ccb-slide-up 0.3s ease;
}

@keyframes ccb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.ccb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ccb-text {
  flex: 1 1 300px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #d8e6f0;
}

.ccb-link {
  color: #7ecbf5;
  text-decoration: underline;
  white-space: nowrap;
}

.ccb-link:hover {
  color: #fff;
}

.ccb-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.ccb-btn {
  padding: 9px 22px;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.ccb-btn:active {
  transform: scale(0.97);
}

.ccb-accept {
  background: #3a8fc1;
  color: #fff;
}

.ccb-accept:hover {
  background: #2e78a8;
}

.ccb-decline {
  background: transparent;
  color: #a8c8e0;
  border: 1.5px solid #a8c8e0;
}

.ccb-decline:hover {
  background: rgba(168,200,224,0.12);
  color: #fff;
  border-color: #fff;
}

@media (max-width: 600px) {
  .ccb-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ccb-btns {
    width: 100%;
  }
  .ccb-btn {
    flex: 1;
    text-align: center;
  }
}
