/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #111827;
  color: #ffffff;
  border-top: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 -8px 28px rgba(0,0,0,0.28);
}
.cookie-consent-content {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-consent-message { min-width: 0; }
.cookie-consent-title {
  margin: 0 0 4px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}
.cookie-consent-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.82);
}
.cookie-consent-text a {
  color: #ffffff;
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}
.cookie-consent-floating-settings {
  position: fixed;
  right: 12px;
  bottom: 12px;
  z-index: 1070;
  border: 1px solid var(--pvg-border);
  background: var(--pvg-surface);
  color: var(--pvg-ink);
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--pvg-radius-sm) !important;
  cursor: pointer;
  transition: background 150ms ease;
}
.cookie-consent-floating-settings:hover,
.cookie-consent-floating-settings:focus {
  background: var(--pvg-surface-raised);
}
.cookie-settings-link {
  border: 0;
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .cookie-consent-content { padding: 12px 14px 14px; }
  .cookie-consent-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .cookie-consent-actions .btn { width: 100%; min-width: 0; }
}
@media (min-width: 768px) {
  .cookie-consent-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
  }
  .cookie-consent-actions {
    justify-content: flex-end;
    margin-top: 0;
    flex-wrap: nowrap;
  }
  .cookie-consent-actions .btn { white-space: nowrap; }
}
