.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--grey-800);
  color: var(--grey-100);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-consent.is-hidden {
  display: none;
}

.cookie-consent .cookie-consent-text {
  max-width: 700px;
}

.cookie-consent .cookie-consent-text a {
  color: var(--green-200);
  text-decoration: underline;
}

.cookie-consent .cookie-consent-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-consent .cookie-consent-buttons button {
  cursor: pointer;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
}

.cookie-consent .cookie-consent-buttons .cookie-accept {
  background: var(--green-500);
  color: #fff;
}

.cookie-consent .cookie-consent-buttons .cookie-accept:hover {
  background: var(--green-600);
}

.cookie-consent .cookie-consent-buttons .cookie-reject {
  background: var(--grey-600);
  color: var(--grey-100);
}

.cookie-consent .cookie-consent-buttons .cookie-reject:hover {
  background: var(--grey-500);
}
