/* Para móvil - popup flotante */
@media (max-width: 1024px) {

    /* Contenedor principal */
    .woocommerce-notices-wrapper {
        position: fixed;
        top: 30%;
        left: 5%;
        right: 5%;
        width: 90%;
        z-index: 999999;
    }

    /* El mensaje - reset completo */
    .woocommerce-message.customizado {
        all: initial;
        display: block;
        background: #fff;
        font: 14px/1.3 'Barlow', sans-serif;
        text-align: center;
        padding: 30px 20px 30px;
        position: relative;
        /* Garantizar bordes cuadrados */
        border-radius: 0;
    }

    /* Botón cerrar - posicionado */
    .woocommerce-message.customizado .close-popup {
        position: absolute;
        top: 5px;
        right: 10px;
        font: 700 18px/1 sans-serif;
        color: #999;
        background: none;
        border: 0;
        cursor: pointer;
        padding: 10px;
    }

    /* Nombre producto */
    .woocommerce-message.customizado .product-name {
        font-weight: 600;
        margin-bottom: 3px;
    }

    /* Texto secundario */
    .woocommerce-message.customizado .message-text {
        margin-bottom: 5px;
    }

    /* Contenedor de botones - centrado */
    .woocommerce-message.customizado .buttons-container {
        display: flex;
        flex-direction: column;
        gap: 5px;
        width: 80%;
        margin: 0 auto; /* hereda desde woocommerce-info/error/message, etc */
        padding: 0;
    }

    /* Botones */
    .woocommerce-message.customizado .button {
        /*all: initial;*/
        display: block;
        font: 500 14px/1 'Barlow', sans-serif;
        text-align: center;
        padding: 10px 0;
        border: 1px solid #000;
        cursor: pointer;
        width: 100%;
        margin: 0 auto !important;
        border-radius: 0;
        box-sizing: border-box;
    }

    .woocommerce-message.customizado .wc-forward {
        background: #000;
        color: #fff;
    }

    .woocommerce-message.customizado .continue-shopping {
        background: #fff;
        color: #000;
    }
}
