/* Consent banner for the first-party tracker (tracking.js).
   Shown only to UK / EEA / Switzerland visitors. */
.oobit-consent {
  position: fixed;
  z-index: 10000;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(11, 16, 32, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(11, 16, 32, 0.4);
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}
.oobit-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.oobit-consent.is-rtl { direction: rtl; }

.oobit-consent__copy { flex: 1 1 auto; min-width: 0; }
.oobit-consent__copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.oobit-consent__copy p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.66);
}
.oobit-consent__copy a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.oobit-consent__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.oobit-consent__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  color: #0b1020;
  font: 600 13px/1 Inter, system-ui, sans-serif;
  white-space: nowrap;
  transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}
.oobit-consent__btn:hover { transform: translateY(-1px); }
.oobit-consent__btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}
.oobit-consent__btn--ghost:hover { background: rgba(255, 255, 255, 0.18); }

@media (max-width: 640px) {
  .oobit-consent {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 15px 16px;
    border-radius: 18px;
  }
  .oobit-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .oobit-consent__btn { width: 100%; padding: 12px 14px; }
}
/* keep it clear of the sticky CTA bar on mobile */
@media (max-width: 767px) {
  body.oobit-af .oobit-consent { bottom: 84px; }
}
