/* ============================================================
   6. GESTIÓN DE COOKIES (Banner de consentimiento)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--grey-900, #111);
  color: #fff;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transition: bottom 0.5s var(--ease, cubic-bezier(0.16, 1, 0.3, 1));
  will-change: bottom;
}

.cookie-banner.is-visible {
  bottom: 0;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--green, #4ade80);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1rem;
  }
  
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-end;
  }
}