.cookie-consent {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 9999;
  width: min(430px, calc(100vw - 32px));
  padding: 22px;
  color: #1a1a1a;
  background: #f5f1ec;
  border: 1px solid rgba(31, 42, 36, .16);
  box-shadow: 0 22px 60px rgba(21, 28, 24, .22);
  font-family: "Montserrat", Arial, sans-serif;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__title {
  margin: 0 0 8px;
  color: #1f2a24;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.cookie-consent__text {
  margin: 0;
  color: #5f564f;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-consent__text a {
  color: #1f2a24;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.cookie-consent__button {
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid #1f2a24;
  border-radius: 0;
  font: 700 11px/1.2 "Montserrat", Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-consent__button--accept {
  color: #f5f1ec;
  background: #1f2a24;
}

.cookie-consent__button--reject {
  color: #1f2a24;
  background: transparent;
}

.cookie-consent__button:focus-visible {
  outline: 3px solid rgba(192, 138, 125, .7);
  outline-offset: 3px;
}

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

  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }
}
