/* BX Ventures — Cookie Consent Banner — dark theme only, scoped, no custom properties */

#bxv-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #050f12;
  border-top: 1px solid #2daaff33;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.55);
  padding: 16px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: #f0f9f6;
  line-height: 1.5;
}

/* Hidden utility — applied by JS after accept/reject */
#bxv-cookie-banner.bxv-cookie-banner--hidden,
.bxv-cookie-banner--hidden {
  display: none;
}

/* Inner layout container */
#bxv-cookie-banner .bxv-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Message text */
#bxv-cookie-banner .bxv-cookie-banner__message {
  flex: 1;
  color: #f0f9f6;
  margin: 0;
}

/* "Learn more" link */
#bxv-cookie-banner .bxv-cookie-banner__link {
  color: #2daaff;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: 'Outfit', sans-serif;
}

#bxv-cookie-banner .bxv-cookie-banner__link:hover,
#bxv-cookie-banner .bxv-cookie-banner__link:focus {
  color: #2daaff;
  opacity: 0.85;
  outline: none;
}

/* Button group */
#bxv-cookie-banner .bxv-cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-shrink: 0;
}

/* Base button styles */
#bxv-cookie-banner .bxv-cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
  flex: 1;
}

/* Accept button — primary action */
#bxv-cookie-banner .bxv-cookie-banner__btn--accept {
  background-color: #00e6a0;
  color: #0a1a1f;
  border: 2px solid #00e6a0;
}

#bxv-cookie-banner .bxv-cookie-banner__btn--accept:hover,
#bxv-cookie-banner .bxv-cookie-banner__btn--accept:focus {
  opacity: 0.88;
  outline: none;
}

/* Reject button — secondary action */
#bxv-cookie-banner .bxv-cookie-banner__btn--reject {
  background-color: transparent;
  color: #f0f9f6;
  border: 2px solid #8a9ba8;
}

#bxv-cookie-banner .bxv-cookie-banner__btn--reject:hover,
#bxv-cookie-banner .bxv-cookie-banner__btn--reject:focus {
  border-color: #f0f9f6;
  outline: none;
}

/* ── Desktop layout (>= 768px) ── */
@media (min-width: 768px) {
  #bxv-cookie-banner .bxv-cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

  #bxv-cookie-banner .bxv-cookie-banner__btn {
    flex: none;
  }
}
