.elementor-48 .elementor-element.elementor-element-1d6e6969{--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 );}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-18e60e8c *//* ================================================= */
/* WOOCOMMERCE CLEAN & NATURAL CART PAGE THEME       */
/* ================================================= */

.woocommerce-cart {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Cart Table Wrapper */
.woocommerce-cart .woocommerce-cart-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e5e7eb;
}

/* Table Header Styling */
.woocommerce-cart table.shop_table th {
    background-color: #f3f4f6 !important;
    color: #1b4332 !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none !important;
    padding: 12px !important;
}

/* Table Body Rows */
.woocommerce-cart table.shop_table td {
    padding: 15px 12px !important;
    vertical-align: middle !important;
    border-top: 1px solid #f3f4f6 !important;
    color: #374151;
}

/* Product Thumbnail Image in Cart */
.woocommerce-cart table.shop_table img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 2px;
}

/* Product Name Link */
.woocommerce-cart table.shop_table td.product-name a {
    color: #1b4332 !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.woocommerce-cart table.shop_table td.product-name a:hover {
    color: #52b788 !important;
}

/* Quantity Input Box Styling */
.woocommerce-cart .quantity input.qty {
    width: 55px !important;
    height: 40px !important;
    text-align: center;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    font-weight: 600;
    background: #f9fafb;
    font-size: 14px !important;
}

/* Remove Item 'X' Button Styling */
.woocommerce-cart table.shop_table a.remove {
    color: #ef4444 !important;
    background: #fee2e2;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.woocommerce-cart table.shop_table a.remove:hover {
    background: #ef4444 !important;
    color: #ffffff !important;
}

/* ================================================= */
/* BUTTONS ORIGINAL DESIGN WITH CUSTOM COLORS        */
/* ================================================= */

/* Apply Coupon Button Color */
.woocommerce-cart .coupon button.button {
    background: #2D5A27 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    font-weight: 600 !important;
    transition: background 0.2s ease !important;
}
.woocommerce-cart .coupon button.button:hover {
    background: #52b788 !important;
}

/* Update Cart Button Color */
.woocommerce-cart table.cart td.actions .button[name="update_cart"] {
    background: #4b5563 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    font-weight: 600 !important;
    transition: background 0.2s ease !important;
}
.woocommerce-cart table.cart td.actions .button[name="update_cart"]:hover {
    background: #374151 !important;
}

/* ================================================= */
/* CART TOTALS & PROCEED TO CHECKOUT BOX             */
/* ================================================= */

