/* Vireo cookie-consent banner — KVKK/GDPR gate for GA4 Consent Mode v2 (default-denied until the
   visitor accepts/rejects here). Same contract as the Fusapp/FusappGo fx- and MarbleMap mm-
   banners but restyled to the Vireo palette (Vireo Red #CF2129 accent, Ink #040707 — see
   custom.css :root tokens) and namespaced vr- per this theme.
   Only linked in _Layout.cshtml when Analytics:GA4 has a measurement ID configured. */
.vr-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  padding: 16px;
}
.vr-cookie-consent[hidden] {
  display: none;
}
.vr-cookie-consent-inner {
  max-width: 720px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #f6ccce; /* --vireo-red-100 */
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(4, 7, 7, 0.18); /* Ink #040707 */
  padding: 20px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.vr-cookie-consent-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 14px;
  line-height: 1.5;
  color: #040707; /* Ink */
}
.vr-cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
.vr-cookie-btn {
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.vr-cookie-btn-ghost {
  background: transparent;
  border-color: #f6ccce; /* --vireo-red-100 */
  color: #040707;
}
.vr-cookie-btn-ghost:hover {
  background: #fbeaeb; /* --vireo-red-50 */
}
.vr-cookie-btn-solid {
  background: #cf2129; /* --vireo-red-500 (brand) */
  color: #ffffff;
}
.vr-cookie-btn-solid:hover {
  background: #b31c23; /* --vireo-red-600 (hover) */
}
