/* Voltarik cookie consent banner + settings panel */
.vc-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 26, 48, 0.55);
  z-index: 9998;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}
@media (min-width: 640px) {
  .vc-overlay { align-items: center; }
}

.vc-card {
  background: #ffffff;
  border-radius: 14px;
  max-width: 640px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  font-family: 'Inter', system-ui, sans-serif;
  color: #0C1A30;
}

.vc-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
}

.vc-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #4b5563;
  text-align: center;
  margin: 0 0 24px;
}

.vc-text a {
  color: #0C1A30;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.vc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.vc-btn {
  flex: 1 1 auto;
  min-width: 150px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.15s ease;
  font-family: inherit;
}
.vc-btn:hover { opacity: 0.9; }

.vc-btn-primary {
  background: #1f2937;
  color: #ffffff;
}
.vc-btn-secondary {
  background: #f1f2f4;
  color: #0C1A30;
}
.vc-btn-outline {
  background: #ffffff;
  color: #0C1A30;
  border-color: #d1d5db;
}

/* --- Settings panel --- */
.vc-settings-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  text-align: left;
}
.vc-settings-row:last-of-type { border-bottom: none; }

.vc-settings-label {
  font-weight: 600;
  font-size: 0.9375rem;
  margin: 0 0 4px;
}
.vc-settings-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.vc-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.vc-switch[aria-checked="true"] { background: #0070FF; }
.vc-switch[disabled] { background: #9ca3af; cursor: not-allowed; opacity: 0.7; }
.vc-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  transition: transform 0.15s ease;
}
.vc-switch[aria-checked="true"]::after { transform: translateX(20px); }

/* --- Reopen tab (bottom-left, always available after a choice is made) --- */
.vc-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9997;
  background: #0C1A30;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
.vc-reopen:hover { opacity: 0.9; }

.vc-hidden { display: none !important; }
