#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, .25);
  flex-wrap: wrap;
}

#cookieBanner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
  flex: 1;
  min-width: 220px;
}

#cookieBanner p a {
  color: #f28c18;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookieAccept,
#cookieDecline {
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity .2s;
  border: none;
}

#cookieAccept {
  background: linear-gradient(135deg, #f28c18, #ffb257);
  color: #fff;
}

#cookieDecline {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .75);
  border: 1px solid rgba(255, 255, 255, .15);
}

#cookieAccept:hover,
#cookieDecline:hover {
  opacity: .85;
}

@media (max-width: 560px) {
  #cookieBanner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  #cookieAccept,
  #cookieDecline {
    flex: 1;
    text-align: center;
  }
}
