.commerce-consent {
  position: fixed;
  z-index: 1200;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(680px, calc(100vw - 2rem));
  padding: 1rem 1.1rem;
  border: 1px solid rgba(118, 83, 55, 0.2);
  border-radius: 1rem;
  color: #302720;
  background: rgba(252, 248, 239, 0.96);
  box-shadow: 0 18px 60px rgba(48, 36, 27, 0.18);
  backdrop-filter: blur(14px);
}
.commerce-consent p { margin: 0; font-size: 0.84rem; line-height: 1.6; }
.commerce-consent a { color: #725037; }
.commerce-consent div { display: flex; gap: 0.55rem; }
.commerce-consent button { min-height: 2.5rem; padding: 0.55rem 0.8rem; border: 1px solid #7a573d; border-radius: 999px; color: #684830; background: transparent; font: inherit; cursor: pointer; }
.commerce-consent button[data-consent="granted"] { color: #fffaf0; background: #684830; }
@media (max-width: 680px) {
  .commerce-consent { grid-template-columns: 1fr; bottom: 0.65rem; right: 0.65rem; width: calc(100vw - 1.3rem); }
  .commerce-consent div { justify-content: stretch; }
  .commerce-consent button { flex: 1; }
}
