/* ============================================================
   UKBPM V2 — cookie-banner.css
   PECR-compliant GA4 Consent Mode v2 banner
   ============================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: #0b2540;
  border-top: 2px solid #00559f;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-text {
  flex: 1;
  min-width: 280px;
}
.cookie-banner-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner-text a {
  color: #00a2ff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text strong { color: #ffffff; }

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.cookie-btn-accept {
  background: #00a2ff;
  color: #003366;
  border-color: #00a2ff;
}
.cookie-btn-accept:hover {
  background: #0090e8;
  border-color: #0090e8;
  color: #ffffff;
}
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.35);
}
.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  color: #ffffff;
}

@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}
