.kb-cookie {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  pointer-events: none;
}

.kb-cookie.is-visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.kb-cookie__inner {
  max-width: 1180px;
  margin: 0 auto;
  background: #111111;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.kb-cookie__content {
  flex: 1 1 auto;
  min-width: 0;
}

.kb-cookie__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.kb-cookie__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}

.kb-cookie__link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}

.kb-cookie__link:hover {
  text-decoration: none;
}

.kb-cookie__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.kb-cookie__btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  min-width: 110px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.kb-cookie__btn:hover {
  transform: translateY(-1px);
}

.kb-cookie__btn--accept {
  background: #d92323;
  color: #ffffff;
}

.kb-cookie__btn--accept:hover {
  background: #b71d1d;
}

.kb-cookie__btn--decline {
  background: #2f2f2f;
  color: #ffffff;
}

.kb-cookie__btn--decline:hover {
  background: #3b3b3b;
}

@media (max-width: 768px) {
  .kb-cookie {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .kb-cookie__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 14px;
  }

  .kb-cookie__title {
    font-size: 16px;
  }

  .kb-cookie__actions {
    width: 100%;
    flex-direction: column;
  }

  .kb-cookie__btn {
    width: 100%;
    min-width: 100%;
  }
}