.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-consent {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 0.75rem;
  z-index: 100;
  width: min(980px, calc(100% - 1rem));
  transform: translateX(-50%);
  padding: 0.65rem 0.85rem;
  background: rgba(15, 42, 107, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(2, 6, 23, 0.28);
  align-items: center;
  justify-content: center;
}

.cookie-consent-inner {
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.8rem;
}

.cookie-consent-text {
  color: #e2e8f0;
  font-size: 0.76rem;
  line-height: 1.4;
  font-weight: 600;
  flex: 1 1 420px;
  min-width: 0;
  text-align: left;
  margin: 0;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn-accept {
  background: var(--primary, #ea580c);
  color: #fff;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
}

.cookie-btn-accept:hover {
  filter: brightness(0.85);
}

.cookie-btn-reject {
  background: transparent;
  color: #94a3b8;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-btn-reject:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.cookie-link {
  color: #93c5fd;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

@media (max-width: 760px) {
  .cookie-consent {
    bottom: 0.5rem;
    width: calc(100% - 0.75rem);
    padding: 0.6rem 0.7rem;
    border-radius: 18px;
  }

  .cookie-consent-inner {
    align-items: stretch;
    gap: 0.5rem;
  }

  .cookie-consent-text {
    flex: 1 1 100%;
    font-size: 0.73rem;
    line-height: 1.38;
  }

  .cookie-consent-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-consent-actions > * {
    flex: 1 1 auto;
    text-align: center;
  }
}
