/* ===========================================
   Livo — Cookie consent banner
=========================================== */

.livo-cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 100000;
  max-width: 380px;
  width: calc(100% - 48px);
  padding: 20px;
  background: #FFFFFF;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: var(--livo-font, 'Inter', sans-serif);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.livo-cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.livo-cookie-banner.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

.livo-cookie-banner__text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

.livo-cookie-banner__text a {
  color: #111111;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.livo-cookie-banner__text a:hover {
  color: #555555;
}

.livo-cookie-banner__actions {
  display: flex;
  gap: 10px;
}

.livo-cookie-btn {
  flex: 1;
  padding: 10px 16px;
  border: none;
  border-radius: 12px;
  font-family: var(--livo-font, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}

.livo-cookie-btn--accept {
  background: #111111;
  color: #FFFFFF;
}

.livo-cookie-btn--accept:hover {
  background: #333333;
  color: #FFFFFF;
}

.livo-cookie-btn--decline {
  background: #F5F5F7;
  color: #111111;
}

.livo-cookie-btn--decline:hover {
  background: #EBEBEB;
  color: #111111;
}

@media (max-width: 480px) {
  .livo-cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    max-width: none;
  }

  .livo-cookie-banner__actions {
    flex-direction: column;
  }
}
