/* ALUMIO Cookie Banner — GDPR-compliant */
#alumio-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  border-radius: 16px;
  background: #0d0e10;
  color: #f5f5f7;
  box-shadow: 0 16px 48px rgba(17, 18, 24, 0.32);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

#alumio-cookie-banner.acb-visible {
  transform: translateY(0);
  opacity: 1;
}

#alumio-cookie-banner.acb-dismissed {
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
}

.acb-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.acb-text {
  flex: 1 1 320px;
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.acb-text strong {
  font-weight: 700;
}

.acb-link {
  color: #f5f5f7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.acb-link:hover {
  opacity: 0.85;
}

.acb-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.acb-btn {
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}

.acb-btn-primary {
  background: #ffffff;
  color: #0d0e10;
}

.acb-btn-primary:hover {
  background: #e8eaef;
  transform: translateY(-1px);
}

.acb-btn-secondary {
  background: transparent;
  color: #f5f5f7;
  border-color: rgba(255, 255, 255, 0.32);
}

.acb-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 620px) {
  #alumio-cookie-banner {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 16px 16px 18px;
    border-radius: 14px;
  }
  .acb-inner {
    gap: 14px;
  }
  .acb-text {
    flex: 1 1 100%;
    font-size: 0.84rem;
  }
  .acb-buttons {
    flex: 1 1 100%;
  }
  .acb-btn {
    flex: 1 1 auto;
    padding: 12px 14px;
  }
}
