#sliding-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: #9d1f2e;
  color: #fff;
  font-size: 1rem;
  display: none;
  animation: slideUp 0.4s ease-in-out forwards;
}

/* Botón de pestaña superior */
.eu-cookie-withdraw-tab {
  background-color: #9d1f2e;
  color: #000; /* texto negro */
  border: none;
  padding: 0.4rem 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

/* Contenedor del banner */
.eu-cookie-compliance-banner {
  padding: 1rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

/* Contenido */
.popup-content {
  max-width: 75%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#popup-text {
  flex: 1 1 70%;
  color: #fff; /* texto blanco */
}

#popup-text a.eu-cookie-compliance-more-button {
  color: #fff; /* enlace blanco */
  font-weight: bold;
  margin-left: 0.3rem;
  text-decoration: underline;
}

#popup-buttons {
  flex: 1 1 30%;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* === BOTONES ROJOS (normal) / TEXTO Y BORDE BLANCOS === */
.eu-cookie-compliance-default-button,
.eu-cookie-compliance-secondary-button {
  background: #9d1f2e;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* === HOVER: fondo igual (rojo), texto y borde negros === */
.eu-cookie-compliance-default-button:hover,
.eu-cookie-compliance-secondary-button:hover {
  background: #9d1f2e;
  color: #000;
  border-color: #000;
}

/* Estado de foco accesible */
.eu-cookie-compliance-default-button:focus,
.eu-cookie-compliance-secondary-button:focus {
  outline: 2px dashed #fff;
  outline-offset: 2px;
}

/* Responsivo */
@media (max-width: 600px) {
  .container {
    padding: 1rem;
    margin: 1rem;
  }
}

/* Animación */
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

/* Texto del popup */
#popup-text,
#popup-text p,
#popup-text a {
  color: #fff !important;
}





/*
#sliding-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 9999;
  background: #9d1f2e;
  color: #fff;
  font-size: 1rem;
  display: none;
  animation: slideUp 0.4s ease-in-out forwards;
}

.eu-cookie-withdraw-tab {
  background-color: #9d1f2e;
  color: #000; */
/* texto negro *//*

  border: none;
  padding: 0.4rem 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.eu-cookie-compliance-banner {
  padding: 1rem 2rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.popup-content {
  max-width: 75%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

#popup-text {
  flex: 1 1 70%;
  color: #fff; */
/* texto blanco *//*

}

#popup-text a.eu-cookie-compliance-more-button {
  color: #fff; */
/* enlace blanco *//*

  font-weight: bold;
  margin-left: 0.3rem;
  text-decoration: underline;
}

#popup-buttons {
  flex: 1 1 30%;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.eu-cookie-compliance-default-button,
.eu-cookie-compliance-secondary-button {
  background: #fff;
  color: #000;
  border: 2px solid #000; */
/* borde definido *//*

  padding: 0.5rem 1rem;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.eu-cookie-compliance-default-button:hover,
.eu-cookie-compliance-secondary-button:hover {
  background: #9d1f2e;
  color: #fff;
  border-color: #fff;
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
    margin: 1rem;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0%);
  }
}

#popup-text,
#popup-text p,
#popup-text a {
  color: #fff !important;
}

.eu-cookie-compliance-default-button:focus {
  outline: 2px dashed #fff;
  outline-offset: 2px;
}*/