.woocommerce-cart .cart-collaterals {
    margin-top: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 24px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 18px !important;
    color: #1b4332 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Proceed to Checkout Button (Original Structure Maintained, Only Color Changed) */
.woocommerce-cart .cart_totals .checkout-button {
    background: #2D5A27 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.2s ease !important;
}

.woocommerce-cart .cart_totals .checkout-button:hover {
    background: #52b788 !important;
}


/* ================================================= */
/* MOBILE CARD VIEW (TABLE TO LIST)                  */
/* ================================================= */
@media (max-width: 768px) {
    .woocommerce-cart .woocommerce-cart-form {
        padding: 10px;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    /* Cart item table layout for mobile cards */
    .woocommerce-cart table.shop_table_responsive tr.cart_item {
        display: block;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        position: relative;
    }

    .woocommerce-cart table.shop_table_responsive tr.cart_item td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none !important;
        padding: 8px 0 !important;
        text-align: right;
    }

    .woocommerce-cart table.shop_table_responsive thead {
        display: none;
    }

    .woocommerce-cart table.shop_table_responsive td.product-thumbnail {
        justify-content: center;
        padding-bottom: 10px !important;
        border-bottom: 1px solid #f3f4f6 !important;
    }

    .woocommerce-cart table.shop_table_responsive td.product-thumbnail img {
        width: 75px !important;
        height: 75px !important;
    }

    .woocommerce-cart table.shop_table_responsive td:before {
        content: attr(data-title);
        font-weight: 600;
        color: #6b7280;
        font-size: 13px;
        text-align: left;
    }

    .woocommerce-cart table.shop_table td.product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-1d6e6969 *//* ================================================= */
/* WOOCOMMERCE CLEAN & NATURAL CART PAGE THEME       */
/* ================================================= */

.woocommerce-cart {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Cart Table Wrapper */
.woocommerce-cart .woocommerce-cart-form {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border: 1px solid #e5e7eb;
}

/* Table Header Styling */
.woocommerce-cart table.shop_table th {
    background-color: #f3f4f6 !important;
    color: #1b4332 !important;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none !important;
    padding: 12px !important;
}

/* Table Body Rows */
.woocommerce-cart table.shop_table td {
    padding: 15px 12px !important;
    vertical-align: middle !important;
    border-top: 1px solid #f3f4f6 !important;
    color: #374151;
}

/* Product Thumbnail Image in Cart */
.woocommerce-cart table.shop_table img {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 2px;
}

/* Product Name Link */
.woocommerce-cart table.shop_table td.product-name a {
    color: #1b4332 !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.woocommerce-cart table.shop_table td.product-name a:hover {
    color: #52b788 !important;
}

/* Quantity Input Box Styling */
.woocommerce-cart .quantity input.qty {
    width: 55px !important;
    height: 40px !important;
    text-align: center;
    border: 1px solid #d1d5db !important;
    border-radius: 6px !important;
    font-weight: 600;
    background: #f9fafb;
    font-size: 14px !important;
}

/* Remove Item 'X' Button Styling */
.woocommerce-cart table.shop_table a.remove {
    color: #ef4444 !important;
    background: #fee2e2;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.woocommerce-cart table.shop_table a.remove:hover {
    background: #ef4444 !important;
    color: #ffffff !important;
}

/* ================================================= */
/* BUTTONS ORIGINAL DESIGN WITH CUSTOM COLORS        */
/* ================================================= */

/* Apply Coupon Button Color */
.woocommerce-cart .coupon button.button {
    background: #2D5A27 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    font-weight: 600 !important;
    transition: background 0.2s ease !important;
}
.woocommerce-cart .coupon button.button:hover {
    background: #52b788 !important;
}

/* Update Cart Button Color */
.woocommerce-cart table.cart td.actions .button[name="update_cart"] {
    background: #4b5563 !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    font-weight: 600 !important;
    transition: background 0.2s ease !important;
}
.woocommerce-cart table.cart td.actions .button[name="update_cart"]:hover {
    background: #374151 !important;
}

/* ================================================= */
/* CART TOTALS & PROCEED TO CHECKOUT BOX             */
/* ================================================= */

.woocommerce-cart .cart-collaterals {
    margin-top: 30px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 24px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03) !important;
    width: 100% !important;
    float: none !important;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 18px !important;
    color: #1b4332 !important;
    font-weight: 700 !important;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

/* Proceed to Checkout Button (Original Structure Maintained) */
.woocommerce-cart .cart_totals .checkout-button {
    background: linear-gradient(135deg, #2D5A27 0%, #1b4332 100%) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(45, 90, 39, 0.2) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.woocommerce-cart .cart_totals .checkout-button:hover {
    background: linear-gradient(135deg, #52b788 0%, #2D5A27 100%) !important;
    transform: translateY(-1px);
}


/* ================================================= */
/* MOBILE CARD VIEW (TABLE TO LIST)                  */
/* ================================================= */
@media (max-width: 768px) {
    .woocommerce-cart .woocommerce-cart-form {
        padding: 10px;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    /* Cart item table layout for mobile cards */
    .woocommerce-cart table.shop_table_responsive tr.cart_item {
        display: block;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 10px;
        margin-bottom: 15px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        position: relative;
    }

    .woocommerce-cart table.shop_table_responsive tr.cart_item td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none !important;
        padding: 8px 0 !important;
        text-align: right;
    }

    .woocommerce-cart table.shop_table_responsive thead {
        display: none;
    }

    .woocommerce-cart table.shop_table_responsive td.product-thumbnail {
        justify-content: center;
        padding-bottom: 10px !important;
        border-bottom: 1px solid #f3f4f6 !important;
    }

    .woocommerce-cart table.shop_table_responsive td.product-thumbnail img {
        width: 75px !important;
        height: 75px !important;
    }

    .woocommerce-cart table.shop_table_responsive td:before {
        content: attr(data-title);
        font-weight: 600;
        color: #6b7280;
        font-size: 13px;
        text-align: left;
    }

    .woocommerce-cart table.shop_table td.product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
    }
}/* End custom CSS */