.elementor-14 .elementor-element.elementor-element-4a43ad3c{--display:flex;}/* Start custom CSS *//* Estilización del Checkout de WooCommerce */

/* Fondo general del carrito */
.wp-block-woocommerce-cart {
    background-color: #122F39; /* Fondo oscuro elegante */
    padding: 40px;
    border-radius: 10px;
    color: #fff;
}

/* Títulos */
.wp-block-woocommerce-cart h2,
.wp-block-woocommerce-cart h3,
.wp-block-woocommerce-cart h4 {
    color: #F49819; /* Resaltar los títulos con color dorado */
    font-weight: bold;
    text-transform: uppercase;
}

/* Tabla de productos en el carrito */
.wc-block-cart-items {
    width: 100%;
    border-collapse: collapse;
    background: #1A3D4B;
    border-radius: 10px;
    overflow: hidden;
}

.wc-block-cart-items th, .wc-block-cart-items td {
    padding: 15px;
    border-bottom: 1px solid #fff;
}

.wc-block-cart-items__header {
    background: #0E2833;
    color: #F49819;
    font-weight: bold;
}

/* Imagen del producto */
.wc-block-cart-item__image img {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

/* Nombre del producto */
.wc-block-components-product-name {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

/* Precio del producto */
.wc-block-components-product-price {
    color: #F49819;
    font-size: 18px;
    font-weight: bold;
}

/* Botón Eliminar */
.wc-block-cart-item__remove-link {
    background: #d9534f;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.wc-block-cart-item__remove-link:hover {
    background: #c9302c;
}

/* Sidebar Totales del Carrito */
.wc-block-cart__sidebar {
    background: #1A3D4B;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
}

.wc-block-components-totals-item__label {
    color: #fff;
}

.wc-block-components-totals-item__value {
    color: #F49819;
}

/* Botón Finalizar Compra */
.wc-block-cart__submit-button {
    display: block;
    background: #F49819;
    color: #122F39;
    padding: 15px;
    font-size: 18px;
    text-align: center;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s;
}

.wc-block-cart__submit-button:hover {
    background: #d87f14;
    color: #fff;
}/* End custom CSS */