/* Cookie consent banner — galleryofdoors.su */
.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 10050;
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e2dc;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
  padding: 16px 18px;
  font-family: Montserrat, system-ui, sans-serif;
}

.cookie-consent-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-consent-banner__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #444;
}

.cookie-consent-banner__text a {
  color: #1a4fd6;
  text-decoration: underline;
}

.cookie-consent-banner__text a:hover {
  color: #fe5b3f;
}

.cookie-consent-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-consent-banner__btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 11px 16px;
  border-radius: 10px;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.cookie-consent-banner__btn--ghost {
  background: #fff;
  border-color: #d8d4cc;
  color: #333;
}

.cookie-consent-banner__btn--ghost:hover {
  border-color: #aaa;
}

.cookie-consent-banner__btn--primary {
  background: #111;
  border-color: #111;
  color: #fff;
}

.cookie-consent-banner__btn--primary:hover {
  background: #fe5b3f;
  border-color: #fe5b3f;
}

@media (max-width: 640px) {
  .cookie-consent-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }

  .cookie-consent-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-consent-banner__btn {
    width: 100%;
    text-align: center;
  }
}
