/* Баннер согласия на cookie — правый нижний угол, «парящий» */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 320px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.07),
    0 10px 20px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

#cookie-banner p {
    color: #333;
    text-align: justify;
    text-indent: 2em;
    line-height: 1.45;
}

#cookie-banner .terms-link {
  margin: 6px 0 12px;
}

#cookie-banner .terms-link a {
  color: #2B6D44;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#cookie-banner .terms-link a:hover {
  color: #248046;
}

#cookie-banner .popup-buttons-block {
  gap: 12px;
  margin-top: 4px;
}

#cookie-banner .popup-buttons-block .btnNoFill {
  min-width: 80px;
  max-width: 110px;
  height: 36px;
  font-size: 13px;
  border-radius: 12px;
}

@media (max-width: 400px) {
  #cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    padding: 14px 16px;
    border-radius: 14px;
  }
}
