.elementor-400 .elementor-element.elementor-element-37f6d291{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;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 );}@media(min-width:768px){.elementor-400 .elementor-element.elementor-element-37f6d291{--content-width:1450px;}}/* Start custom CSS for container, class: .elementor-element-37f6d291 *//* 1. GENERAL CONTAINER & TYPOGRAPHY */
.woocommerce-cart .entry-content {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #334155;
}

/* 2. BEAUTIFY THE PRODUCT TABLE */
.woocommerce-cart table.cart {
    border: none !important;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    background: #ffffff;
    margin-bottom: 40px !important;
}

.woocommerce-cart table.cart thead {
    background-color: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.woocommerce-cart table.cart th {
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px !important;
    color: #64748b !important;
    font-weight: 700 !important;
}

.woocommerce-cart table.cart td {
    padding: 20px !important;
    vertical-align: middle !important;
    border-top: 1px solid #f1f5f9;
}

/* 3. PRODUCT IMAGES & NAMES */
.woocommerce-cart table.cart img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.woocommerce-cart table.cart .product-name a {
    color: #0A192F !important; /* Shamal Navy */
    font-weight: 700 !important;
    text-decoration: none;
    font-size: 15px;
}

.woocommerce-cart table.cart .product-price {
    color: #5185b3; /* Shamal Azure */
    font-weight: 600;
}

/* 4. QUANTITY INPUT STYLING */
.woocommerce-cart .quantity input.qty {
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    padding: 8px !important;
    width: 60px !important;
    text-align: center;
    font-weight: 600;
    color: #0A192F;
}

/* 5. REMOVE BUTTON (X) */
.woocommerce-cart table.cart .product-remove a.remove {
    color: #ef4444 !important; /* Alert Red */
    background: #fef2f2 !important;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 22px; /* Center the X vertically */
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    text-align: center;
    transition: 0.2s;
}

.woocommerce-cart table.cart .product-remove a.remove:hover {
    background: #ef4444 !important;
    color: white !important;
}

/* 6. COUPON & UPDATE SECTION */
.woocommerce-cart td.actions {
    background: #f8fafc;
    padding: 20px !important;
}

.woocommerce-cart .coupon {
    display: flex;
    align-items: center;
    gap: 10px;
    float: left; /* Keep left alignment */
}

.woocommerce-cart .coupon input.input-text {
    padding: 12px 15px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 6px !important;
    width: 180px !important;
}

/* Update Cart Button (Disabled state handling) */
.woocommerce-cart button[name="update_cart"] {
    background-color: transparent !important;
    color: #64748b !important;
    border: 1px solid #cbd5e1 !important;
    float: right;
    font-weight: 600;
}

.woocommerce-cart button[name="update_cart"]:hover {
    background-color: #ffffff !important;
    color: #0A192F !important;
    border-color: #0A192F !important;
}

/* 7. CART TOTALS CARD (The Right Side) */
.cart-collaterals .cart_totals {
    float: right; /* Ensure it stays to the right on desktop */
    width: 40%; /* Adjust width as needed */
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
}

.cart-collaterals h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #0A192F !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.cart-collaterals table.shop_table {
    border: none !important;
    width: 100%;
}

.cart-collaterals table.shop_table th {
    font-weight: 600;
    color: #64748b;
    padding: 15px 0 !important;
}

.cart-collaterals table.shop_table td {
    text-align: right;
    font-weight: 700;
    color: #0A192F;
    padding: 15px 0 !important;
}

/* 8. PROCEED TO CHECKOUT BUTTON */
.wc-proceed-to-checkout .checkout-button {
    background-color: #0A192F !important; /* Shamal Navy */
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    padding: 18px !important;
    border-radius: 8px !important;
    width: 100%;
    display: block;
    margin-top: 15px;
    transition: transform 0.2s ease;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background-color: #5185b3 !important; /* Shamal Azure */
    transform: translateY(-2px);
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .cart-collaterals .cart_totals {
        width: 100%;
        float: none;
    }
    .woocommerce-cart .coupon {
        float: none;
        width: 100%;
        margin-bottom: 10px;
    }
    .woocommerce-cart .coupon input.input-text {
        width: 60% !important;
    }
}/* End custom CSS */