/* VRKültür — çerez bildirimi (harici kütüphane yok) */
.cookie-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(15, 15, 15, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-consent-overlay.is-visible {
  display: flex;
}
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: #0f0f0f;
  color: #f6fcfc;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  font-size: 0.95rem;
  line-height: 1.45;
  max-height: 45vh;
  overflow-y: auto;
}
.cookie-consent-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
  justify-content: space-between;
}
.cookie-consent-banner p {
  margin: 0 0 0.5rem;
  flex: 1 1 320px;
}
.cookie-consent-banner a {
  color: #f6fcfc;
  text-decoration: underline;
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-consent-actions button {
  cursor: pointer;
  border: 1px solid #f6fcfc;
  background: transparent;
  color: #f6fcfc;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 2px;
}
.cookie-consent-actions button:hover,
.cookie-consent-actions button:focus {
  background: #f6fcfc;
  color: #0f0f0f;
}
.cookie-consent-actions .cookie-consent-btn--primary {
  background: #f6fcfc;
  color: #0f0f0f;
}
.cookie-consent-actions .cookie-consent-btn--primary:hover,
.cookie-consent-actions .cookie-consent-btn--primary:focus {
  background: #e0eaea;
}
.cookie-consent-panel {
  background: #fff;
  color: #0f0f0f;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}
.cookie-consent-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
.cookie-consent-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8e8e8;
}
.cookie-consent-row:last-of-type {
  border-bottom: none;
}
.cookie-consent-row label {
  flex: 1;
}
.cookie-consent-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}
.cookie-consent-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-consent-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  transition: 0.2s;
}
.cookie-consent-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
}
.cookie-consent-switch input:checked + .cookie-consent-slider {
  background: #0f0f0f;
}
.cookie-consent-switch input:checked + .cookie-consent-slider:before {
  transform: translateX(22px);
}
.cookie-consent-switch input:disabled + .cookie-consent-slider {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-consent-panel-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}
.cookie-consent-panel-actions button {
  cursor: pointer;
  border: 1px solid #0f0f0f;
  background: #fff;
  color: #0f0f0f;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
}
.cookie-consent-panel-actions .cookie-consent-btn--save {
  background: #0f0f0f;
  color: #fff;
}
body.cookie-consent-hidden .cookie-consent-banner {
  display: none;
}
.skip-link:focus {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  clip: auto;
  width: auto;
  height: auto;
  outline: 2px solid #fff;
}
