.elementor-49 .elementor-element.elementor-element-393f30ed{--display:flex;--margin-top:100px;--margin-bottom:100px;--margin-left:0px;--margin-right:0px;overflow:visible;}.elementor-widget-shortcode .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-shortcode .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS for shortcode, class: .elementor-element-2204c0f *//* 📦 CART TABLE */
.woocommerce-cart .woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
}

/* 🧾 Table Headers - Flat Orange Bar */
.woocommerce-cart table.shop_table thead th {
    background-color: #f26522;
    color: white;
    padding: 15px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0; /* 🔧 Removed rounded corners */
}

/* 🛍️ Product Rows - Clean with no borders/shadows */
.woocommerce-cart table.shop_table tbody tr {
    background: white;
    border: none;           /* 🔧 Removed row borders */
    border-radius: 0;       /* 🔧 Removed rounded corners */
    box-shadow: none;       /* 🔧 Removed shadow */
}

/* 🖼️ Product Image */
.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 100px;
    height: auto;
    border-radius: 0; /* Optional: remove img rounding */
}

/* 📘 Product Name & Description */
.woocommerce-cart table.shop_table .product-name {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.woocommerce-cart table.shop_table .product-name a {
    color: #000;
    text-decoration: none;
}

.woocommerce-cart table.shop_table .product-name a:hover {
    text-decoration: underline;
}

/* 💰 Price */
.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

/* 🗑️ Delete Icon */
.woocommerce-cart table.shop_table .product-remove a {
    color: #000;
    font-size: 22px;
    transition: 0.3s;
}

.woocommerce-cart table.shop_table .product-remove a:hover {
    color: red;
}

/* 📦 Return & Checkout Buttons */
.woocommerce .return-to-shop a.button {
    background-color: transparent;
    color: #f26522;
    border: 2px solid #f26522;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    margin-right: 15px;
    transition: 0.3s;
}

.woocommerce .return-to-shop a.button:hover {
    background-color: #f26522;
    color: #fff;
}

/* 🧾 Total Area */
.woocommerce .cart-collaterals {
    text-align: right;
    padding-top: 40px;
}

.woocommerce .cart-collaterals .order-total strong {
    font-size: 24px;
    color: #f26522;
}

/* 🧾 Total Box */
.woocommerce .cart-collaterals table.shop_table td,
.woocommerce .cart-collaterals table.shop_table th {
    border: none;
    font-size: 20px;
}

/* 🧾 Proceed to Payment Button */
.woocommerce .wc-proceed-to-checkout a.checkout-button {
    background-color: #f26522;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius:table td, table th 50px;
    font-size: 16px;
    display: inline-block;
    transition: 0.3s;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #d14e0c;
}

.woocommerce table.shop_table td{
    border: none;
}

.woocommerce-cart table.shop_table .product-thumbnail img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    
}
/* Hide quantity column in cart */
.woocommerce-cart table.shop_table th.product-quantity,
.woocommerce-cart table.shop_table td.product-quantity {
    display: none !important;
}

.coupon {
    display: none;
}

/* Replace remove × with a trash icon */
.woocommerce-cart table.shop_table td.product-remove a::before {
    content: "\1F5D1"; /* Unicode for 🗑️ */
    font-size: 22px;
    color: red;
}

.woocommerce-cart table.shop_table td.product-remove a {
    font-size: 0; /* Hide the original × text */
}

.woocommerce-page table.cart td.actions{
    display: none;
}

form.woocommerce-cart-form {
    border: 1px solid white;
    border-radius: 20px;
    overflow: hidden;
}/* End custom CSS */