.cookie-consent {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(8, 35, 52, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink, #0a1d2d);
  box-shadow: 0 22px 70px rgba(8, 35, 52, 0.24);
  font: 15px/1.5 "Manrope", "Sora", sans-serif;
  backdrop-filter: blur(16px);
}
.cookie-consent[hidden],
.cookie-consent [hidden] { display: none !important; }
.cookie-consent-copy > strong { display: block; margin-bottom: 6px; font-size: 1.05rem; }
.cookie-consent-copy p { max-width: 760px; margin: 0 0 6px; color: var(--muted, #5f7080); font-size: 0.9rem; }
.cookie-consent-copy a { color: var(--teal, #0b7a65); font-weight: 800; }
.cookie-consent-details { display: grid; gap: 9px; margin-top: 14px; }
.cookie-consent-details > label,
.cookie-consent-essential { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0; padding: 11px 13px; border: 1px solid rgba(8, 35, 52, 0.12); border-radius: 14px; background: rgba(246, 241, 232, 0.64); }
.cookie-consent-details strong,
.cookie-consent-details small,
.cookie-consent-details span { display: block; }
.cookie-consent-details small,
.cookie-consent-essential span { margin-top: 2px; color: var(--muted, #5f7080); font-size: 0.76rem; font-weight: 500; }
.cookie-consent-details input { width: 22px; height: 22px; min-height: 0; margin: 0; accent-color: var(--teal, #0b7a65); flex: 0 0 auto; }
.cookie-consent-actions { display: flex; align-items: center; gap: 9px; }
.cookie-consent-actions .button { width: auto; min-width: 0; white-space: nowrap; }
.cookie-preferences-shortcut { position: fixed; z-index: 9000; bottom: 12px; left: 12px; padding: 7px 10px; border: 1px solid rgba(8, 35, 52, 0.2); border-radius: 999px; background: rgba(255, 255, 255, 0.94); color: var(--muted, #5f7080); font: 700 0.72rem/1.2 "Manrope", "Sora", sans-serif; cursor: pointer; box-shadow: 0 8px 22px rgba(8, 35, 52, 0.1); }
@media (max-width: 760px) {
  .cookie-consent { right: 12px; bottom: 12px; left: 12px; grid-template-columns: 1fr; width: auto; max-height: calc(100vh - 24px); padding: 17px; overflow-y: auto; }
  .cookie-consent-actions { flex-direction: column-reverse; align-items: stretch; }
  .cookie-consent-actions .button { width: 100%; }
  .cookie-consent-details > label,
  .cookie-consent-essential { align-items: flex-start; }
}
