.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: block;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__inner {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px;
  background: #5c6c84;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
}

.cookie-consent__content {
  min-width: 0;
}

.cookie-consent__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  margin: 0 0 6px;
}

.cookie-consent__text {
  font-size: 14px;
  line-height: 1.35;
  opacity: 0.95;
}

.cookie-consent__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  flex: 0 0 auto;
}

.cookie-consent__btn {
  white-space: nowrap;
}

.cookie-consent__btn--accept.btn {
  padding-left: 14px;
  padding-right: 14px;
}

.btn-primary-wt {
  color: #fff;
  background: linear-gradient(270deg, #e51d25 0, #8e191e 100%);
  border-color: #8e191e;
}

.btn-primary-wt:hover {
  color: #fff;
  background: linear-gradient(270deg, #e51d25 0, #8e191e 100%);
  border-color: #8e191e;
  box-shadow: none;
}

.btn-primary-wt:focus,
.btn-primary-wt.focus {
  box-shadow: 0 0 0 0.2rem rgba(229, 29, 37, 0.35);
}

.btn-primary-wt:disabled,
.btn-primary-wt.disabled {
  color: #fff;
  background: linear-gradient(270deg, rgba(229, 29, 37, 0.7) 0, rgba(142, 25, 30, 0.7) 100%);
  border-color: rgba(142, 25, 30, 0.7);
  box-shadow: none;
}

.btn-primary-wt:not(:disabled):not(.disabled):active,
.btn-primary-wt:not(:disabled):not(.disabled).active,
.show > .btn-primary-wt.dropdown-toggle {
  color: #fff;
  background: linear-gradient(270deg, #8e191e 0, #e51d25 100%);
  border-color: #8e191e;
  box-shadow: none;
}

.btn-primary-wt:not(:disabled):not(.disabled):active:focus,
.btn-primary-wt:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary-wt.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(229, 29, 37, 0.35);
}

.cookie-consent__btn--more.btn {
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.cookie-consent__btn--more.btn:hover,
.cookie-consent__btn--more.btn:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.9);
}

.cookie-consent__btn--more.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.22);
}

.cookie-consent__btn--decline.btn-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0;
}

.cookie-consent__btn--decline.btn-link:hover,
.cookie-consent__btn--decline.btn-link:focus {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    justify-content: flex-start;
  }
}

