/* Плашка Cookies — как на sherwoodhome.ru (Tilda t887) */
.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 110;
  width: min(400px, calc(100vw - 40px));
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.cookie-banner-panel {
  position: relative;
  background: #ffffff;
  width: 100%;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 18px 36px 18px 18px;
  box-sizing: border-box;
}

.cookie-banner-text {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  color: #333333;
}

.cookie-banner-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0.75;
}

.cookie-banner-close:hover {
  opacity: 1;
}

@media (max-width: 520px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .cookie-banner-panel {
    padding: 16px 34px 16px 16px;
  }

  .cookie-banner-text {
    font-size: 12.5px;
  }
}
