/* =============================================
   NUNTARIS — Cookie Consent Banner
   ============================================= */

#ntr-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background-color: #1a1a1a;
  color: #f2f2f2;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
  font-family: inherit;
  box-sizing: border-box;
}

#ntr-cookie-banner.ntr-hidden {
  display: none;
}

.ntr-cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  flex-direction: row;
}

.ntr-cookie-text {
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
  margin: 0;
}

.ntr-cookie-text a {
  color: #ffcc00;
  text-decoration: underline;
  white-space: nowrap;
}

.ntr-cookie-text a:hover {
  color: #ffffff;
}

.ntr-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.ntr-cookie-actions button {
  cursor: pointer;
  border: none;
  border-radius: 3px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 20px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

#ntr-cookie-accept {
  background-color: #c00000;
  color: #ffffff;
}

#ntr-cookie-accept:hover {
  background-color: #990000;
}

#ntr-cookie-reject {
  background-color: transparent;
  color: #f2f2f2;
  border: 1px solid #757575;
}

#ntr-cookie-reject:hover {
  background-color: #454545;
}

/* ---- Tablet (≤ 768px) ---- */
@media (max-width: 768px) {
  .ntr-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 12px;
  }

  .ntr-cookie-text {
    font-size: 0.8125rem;
  }

  .ntr-cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .ntr-cookie-actions button {
    font-size: 0.8125rem;
    padding: 8px 18px;
  }
}

/* ---- Móvil (≤ 480px) ---- */
@media (max-width: 480px) {
  .ntr-cookie-inner {
    padding: 12px 16px;
    gap: 10px;
  }

  .ntr-cookie-text {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .ntr-cookie-actions {
    width: 100%;
    gap: 8px;
  }

  .ntr-cookie-actions button {
    flex: 1;
    font-size: 0.8rem;
    padding: 9px 12px;
    text-align: center;
  }
}