/*
Theme Name: Edumall Child
Theme URI: https://edumall.thememove.com/
Author: ThemeMove
Author URI: https://thememove.com/
Version: 1.0.0
Template: edumall
Text Domain:  edumall-child
Tags: editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* Contenedor del Carrito */
.renival-custom-cart {
    margin-top: 30px;
}

.woocommerce-cart-form-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Tabla de Carrito */
.shop_table.cart thead {
    background-color: #f9f9f9;
}

.shop_table.cart thead th {
    padding: 20px !important;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: none !important;
    color: #666;
}

.shop_table.cart td {
    padding: 25px 20px !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #eee !important;
}

/* Miniatura del producto */
.renival-cart-img-link img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.renival-cart-img-link:hover img {
    transform: scale(1.05);
}

/* Título del producto */
.renival-cart-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
}

.renival-cart-title:hover {
    color: #e9a9a5; /* Color acento de tu marca */
}

/* Botón Eliminar (X limpia) */
.renival-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f2f2f2;
    color: #999 !important;
    border-radius: 50%;
    text-decoration: none !important;
    font-size: 20px;
    transition: all 0.2s;
}

.renival-remove-btn:hover {
    background: #ffeded;
    color: #ff4d4d !important;
}

/* Input de Cantidad Moderno */
.product-quantity .quantity input {
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    padding: 8px !important;
    width: 70px !important;
}

/* Botones de acción */
.renival-cart-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.update-cart-btn {
    background-color: #333 !important;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    text-transform: none !important;
    opacity: 0.8;
}

.update-cart-btn:hover {
    opacity: 1;
}

/* Sección de Cupón y Totales */
.renival-coupon-box {
    background: #fdfdfd;
    padding: 25px;
    border: 1px dashed #ddd;
    border-radius: 12px;
}

.coupon-fields {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.coupon-fields input {
    flex-grow: 1;
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
}

.apply-coupon-btn {
    background: #e9a9a5 !important;
    color: #fff !important;
    border-radius: 8px !important;
}

/* Responsivo (Mobile UX) */
@media screen and (max-width: 768px) {
    .shop_table.cart td.product-subtotal label {
        display: none; /* Quitamos el label repetitivo de Edumall */
    }
    
    .renival-cart-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .continue-shopping, .update-cart-btn {
        width: 100%;
        text-align: center;
    }
}