/* ============================================================
   Animeverse — Cookie Consent Banner Styles
   (shared/cookie-consent.css)
   ============================================================ */

.av-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--av-surface, #1b1035);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--av-text, #f4f2fa);
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.35);
}

.av-cookie-banner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--av-text-muted, #a89bc4);
  flex: 1;
  min-width: 240px;
}

.av-cookie-banner a {
  color: var(--av-text, #f4f2fa);
  text-decoration: underline;
}

.av-cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.av-cookie-actions button {
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
  cursor: pointer;
}

#av-cookie-reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--av-text, #f4f2fa);
}

#av-cookie-accept {
  background: var(--av-accent, #6d28d9);
  color: white;
  font-weight: 600;
}

@media (max-width: 480px) {
  .av-cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }
  .av-cookie-actions {
    justify-content: stretch;
  }
  .av-cookie-actions button {
    flex: 1;
  }
}
