/* ============================================================
   AZAY AGENT — Cookie consent banner (สไตล์)
   ไม่ต้องแก้ไฟล์นี้ ใส่ไว้เฉยๆ
============================================================= */

.azay-consent-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: #fff;
  border-top: 1px solid #e8f4fd;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 1rem 1.5rem;
  transform: translateY(120%);
  transition: transform 0.35s ease;
}
.azay-consent-bar.show { transform: translateY(0); }

.azay-consent-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.azay-consent-text {
  flex: 1 1 380px;
  font-size: 13px;
  color: #555;
  line-height: 1.7;
}
.azay-consent-text strong { color: #1a3a5c; }
.azay-consent-text a { color: #2E80C8; text-decoration: underline; }

.azay-consent-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.azay-consent-btn {
  font-family: 'Sarabun', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.azay-consent-btn.accept { background: #2E80C8; color: #fff; }
.azay-consent-btn.necessary { background: #f0f6ff; color: #555; border: 1px solid #dce8f5; }

@media (max-width: 640px) {
  .azay-consent-bar { padding: 1rem; }
  .azay-consent-inner { gap: 12px; }
  .azay-consent-btns { width: 100%; }
  .azay-consent-btn { flex: 1 1 auto; text-align: center; }
}
