/* PDPA consent banner — full-width yellow bar pinned to the bottom edge,
   content aligned to the site .container (user: ยาวเต็ม container). Black
   text set explicitly: the template's global `p` color is near-white for
   the dark theme (สีจม otherwise). */
.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  background: #f9b101;
  box-shadow: 0 -3px 14px rgba(0, 0, 0, .45);
  padding: 14px 0;
  font-size: 15px;
  line-height: 1.5;
}
.consent-inner {
  display: flex;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
}
.consent-banner p { margin: 0; flex: 1 1 300px; color: #000; }
.consent-actions { display: flex; gap: 10px; }
.consent-banner button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50rem;
  padding: 9px 24px;
  cursor: pointer;
  border: 1px solid #000;
  white-space: nowrap;
}
.consent-accept { background: #000; color: #fff; }
.consent-decline { background: #fff; color: #000; }
