.cookie-banner-fixed {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 10060;
  max-width: 320px;
  width: 100%;
  background: #191919;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  padding: 15px 20px;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner-fixed.--show {
  display: block;
  animation: cookieSlideIn 0.5s forwards;
}

.cookie-banner-fixed__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-banner-fixed__text {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  color: #fff;
  font-family: Montserrat, "Circe", sans-serif;
}

.cookie-banner-fixed__text a {
  color: #ff7200;
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-fixed__text a:hover {
  color: #ffa04d;
  text-decoration: none;
}

.cookie-banner-fixed__btn {
  background-color: #ff7200;
  color: #fff;
  width: 100%;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  align-self: stretch;
  transition: opacity 0.2s;
  font-family: Montserrat, "Circe", sans-serif;
}

.cookie-banner-fixed__btn:hover {
  opacity: 0.9;
}

@keyframes cookieSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .cookie-banner-fixed {
    left: 10px;
    bottom: 10px;
    right: 10px;
    max-width: none;
    padding: 14px 16px;
  }

  .cookie-banner-fixed__text {
    font-size: 12px;
  }
}
