.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 7000;
  width: min(720px, calc(100vw - 32px));
  display: none;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(35, 31, 32, .12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(35, 31, 32, .14);
  transform: translateX(-50%) translateY(14px);
  opacity: 0;
  transition: opacity .22s ease, transform .22s ease;
}

.cookie-consent.is-visible {
  display: flex;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.cookie-consent__text {
  min-width: 0;
  color: #2b2527;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-consent__text strong {
  display: block;
  margin-bottom: 3px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 600;
}

.cookie-consent__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}

.cookie-consent__button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  background: #2b2527;
  color: #fff;
  cursor: pointer;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.cookie-consent__button:hover {
  background: #463b3f;
}

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

  .cookie-consent__actions,
  .cookie-consent__button {
    width: 100%;
  }
}
