/* Cookie consent banner — Urban Basic — 2026-05-10 */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0A0A0A;
  color: #fff;
  border-top: 4px solid #F4761C;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -10px 30px rgba(0,0,0,.35);
  font-family: Inter, system-ui, -apple-system, sans-serif;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cc-banner.cc-show { transform: translateY(0); }
.cc-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}
.cc-banner__text {
  flex: 1 1 320px;
  font-size: .95rem;
  line-height: 1.5;
}
.cc-banner__text strong { color: #F4761C; }
.cc-banner__text a {
  color: #F4761C;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cc-banner__actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
.cc-btn {
  display: inline-block;
  padding: .65rem 1.1rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform .15s, background .15s;
}
.cc-btn:hover { transform: translateY(-1px); }
.cc-btn--accept { background: #F4761C; color: #fff; }
.cc-btn--accept:hover { background: #E66510; }
.cc-btn--reject {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.cc-btn--reject:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
@media (max-width: 600px) {
  .cc-banner { padding: 1rem; }
  .cc-banner__inner { flex-direction: column; align-items: stretch; }
  .cc-banner__actions { justify-content: stretch; }
  .cc-btn { flex: 1; text-align: center; }
}
