/* OVERLAY */
#bludet-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* CAJA */
.bludet-modal-box {
    background: #fff;
    padding: 25px;
    width: 400px;
    max-width: 95%;
    border-radius: 10px;
    position: relative;
    font-family: Arial, sans-serif;
}

/* CERRAR */
#bludet-close {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
    font-size: 18px;
}

/* TITULO */
.bludet-modal-box h3 {
    margin-bottom: 10px;
}

/* MENSAJE */
#bludet-msg {
    margin-bottom: 15px;
    font-size: 14px;
}

/* BOTONES PRINCIPALES */
.bludet-actions-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.bludet-actions-group button {
    padding: 10px;
    border: none;
    background: #0073aa;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.bludet-actions-group button:hover {
    background: #005a87;
}

/* BOXES */
.bludet-box {
    display: none;
    margin-top: 15px;
}

/* INPUTS */
.bludet-box input {
    width: 100%;
    padding: 8px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* TEXTOS */
.bludet-box small {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    color: #666;
}

.bludet-box p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* BOTONES INTERNOS */
.bludet-box button {
    width: 100%;
    padding: 10px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.bludet-box button:hover {
    background: #218838;
}

/* LOADING */
#bludet-loading {
    display: none;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}





/* CONTENEDOR BOTONES */
.single_add_to_cart_button,
.bludet-btn-cotizar {
    display: inline-block;
    vertical-align: middle;
}

/* ESPACIADO */
.bludet-btn-cotizar {
    margin-left: 10px;
    background: #28a745;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .bludet-btn-cotizar {
        background: #0073aa;
        display: block;
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}

.woocommerce-js div.product form.cart .button {
    margin: 6px;
}