.elementor-57 .elementor-element.elementor-element-bea2473{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-16706c99 *//* General Cart Wrapper */
.wc-block-cart {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Cart Table Styling */
.wc-block-cart-items {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.wc-block-cart-items th {
    text-align: left;
    padding: 12px 10px;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
    text-transform: uppercase;
    color: #555;
}

.wc-block-cart-items td {
    padding: 15px 10px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

/* Product Image */
.wc-block-cart-item__image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.wc-block-cart-item__image img:hover {
    transform: scale(1.05);
}

/* Product Details */
.wc-block-cart-item__product {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wc-block-components-product-name {
    font-weight: 600;
    font-size: 16px;
    color: #222;
    text-decoration: none;
}

.wc-block-components-product-name:hover {
    color: #0073e6;
}

/* Prices & Sale Badge */
.wc-block-cart-item__prices {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wc-block-cart-item__prices del {
    color: #999;
    font-size: 14px;
}

.wc-block-cart-item__prices ins {
    color: #e60023;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
}

.wc-block-components-sale-badge {
    background-color: #ffefef;
    color: #e60023;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 4px;
    display: inline-block;
}

/* Remove Button */
.wc-block-cart-item__remove-link {
    background: transparent;
    border: none;
    color: #ff0000;
    cursor: pointer;
    font-size: 14px;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.wc-block-cart-item__remove-link:hover {
    color: #cc0000;
}

/* Total Price */
.wc-block-components-totals-footer-item {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    border-top: 2px solid #ddd;
}

/* Checkout Button */
.wc-block-cart__submit-button {
    display: inline-block;
    background-color: #0073e6;
    color: #fff;
    font-weight: 600;
    padding: 14px 25px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.wc-block-cart__submit-button:hover {
    background-color: #005bb5;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .wc-block-cart-item__product {
        font-size: 14px;
    }

    .wc-block-cart-item__image img {
        width: 60px;
        height: 60px;
    }

    .wc-block-components-totals-footer-item {
        font-size: 16px;
    }

    .wc-block-cart__submit-button {
        width: 100%;
        padding: 12px 0;
    }
}/* End custom CSS */