.cookie-consent {
  position: fixed;
  z-index: 100;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 20px;
  color: #171717;
  background: rgba(251, 250, 247, .98);
  border: 1px solid #d8d3c9;
  box-shadow: 0 14px 42px rgba(17, 17, 15, .16);
  font-size: 12px;
  line-height: 1.45;
}

.cookie-consent__copy { max-width: 720px; }
.cookie-consent__copy p { margin: 0; }
.cookie-consent__copy a { text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-consent__button {
  min-height: 38px;
  padding: 0 17px;
  border: 1px solid #171717;
  background: transparent;
  color: #171717;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cookie-consent__button--primary { background: #171717; color: #fff; }
.cookie-consent__button:hover { background: #b99554; border-color: #b99554; color: #fff; }

@media (max-width: 680px) {
  .cookie-consent { left: 12px; right: 12px; bottom: 12px; align-items: stretch; flex-direction: column; gap: 14px; padding: 16px; }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__button { flex: 1; }
}
