/* Hub Realty — cookie consent banner styles. */

#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9000;
  background: #0a1628;
  color: #faf8f3;
  border-top: 2px solid #c9a34a;
  box-shadow: 0 -8px 30px rgba(0,0,0,.4);
  animation: cb-slide-up .35s cubic-bezier(.22, 1, .36, 1);
}
@keyframes cb-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
#cookie-banner .cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
#cookie-banner .cb-text {
  flex: 1 1 320px;
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin: 0;
}
#cookie-banner .cb-text a {
  color: #e0ba65;
  border-bottom: 1px solid #e0ba65;
  text-decoration: none;
  padding-bottom: 1px;
}
#cookie-banner .cb-text a:hover { color: #f5d685; border-color: #f5d685; }
#cookie-banner .cb-actions {
  display: flex;
  gap: .65rem;
  flex-shrink: 0;
}
#cookie-banner .cb-btn {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .65rem 1.2rem;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
#cookie-banner .cb-btn-accept {
  background: #c9a34a;
  border: 1px solid #c9a34a;
  color: #0a1628;
}
#cookie-banner .cb-btn-accept:hover { background: #e0ba65; border-color: #e0ba65; }
#cookie-banner .cb-btn-reject {
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85);
}
#cookie-banner .cb-btn-reject:hover { border-color: #e0ba65; color: #e0ba65; }

@media (max-width: 640px) {
  #cookie-banner .cb-inner { padding: 1rem 1.1rem; gap: 1rem; }
  #cookie-banner .cb-text { font-size: .82rem; flex-basis: 100%; }
  #cookie-banner .cb-actions { width: 100%; }
  #cookie-banner .cb-btn { flex: 1; padding: .7rem .6rem; }
}
