.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  display: flex;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}
html.has-cookie-consent .cookie-banner { display: none; }

.cookie-banner__box {
  pointer-events: auto;
  max-width: 1100px;
  width: 100%;
  background: #161719;
  border: 1px solid #272A2E;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 -12px 40px rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  gap: 20px;
}
.cookie-banner__text {
  flex: 1;
  min-width: 0;
}
.cookie-banner__title {
  font-size: 15px;
  font-weight: 700;
  color: #ECEDEF;
  margin: 0 0 6px;
}
.cookie-banner__text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #888C96;
}
.cookie-banner__text a {
  color: #D4A832;
  text-decoration: underline;
}
.cookie-banner__text a:hover { color: #A87E20; }
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 16px;
  white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.cookie-banner__btn--accept {
  background: #D4A832;
  color: #0F1012;
}
.cookie-banner__btn--accept:hover { background: #A87E20; }
.cookie-banner__btn--reject {
  background: transparent;
  color: #ECEDEF;
  border: 1.5px solid #272A2E;
}
.cookie-banner__btn--reject:hover { border-color: #555860; background: #1E2022; }

@media (max-width: 720px) {
  .cookie-banner {
    padding: 12px;
  }
  .cookie-banner__box {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__btn { width: 100%; }
}
