/* Drapery Life — Banner de consentimiento de cookies. Depende de tokens.css. */
.dl-consent {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-toast);
  display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg); border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}
.dl-consent[hidden] { display: none; }
.dl-consent-text { flex: 1 1 320px; font-size: var(--text-sm); color: var(--color-text); line-height: 1.45; }
.dl-consent-actions { display: flex; gap: var(--space-sm); flex: 0 0 auto; }

@media (max-width: 640px) {
  .dl-consent { flex-direction: column; align-items: stretch; padding: var(--space-md); }
  .dl-consent-actions { width: 100%; }
  .dl-consent-actions .dl-btn { flex: 1; }
}
