/* Cookie banner + form + map fallback (no external assets) */
.site-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10050;
  background: rgba(33, 9, 14, 0.97);
  color: #fff;
  padding: 1rem 1.25rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  font-size: 0.95rem;
  display: none;
}
.site-cookie-banner.is-visible {
  display: block;
}
.site-cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.site-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-cookie-actions button {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  padding: 0.45rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.site-cookie-actions button.site-cookie-primary {
  background: #faa307;
  border-color: #faa307;
  color: #21090e;
  font-weight: 600;
}
.site-cookie-panel {
  display: none;
  width: 100%;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.site-cookie-panel.is-open {
  display: block;
}
.site-cookie-panel label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.35rem 0;
}
.site-contact-form {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(33, 9, 14, 0.12);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
.site-contact-form .form-label {
  color: #21090e;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.site-contact-form .form-control {
  border-radius: 6px;
  border: 1px solid rgba(33, 9, 14, 0.2);
  background: #fff;
  color: #21090e;
}
.site-contact-form .form-check-label {
  color: #21090e;
  font-size: 0.85rem;
}
.site-form-msg {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: rgba(250, 163, 7, 0.15);
  border: 1px solid #faa307;
  color: #21090e;
  font-size: 0.9rem;
}
.site-form-msg.is-error {
  background: rgba(220, 53, 69, 0.2);
  border-color: #dc3545;
}
.site-form-msg a {
  color: #a56b00;
  font-weight: 600;
  text-decoration: underline;
}
.site-map-fallback {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #341219 0%, #21090e 100%);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}
.site-map-fallback .site-map-card {
  max-width: 520px;
  color: #fff;
}
.site-map-fallback .site-map-card h3 {
  color: #faa307;
  margin-bottom: 0.75rem;
}
.site-legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}
.site-legal-page h1 {
  margin-bottom: 1rem;
}
.site-legal-page h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}
.site-legal-page p,
.site-legal-page li {
  line-height: 1.6;
}
.site-footer-links {
  text-align: center;
  margin-bottom: 0.5rem;
}
.site-footer-links a {
  color: inherit;
  margin: 0 0.75rem;
  text-decoration: underline;
}
