/* ── VerbaSave Cookie Consent Banner ───────────────────────────────────── */

#vs-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  font-family: 'Inter', 'Nunito', system-ui, sans-serif;
  font-size: 13px;
  color: #c8c8d8;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}

#vs-cookie-banner.vs-cb-visible {
  transform: translateY(0);
}

/* on mobile push above bottom nav if present */
@media (max-width: 680px) {
  #vs-cookie-banner {
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    bottom: 56px; /* above mobile nav */
  }
}

#vs-cookie-text {
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}

#vs-cookie-text a {
  color: #4F8EF7;
  text-decoration: underline;
}

.vs-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.vs-cb-btn {
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}

.vs-cb-btn:active {
  transform: scale(0.97);
}

.vs-cb-accept {
  background: #4F8EF7;
  color: #fff;
}

.vs-cb-accept:hover { opacity: .88; }

.vs-cb-reject {
  background: transparent;
  color: #c8c8d8;
  border: 1px solid rgba(255,255,255,0.18);
}

.vs-cb-reject:hover { background: rgba(255,255,255,0.06); }

/* ── Revoke button (always visible, bottom-left) ─────────────────────── */
#vs-cookie-revoke {
  position: fixed;
  bottom: 72px; /* above mobile nav on mobile */
  left: 12px;
  z-index: 9998;
  background: rgba(26,26,46,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #8888a8;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  display: none; /* shown after first choice made */
  transition: color .15s, background .15s;
  backdrop-filter: blur(8px);
}

#vs-cookie-revoke:hover {
  color: #c8c8d8;
  background: rgba(26,26,46,1);
}

@media (min-width: 681px) {
  #vs-cookie-revoke {
    bottom: 16px;
  }
}
