/* Cookie banner — bottom fixed bar */
.atw-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9990;
  background: #fff;
  border-top: 1px solid var(--atw-gray-200);
  padding: 1rem 0;
}
.atw-cookie-banner[hidden] { display: none; }

.atw-cookie-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.atw-cookie-banner__text { margin: 0; font-size: 13px; color: var(--atw-gray-800); }
.atw-cookie-banner__text a { text-decoration: underline; color: var(--atw-black); }
.atw-cookie-banner__btns { display: flex; gap: 12px; }

@media (min-width: 768px) {
  .atw-cookie-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .atw-cookie-banner__btns { flex-shrink: 0; }
}
