/**
 * Estilos personalizados para el carrito de WooCommerce
 */

/* Estilos generales del carrito */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: 40px 0;
    font-size: 18px;
}

.woocommerce-cart .return-to-shop {
    text-align: center;
    margin-bottom: 40px;
}

/* Tabla del carrito */
.woocommerce-cart-form {
    margin-bottom: 30px;
}

.woocommerce-cart-form__contents {
    border-collapse: collapse;
    width: 100%;
}

.woocommerce-cart-form__contents thead th {
    background-color: #f7f7f7;
    padding: 12px;
    font-weight: 600;
    text-align: left;
}

.woocommerce-cart-form__contents tbody td {
    padding: 15px 12px;
    border-bottom: 1px solid #e6e6e6;
    vertical-align: middle;
}

.woocommerce-cart-form__cart-item {
    transition: background-color 0.3s ease;
}

.woocommerce-cart-form__cart-item:hover {
    background-color: #f9f9f9;
}

/* Imagen del producto */
.product-thumbnail img {
    width: 80px;
    height: auto;
    border: 1px solid #eee;
}

/* Botón de eliminar */
.product-remove .remove {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    font-size: 18px;
    text-align: center;
    border-radius: 50%;
    color: #e2401c;
    border: 1px solid #e2401c;
    text-decoration: none;
    transition: all 0.3s ease;
}

.product-remove .remove:hover {
    background-color: #e2401c;
    color: #fff;
}

/* Campo de cantidad */
.product-quantity .quantity {
    display: inline-flex;
    align-items: center;
}

.product-quantity .qty {
    width: 60px;
    text-align: center;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Totales del carrito */
.cart_totals {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.cart_totals.processing {
    opacity: 0.7;
}

.cart_totals h2 {
    font-size: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
}

.cart_totals table {
    width: 100%;
}

.cart_totals th {
    text-align: left;
    padding: 12px 0;
    font-weight: 600;
}

.cart_totals td {
    text-align: right;
    padding: 12px 0;
}

.order-total th,
.order-total td {
    font-size: 18px;
    font-weight: 700;
}

/* Botón de finalizar compra */
.wc-proceed-to-checkout {
    margin-top: 20px;
}

.checkout-button {
    display: block;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

/* Notificaciones AJAX */
.migal-cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Indicador de carga */
.ajax-loader {
    margin-left: 8px;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-cart-form__contents thead {
        display: none;
    }
    
    .woocommerce-cart-form__contents tbody td {
        display: block;
        text-align: right;
        padding: 10px;
    }
    
    .woocommerce-cart-form__contents tbody td:before {
        content: attr(data-title) ": ";
        font-weight: 600;
        float: left;
    }
    
    .product-thumbnail {
        display: none !important;
    }
    
    .product-remove {
        text-align: center !important;
    }
    
    .product-remove:before {
        display: none;
    }
}
