@charset "UTF-8";
/* =============================================================
   COOKIE-BANNER.CSS · Cortijo Bablou
   Banner GDPR propio (si no se usa plugin externo)
   ============================================================= */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background-color: rgba(50, 55, 65, 0.97);
  color: #fff;
  font-family: "Aribau Grotesk Light", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(110%);
}

.cookie-banner__text {
  flex: 1;
  max-width: 700px;
  opacity: 0.85;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  opacity: 0.7;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: 0.5px solid rgba(255, 255, 255, 0.5);
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-banner__btn--accept {
  background-color: #718473;
  color: #fff;
  border-color: #718473;
}

.cookie-banner__btn--accept:hover {
  background-color: #fff;
  color: #323741;
  border-color: #fff;
}

.cookie-banner__btn--reject {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner__btn--reject:hover {
  color: #fff;
  border-color: #fff;
}

.cookie-banner__btn--settings {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.5);
  border-color: transparent;
  font-size: 10px;
  padding: 10px 12px;
}

.cookie-banner__btn--settings:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: space-between;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }

  .cookie-banner__btn--settings {
    flex: 0 0 auto;
  }
}
