
/* Fondo general */
.woocommerce-cart {
    background-color: #fff6ef;
    padding: 30px 10px;
}

/* Tabla del carrito */
.woocommerce-cart-form, .cart_totals {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

/* Producto */
.woocommerce-cart-form__cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Imagen del producto */
.woocommerce-cart-form__cart-item img {
    width: 90px;
    height: auto;
    border-radius: 10px;
}

/* Nombre del producto */
.woocommerce-cart-form__cart-item .product-name a {
    color: #ff6600;
    font-weight: bold;
    font-size: 18px;
}

/* Cantidad */
input.qty {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 16px;
    border: 2px solid #ff6600;
    border-radius: 12px;
}

/* Precio */
del {
    font-size: 14px;
    color: #888;
    margin-right: 5px;
}
ins {
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

/* Totales */
.cart_totals {
    background-color: #000;
    color: #fff;
}

.cart_totals h2,
.cart_totals th,
.cart_totals td {
    color: #fff !important;
    font-weight: bold;
}

/* Botón "Finalizar compra" */
.woocommerce .checkout-button {
    background: #ff6600 !important;
    color: white !important;
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
}
