.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  padding: 16px 24px;
  background: var(--Global-Gray-Gray-90, #1A1715);
  color: var(--Global-white, #FFF);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

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

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

.cookie-banner__text {
  margin: 0;
  flex: 1 1 auto;
  font-family: "AA Stetica", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--Global-white, #FFF);
}

.cookie-banner__text a {
  color: var(--Global-Green-Green-40, #B8BFAD);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--Global-white, #FFF);
}

.cookie-banner__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  background: var(--Botton-Active-Enabled, #727967);
  color: var(--Global-white, #FFF);
  font-family: "AA Stetica", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cookie-banner__btn:hover {
  background: var(--Global-Brown-Brown-50, #C58C78);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}
