.cookie-consent {
  position: fixed;
  z-index: 99999;
  right: 18px;
  bottom: 18px;
  left: 18px;
  font-family: inherit;
  color: #f7f3ec;
}
.cookie-consent__inner {
  width: min(920px, 100%);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(23, 21, 17, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.34);
}
.cookie-consent__copy { max-width: 620px; }
.cookie-consent__copy strong { display: block; margin-bottom: 7px; font-size: 1rem; }
.cookie-consent__copy p { margin: 0; color: rgba(247, 243, 236, 0.78); font-size: 0.9rem; line-height: 1.55; }
.cookie-consent__actions { display: flex; flex: 0 0 auto; gap: 10px; }
.cookie-consent__button,
.cookie-settings-button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 11px 16px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
}
.cookie-consent__button--primary { background: #d8b66c; color: #171511; }
.cookie-consent__button--secondary { background: transparent; color: #f7f3ec; border: 1px solid rgba(255, 255, 255, 0.35); }
.cookie-settings-button {
  position: fixed;
  z-index: 9998;
  left: 12px;
  bottom: 10px;
  padding: 7px 11px;
  background: rgba(23, 21, 17, 0.82);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
  backdrop-filter: blur(8px);
}
.cookie-consent__button:focus-visible,
.cookie-settings-button:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
@media (max-width: 720px) {
  .cookie-consent { right: 10px; bottom: 10px; left: 10px; }
  .cookie-consent__inner { align-items: stretch; flex-direction: column; gap: 16px; padding: 18px; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr; }
  .cookie-consent__button { width: 100%; }
  .cookie-settings-button { bottom: 6px; left: 6px; }
}
