/* 1. DISEÑO PARA ESCRITORIO (Computadoras) */
@media screen and (min-width: 1025px) {
  #gdpr-cookie-consent-show-again {
    position: fixed !important;
    /* Se ubica al 8% del borde derecho del ancho total */
    right: 8% !important;
    bottom: 20px !important;
    left: auto !important;
    top: auto !important;
    /* Aseguramos que sea horizontal y sin rotaciones */
    transform: none !important;
    display: inline-block !important;
    /* Estilos de capa para no afectar otros objetos */
    z-index: 999999 !important;
    margin: 0 !important;
    width: auto !important;
    white-space: nowrap !important;
  }
}
/* 2. DISEÑO PARA MÓVILES Y TABLETS */
@media screen and (max-width: 1024px) {
  #gdpr-cookie-consent-show-again {
    position: fixed !important;
    bottom: 15px !important;
    /* Centrado horizontal perfecto */
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    /* Reset de estilos */
    top: auto !important;
    display: inline-block !important;
    z-index: 999999 !important;
    width: auto !important;
    white-space: nowrap !important;
    text-align: center !important;
  }
}
