.cookie-consent {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 14px;
  width: min(520px, calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px 14px;
  padding: 11px 13px;
  background: rgba(248, 241, 233, 0.97);
  border: 1px solid rgba(32, 26, 23, 0.1);
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(23, 24, 25, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: #201a17;
}

.cookie-consent__text {
  flex: 1;
  margin: 0;
  min-width: 0;
}

.cookie-consent__text a {
  color: #4a5258;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.cookie-consent__btn {
  border: 1px solid transparent;
  border-radius: 8px;
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
  transition: background 140ms ease, border-color 140ms ease;
}

.cookie-consent__btn--ghost {
  color: #4a5258;
  background: transparent;
  border-color: rgba(32, 26, 23, 0.14);
}

.cookie-consent__btn--ghost:hover {
  background: rgba(32, 26, 23, 0.04);
}

.cookie-consent__btn--primary {
  color: #201a17;
  background: linear-gradient(135deg, #ffffff, #bcc6cf);
  border-color: rgba(32, 26, 23, 0.12);
}

.cookie-consent__btn--primary:hover {
  filter: brightness(1.03);
}

@media (max-width: 480px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    bottom: 10px;
    padding: 12px;
  }

  .cookie-consent__actions {
    justify-content: flex-end;
  }
}
