.cookie-banner {
  box-sizing: border-box;
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 10000;
  width: 560px;
  max-width: calc(100vw - 32px);
  display: none;
  flex-direction: column;
  padding: 18px 20px 16px;
  background: #fff;
  color: #212121;
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner__text {
  margin: 0;
}

.cookie-banner__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 14px;
}

.cookie-banner__policy {
  color: #1976d2;
  text-decoration: underline;
  font-size: 14px;
  flex: 1 1 160px;
  min-width: 0;
}

.cookie-banner__policy:hover {
  color: #1565c0;
}

.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  margin-left: auto;
}

.cookie-banner__btn {
  box-sizing: border-box;
  min-width: 0;
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: #ff9800;
  color: #fff;
}

.cookie-banner__btn--accept:hover {
  background: #fb8c00;
}

.cookie-banner__btn--decline {
  background: #fff;
  color: #424242;
  border: 1px solid #c4c4c4;
}

.cookie-banner__btn--decline:hover {
  background: #f5f5f5;
}

.privacy-footer-link {
  text-align: center;
  margin-top: 16px;
  padding: 0 16px 8px;
}

.privacy-footer-link a {
  color: #616161;
  font-size: 14px;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }
}
