/*
 * Estilos para el Plugin Hopes Buy Now
 * Versión 2.0.0
 */

/* === Estilos para el botón Comprar Ahora === */

.woocommerce .product .cart .buy_now_button.button {
    background-color: #28a745 !important;
    color: #ffffff !important;
    border-color: #1e7e34 !important;
    width: 100%;
    margin-top: 10px;
    display: block;
    text-align: center;
}

.woocommerce .product .cart .buy_now_button.button:hover,
.woocommerce .product .cart .buy_now_button.button:focus {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: none !important;
}


.woocommerce .product .cart .buy_now_button.button:disabled {
    background-color: #94d8a2 !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    border-color: #94d8a2 !important;
}


/* === NUEVO: Estilos para la miniatura en el checkout === */

.woocommerce-checkout-review-order-table .product-name {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.checkout-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}