/* Octio cookie-consent banner. Bottom-anchored, unobtrusive, matches the
   site's dark/cream palette. Equal-weight Accept/Decline (POPIA). */
.octio-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #15131a;
  color: #f4efe7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 40px -12px rgba(0, 0, 0, 0.5);
  animation: octioConsentUp 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes octioConsentUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.octio-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.octio-consent-text {
  flex: 1;
  min-width: 280px;
  margin: 0;
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(244, 239, 231, 0.85);
}
.octio-consent-link {
  color: #e07a35;
  text-decoration: underline;
}
.octio-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.octio-consent-btn {
  font-family: "General Sans", "Inter", system-ui, sans-serif;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}
/* Equal visual weight — neither button is suppressed (POPIA). */
.octio-consent-decline {
  background: transparent;
  color: #f4efe7;
  border-color: rgba(244, 239, 231, 0.4);
}
.octio-consent-decline:hover {
  border-color: #f4efe7;
  background: rgba(255, 255, 255, 0.06);
}
.octio-consent-accept {
  background: #e07a35;
  color: #15131a;
  border-color: #e07a35;
}
.octio-consent-accept:hover {
  background: #f0902e;
}
@media (max-width: 760px) {
  .octio-consent-inner {
    padding: 16px;
    gap: 14px;
  }
  .octio-consent-actions {
    width: 100%;
  }
  .octio-consent-btn {
    flex: 1;
  }
}
