.fixed-banner {
  position: fixed;
  bottom: 16px;
  right: 78px;
  width: 190px;
  height: 50px;
  background-color: var(--color-accent);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-banner-link {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  line-height: 1.3;
  padding: 0 20px 0 8px;
}

.fixed-banner-close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background-color: var(--color-muted);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.fixed-banner-close:hover {
  background-color: var(--color-text);
}
