.ff-cookie-banner {
  position: fixed;
  bottom: 20px;
  left: auto;
  right: 20px;
  max-width: 460px;
  background: #1a1a1a;
  color: #fff;
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  z-index: 9999;
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.ff-cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.ff-cookie-banner p {
  margin: 0 0 16px;
}

.ff-cookie-banner a {
  color: #fff;
  text-decoration: underline;
}

.ff-cookie-banner a:hover {
  opacity: 0.8;
}

.ff-cookie-banner__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.ff-cookie-banner__btn {
  padding: 9px 18px;
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.ff-cookie-banner__btn--decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ff-cookie-banner__btn--decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ff-cookie-banner__btn--accept {
  background: #fff;
  color: #1a1a1a;
}

.ff-cookie-banner__btn--accept:hover {
  opacity: 0.9;
}

@media (max-width: 480px) {
  .ff-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 16px 18px;
  }
  .ff-cookie-banner__actions {
    flex-direction: column-reverse;
  }
  .ff-cookie-banner__btn {
    width: 100%;
  }
}