/* fonts.css — локальные шрифты без Google Fonts */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Lora-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Lora-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Lora-Italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Nunito-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/Nunito-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Nunito-Bold.woff2') format('woff2');
}

/* ── Cookie-баннер ─────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1c1a14;
  color: #e4dcc8;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transform: translateY(0);
  transition: transform 0.35s ease;
}
#cookie-banner.hidden {
  transform: translateY(110%);
}
#cookie-banner p {
  flex: 1;
  min-width: 220px;
  color: #b5a98e;
}
#cookie-banner a {
  color: #8dd455;
  text-decoration: underline;
  text-underline-offset: 2px;
}
#cookie-banner a:hover {
  color: #6ab033;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept {
  background: #3b6d11;
  color: #fff;
}
.cookie-btn-decline {
  background: rgba(255,255,255,0.08);
  color: #b5a98e;
}
