/* ===========================
   Cookie Consent Banner
   =========================== */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  color: #f0f0f0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
  font-size: 0.875rem;
  line-height: 1.6;
}

.consent-banner--hidden {
  display: none;
}

.consent-banner__text {
  flex: 1 1 260px;
}

.consent-banner__text a {
  color: #7ecfff;
  text-decoration: underline;
}

.consent-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.consent-btn {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.consent-btn:hover {
  opacity: 0.85;
}

.consent-btn--accept {
  background: #2563eb;
  color: #fff;
}

.consent-btn--decline {
  background: transparent;
  color: #f0f0f0;
  border: 1px solid #666;
}

@media (max-width: 480px) {
  .consent-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .consent-banner__actions {
    width: 100%;
  }

  .consent-btn {
    flex: 1;
    text-align: center;
  }
}
