/* Cookie consent bar — oknaminsk24 */
.ok-cookie {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 13000;
  display: none;
  font-family: "Manrope", system-ui, sans-serif;
}

.ok-cookie.is-visible {
  display: block;
}

.ok-cookie__card {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(28, 52, 72, 0.12);
  box-shadow: 0 18px 42px rgba(12, 24, 36, 0.18);
  backdrop-filter: blur(12px);
}

.ok-cookie__text {
  margin: 0;
  flex: 1;
  color: #152029;
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 550;
}

.ok-cookie__text a {
  color: #149a74;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ok-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: none;
}

.ok-cookie__btn {
  appearance: none;
  border: 0;
  border-radius: 12px;
  min-height: 42px;
  padding: 0.55rem 1rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
}

.ok-cookie__btn--accept {
  background: linear-gradient(90deg, #31a375, #19b27f);
  color: #fff;
  box-shadow: 0 8px 18px rgba(25, 178, 127, 0.28);
}

.ok-cookie__btn--accept:hover {
  filter: brightness(1.04);
}

.ok-cookie__btn--link {
  background: #eef2f6;
  color: #1f3a52;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 720px) {
  .ok-cookie {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
  }

  .ok-cookie__card {
    flex-direction: column;
    align-items: stretch;
    padding: 0.9rem;
  }

  .ok-cookie__actions {
    width: 100%;
  }

  .ok-cookie__btn {
    flex: 1;
    justify-content: center;
  }
}
