/* КОНТАНТА — информирование о файлах cookie.
   Оформление повторяет визуальную систему публичной части сайта,
   базовая вёрстка страниц не затрагивается. */
.cookie-panel {
  position: fixed;
  z-index: 60;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  max-width: 1160px;
  margin: auto;
  padding: 22px 24px;
  border: 1px solid var(--line, #2a3854);
  border-radius: 5px;
  background: #111b2d;
  color: var(--text, #f4f5f7);
  font-family: "Liberation Serif", "Nimbus Roman No9 L", serif;
  font-size: 15px;
  line-height: 1.5;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}
.cookie-panel:focus { outline: none; }
.cookie-panel__copy { max-width: 760px; }
.cookie-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold, #d3b16c);
  font-size: 19px;
}
.cookie-panel p { margin: 0 0 6px; }
.cookie-panel a { color: var(--gold, #d3b16c); }
.cookie-panel__actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}
.cookie-panel button {
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid var(--line, #2a3854);
  border-radius: 5px;
  background: var(--panel, #131d30);
  color: var(--text, #f4f5f7);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
/* Кнопки принятия и отказа намеренно оформлены равнозначно:
   ни одна из них не выделена как «основная». */
.cookie-panel button:hover { border-color: var(--gold, #d3b16c); }
.cookie-panel button:focus-visible,
.cookie-settings:focus-visible {
  outline: 3px solid var(--gold, #d3b16c);
  outline-offset: 2px;
}
.cookie-settings {
  position: fixed;
  z-index: 59;
  left: 12px;
  bottom: 10px;
  padding: 8px 11px;
  border: 1px solid var(--line, #2a3854);
  border-radius: 4px;
  background: #111b2d;
  color: var(--muted, #b5bdcb);
  font-family: "Liberation Serif", "Nimbus Roman No9 L", serif;
  font-size: 12px;
  opacity: 0.85;
  cursor: pointer;
}
.cookie-settings:hover {
  border-color: var(--gold, #d3b16c);
  color: var(--gold, #d3b16c);
  opacity: 1;
}
.cookie-open .cookie-settings { display: none; }
@media (max-width: 760px) {
  .cookie-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: block;
    padding: 18px;
  }
  .cookie-panel__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }
  .cookie-panel button { width: 100%; }
}
