/**
 * sh-consent.css — Banner e modal de consentimento LGPD do Shop (sh-consent.js).
 * Paleta da loja: indigo #4f46e5, ink #13111b, fundo claro, fonte Satoshi.
 */
.sh-consent {
  position: fixed; inset-inline: 16px; bottom: 16px; z-index: 9998;
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  max-width: 960px; margin: 0 auto; padding: 16px 20px;
  background: #ffffff; color: #13111b; border: 1px solid #e3def0; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(19, 17, 27, .16);
  font-family: 'Satoshi', system-ui, sans-serif; font-size: 14px; line-height: 1.5;
}
.sh-consent__texto { flex: 1 1 320px; color: #544f5b; }
.sh-consent__texto strong { color: #13111b; }
.sh-consent__texto a { color: #4f46e5; text-decoration: underline; font-weight: 700; }
.sh-consent__acoes { display: flex; flex-wrap: wrap; gap: 8px; }
.sh-consent__btn {
  padding: 9px 16px; border-radius: 10px; border: 1px solid #e3def0;
  background: transparent; color: #13111b; font: inherit; font-weight: 700; cursor: pointer;
}
.sh-consent__btn:hover { border-color: #4f46e5; }
.sh-consent__btn--primario { background: #4f46e5; border-color: #4f46e5; color: #ffffff; }
.sh-consent__btn--primario:hover { filter: brightness(1.08); }

.sh-consent-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 16px;
  background: rgba(19, 17, 27, .5);
}
.sh-consent-modal__card {
  width: 100%; max-width: 520px; padding: 24px; background: #ffffff; color: #13111b;
  border: 1px solid #e3def0; border-radius: 16px; box-shadow: 0 20px 60px rgba(19, 17, 27, .30);
  font-family: 'Satoshi', system-ui, sans-serif;
}
.sh-consent-modal__titulo { margin: 0 0 16px; font-size: 18px; font-weight: 800; }
.sh-consent-modal__item {
  display: flex; gap: 10px; align-items: flex-start; padding: 10px 0;
  border-bottom: 1px solid #efeaf7; font-size: 14px; color: #544f5b; cursor: pointer;
}
.sh-consent-modal__item strong { color: #13111b; }
.sh-consent-modal__item input { margin-top: 3px; accent-color: #4f46e5; }
.sh-consent-modal__acoes { display: flex; justify-content: flex-end; gap: 8px; margin-top: 18px; }

@media (max-width: 640px) {
  .sh-consent { inset-inline: 8px; bottom: 8px; padding: 14px; }
  .sh-consent__acoes { width: 100%; }
  .sh-consent__btn { flex: 1 1 auto; }
}
