.cookie-banner{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}

/* Contenedor principal */
.cookie-banner__inner{
  width: 100%;
  padding: 20px;

  /* SIN borde dorado */
  border: none;

  /* sombreado suave */
  background: rgba(11,10,16,0.95);
  backdrop-filter: blur(10px);

  box-shadow: 0 -10px 30px rgba(0,0,0,0.5);

  display: flex;
  flex-direction: column; /* ⬅️ clave para layout vertical */
  gap: 16px;
}

/* Texto arriba */
.cookie-banner__text{
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

/* Botones abajo */
.cookie-banner__actions{
  display: flex;
  gap: 10px;

  /* centrados y en línea */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.cookie-banner__text h2{
  margin: 0 0 8px;
}

.cookie-banner__text p{
  margin: 0 0 8px;
  color: var(--text-main);
}

.cookie-banner__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-modal{
  position: fixed;
  inset: 0;
  z-index: 1100;
}

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

.cookie-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.cookie-modal__panel{
  position: relative;
  max-width: 720px;
  margin: 6vh auto;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--accent-gold);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.cookie-modal__header,
.cookie-modal__footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-pref{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
}

.cookie-pref p{
  margin: 6px 0 0;
  color: var(--text-muted);
}

.cookie-banner__actions .btn{
  min-width: 140px;
}

@media (max-width: 600px){


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

  .cookie-banner__actions .btn{
    width: 100%;
  }

}