/* Cookie consent banner for prokofevabt.ru */
.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  background: rgba(15, 23, 42, 0.52);
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
}
.cookie-consent-overlay.is-visible { display: flex; }
.cookie-consent-box {
  width: min(920px, 100%);
  background: #ffffff;
  color: #111827;
  border-radius: 22px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
  padding: 24px;
  font-family: Arial, TildaSans, sans-serif;
  box-sizing: border-box;
}
.cookie-consent-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
}
.cookie-consent-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #374151;
}
.cookie-consent-text a {
  color: #111827;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.cookie-consent-btn {
  border: 0;
  border-radius: 999px;
  padding: 13px 19px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}
.cookie-consent-accept {
  background: #111827;
  color: #ffffff;
}
.cookie-consent-decline {
  background: #f3f4f6;
  color: #111827;
}
@media (max-width: 560px) {
  .cookie-consent-overlay { padding: 10px; }
  .cookie-consent-box { padding: 18px; border-radius: 18px; }
  .cookie-consent-title { font-size: 20px; }
  .cookie-consent-actions { flex-direction: column; }
  .cookie-consent-btn { width: 100%; }
}
