.elementor-10 .elementor-element.elementor-element-0dd4794{--display:flex;--flex-direction:row-reverse;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap-reverse;--justify-content:center;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-10 .elementor-element.elementor-element-0dd4794{--width:64%;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;}}/* Start custom CSS for shortcode, class: .elementor-element-1f250ff *//* Estilização geral do container do carrinho */
.woocommerce-cart table.cart {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho da tabela */
.woocommerce-cart table.cart th {
    background: #0078D7;
    color: #fff;
    text-align: left;
    padding: 15px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

/* Linhas alternadas na tabela */
.woocommerce-cart table.cart tr:nth-child(even) {
    background: #f1f1f1;
}
.woocommerce-cart table.cart tr:nth-child(odd) {
    background: #fff;
}

/* Células da tabela */
.woocommerce-cart table.cart td {
    padding: 15px;
    vertical-align: middle;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

/* Botão de Atualizar Carrinho */
.woocommerce-cart .actions .button {
    background: #0078D7;
    color: #fff;
    border: none;
    padding: 7px 14px; /* Reduzido em 30% */
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.woocommerce-cart .actions .button:hover {
    background: #005BB5;
}

/* Botão de Aplicar Cupom */
.woocommerce-cart .coupon .button {
    background: #0078D7;
    color: #fff;
    border: none;
    padding: 9px 18px; /* Reduzido em 10% */
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}
.woocommerce-cart .coupon .button:hover {
    background: #005BB5;
}

/* Alinhamento das Quantidades */
.woocommerce-cart table.cart .product-quantity input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
}

/* Imagem do produto */
.woocommerce-cart table.cart .product-thumbnail img {
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Total do Carrinho */
.cart_totals {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}
.cart_totals h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}
.cart_totals .order-total td {
    font-size: 16px;
    font-weight: bold;
}

/* Responsividade */
@media (max-width: 768px) {
    .woocommerce-cart table.cart th,
    .woocommerce-cart table.cart td {
        font-size: 12px;
        padding: 10px;
    }
    .woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}/* End custom CSS */