.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: none;
  background: #0f1116;
  color: #f5f7ff;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.35s ease, opacity 0.35s ease;
  opacity: 0;
  font-family: "Arimo", "PT Serif", sans-serif;
}

.cookie-banner.visible {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  flex: 1 1 260px;
  min-width: 240px;
  line-height: 1.5;
  font-size: 15px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.cookie-btn--primary {
  background: linear-gradient(120deg, #f7c948, #ff9f1c);
  color: #0f1116;
}

.cookie-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 159, 28, 0.35);
}

.cookie-btn--ghost {
  background: transparent;
  color: #f5f7ff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cookie-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-1px);
}

.cookie-manage {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  background: rgba(15, 17, 22, 0.9);
  color: #f5f7ff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  display: none;
  gap: 8px;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.cookie-manage.visible {
  display: inline-flex;
}

.cookie-manage svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 640px) {
  .cookie-banner__inner {
    padding: 18px 14px 16px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .cookie-manage {
    bottom: 16px;
    left: 16px;
  }
}
