.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 20px;
  background: rgba(0, 92, 145, 0.98);
  border-top: 1px solid rgba(232, 189, 102, 0.5);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 280px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #fff;
}
.cookie-banner__link {
  color: #06b6d4;
  text-decoration: underline;
}
.cookie-banner__link:hover {
  text-decoration: none;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.cookie-banner__btn--accept {
  background: #06b6d4;
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  background: #0891b2;
}
.cookie-banner__btn--decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.cookie-banner__btn--decline:hover {
  border-color: #fff;
}
@media (max-width: 640px) {
  .cookie-banner {
    padding: 16px;
  }
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    flex-direction: column;
  }
  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}
