/* ------------------------------------------------------------------
   Cookie consent banner — audited brand design (BRAND.md):
   navy panel, Anton heading, Poppins body, coral primary + ghost
   buttons at 48px, coral focus rings, square corners (3px buttons).
------------------------------------------------------------------- */
.aw-cookie {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100000;
  width: min(400px, calc(100vw - 32px));
  background: #162C59;
  color: #fff;
  padding: 26px 26px 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  font-family: 'Poppins', -apple-system, Segoe UI, Roboto, sans-serif;
  opacity: 1;
  transform: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.aw-cookie--hide { opacity: 0; transform: translateY(12px); pointer-events: none; }
.aw-cookie h4 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 10px;
  color: #fff;
}
.aw-cookie p { margin: 0 0 18px; font-size: 15px; line-height: 24px; color: rgba(255, 255, 255, 0.88); }
.aw-cookie a { color: #FF6F61; text-decoration: underline; }
.aw-cookie a:hover { color: #fff; }
.aw-cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.aw-cookie-actions button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 3px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.aw-cookie-accept { background: #FF6F61; border: 2px solid #FF6F61; color: #162C59; flex: 1 1 auto; }
.aw-cookie-accept:hover { color: #fff; }
.aw-cookie-decline { background: transparent; border: 2px solid rgba(255, 255, 255, 0.5); color: #fff; }
.aw-cookie-decline:hover { border-color: #FF6F61; color: #FF6F61; }
.aw-cookie-actions button:focus-visible { outline: 3px solid #FF6F61; outline-offset: 2px; }

/* reopen tab */
.aw-cookie-reopen {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 99990;
  background: #162C59;
  color: #fff;
  border: 0;
  border-radius: 3px;
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.aw-cookie-reopen:hover { opacity: 1; color: #FF6F61; }
.aw-cookie-reopen:focus-visible { outline: 3px solid #FF6F61; outline-offset: 2px; }

@media (max-width: 560px) {
  .aw-cookie { right: 16px; left: 16px; bottom: 16px; width: auto; padding: 22px 20px 20px; }
}
