.kbt-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background: var(--tp-common-px-black, #0A0A0A);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
  padding: 18px 0;
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.kbt-cookie-consent.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.kbt-cookie-consent[hidden] {
  display: none !important;
}

.kbt-cookie-consent__inner {
  width: min(1550px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.kbt-cookie-consent__content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
  flex: 1;
}

.kbt-cookie-consent__icon {
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 0;
}

.kbt-cookie-consent__text {
  min-width: 0;
}

.kbt-cookie-consent__text p {
  margin: 0 0 6px;
  color: var(--tp-common-px-white, #fff);
  font-size: 14px;
  line-height: 1.55;
  font-family: var(--tp-ff-body, Inter, sans-serif);
}

.kbt-cookie-consent__link {
  color: var(--tp-common-px-orange, #FF471D);
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.kbt-cookie-consent__link:hover {
  color: var(--tp-common-px-white, #fff);
}

.kbt-cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.kbt-cookie-consent__btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  min-width: 110px;
  padding: 11px 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--tp-ff-body, Inter, sans-serif);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.kbt-cookie-consent__btn--reject {
  background: transparent;
  color: var(--tp-common-px-white, #fff);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.kbt-cookie-consent__btn--reject:hover {
  border-color: var(--tp-common-px-white, #fff);
  background: rgba(255, 255, 255, 0.06);
}

.kbt-cookie-consent__btn--accept {
  background: var(--tp-common-px-orange, #FF471D);
  color: var(--tp-common-px-white, #fff);
}

.kbt-cookie-consent__btn--accept:hover {
  background: var(--tp-common-px-orange-dark, #FF572D);
}

@media (max-width: 767px) {
  .kbt-cookie-consent {
    padding: 16px 0;
  }

  .kbt-cookie-consent__inner {
    width: calc(100% - 28px);
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .kbt-cookie-consent__actions {
    width: 100%;
  }

  .kbt-cookie-consent__btn {
    flex: 1;
    min-width: 0;
  }
}
