.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 CART TYPOGRAPHY & LAYOUT
   ========================================= */
.woocommerce-cart .entry-content {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #334155;
}

/* =========================================
   2. BEAUTIFY THE PRODUCT TABLE (Fixed Borders)
   ========================================= */
.woocommerce-cart table.cart {
    border-collapse: separate !important; 
    border-spacing: 0 !important;
    border: 1px solid #e2e8f0 !important; /* <--- REMOVE THIS LINE */
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.04) !important;
    background: #ffffff;
    margin-bottom: 40px !important;
    width: 100% !important;
}

.woocommerce-cart table.cart thead {
    background-color: #f8fafc;
}

.woocommerce-cart table.cart th {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px !important;
    color: #64748b !important;
    font-weight: 800 !important;
    
    /* ADD THESE TO KILL THE THICK BORDERS */
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #e2e8f0 !important; /* Keep only the bottom line */
}

.woocommerce-cart table.cart td {
    padding: 25px 20px !important;
    vertical-align: middle !important;
    
    /* ADD THESE TO KILL THE THICK BORDERS */
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid #f1f5f9 !important; /* Keep only the row divider */
}

/* Remove bottom border from the very last row to prevent doubling with the outer border */
.woocommerce-cart table.cart tr:last-child td {
    border-bottom: none !important;
}

/* =========================================
   3. PRODUCT IMAGES, NAMES & PRICING
   ========================================= */
.woocommerce-cart table.cart img {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.woocommerce-cart table.cart .product-name a {
    color: #0A192F !important; /* Shamal Navy */
    font-weight: 800 !important;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.woocommerce-cart table.cart .product-name a:hover {
    color: #5185b3 !important;
}

.woocommerce-cart table.cart .product-price,
.woocommerce-cart table.cart .product-subtotal {
    color: #0A192F !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

/* =========================================
   4. QUANTITY INPUT STYLING
   ========================================= */
.woocommerce-cart .quantity input.qty {
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 10px !important;
    width: 70px !important;
    text-align: center;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    color: #0A192F;
    background: #f8fafc;
    transition: all 0.3s ease;
}

.woocommerce-cart .quantity input.qty:focus {
    border-color: #5185b3 !important;
    background: #ffffff;
    outline: none !important;
}

/* =========================================
   5. REMOVE BUTTON (X)
   ========================================= */
.woocommerce-cart table.cart .product-remove a.remove {
    color: #94a3b8 !important; /* Soft grey default */
    background: transparent !important;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 28px;
    font-size: 22px;
    font-weight: 400;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
}

.woocommerce-cart table.cart .product-remove a.remove:hover {
    background: #fee2e2 !important; /* Light red background */
    color: #ef4444 !important; /* Solid red X */
}

/* =========================================
   6. COUPON & UPDATE SECTION (Bottom Row)
   ========================================= */
.woocommerce-cart td.actions {
    background: #fcfcfd !important;
    padding: 20px 25px !important;
}

.woocommerce-cart .coupon {
    display: flex;
    align-items: center;
    gap: 12px;
    float: left;
}

.woocommerce-cart .coupon input.input-text {
    padding: 14px 20px !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 50px !important; /* Pill input */
    width: 220px !important;
    font-family: 'Inter', sans-serif;
}

/* Secondary Action Buttons (Pill Style) */
.woocommerce-cart button[name="apply_coupon"],
.woocommerce-cart button[name="update_cart"] {
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer;
}

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

.woocommerce-cart button[name="apply_coupon"]:hover {
    background-color: #5185b3 !important;
    transform: translateY(-2px);
}

.woocommerce-cart button[name="update_cart"] {
    background-color: #f1f5f9 !important;
    color: #64748b !important;
    float: right;
}

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

/* =========================================
   7. CART COLLATERALS (Flexbox Layout Fix)
   ========================================= */
.cart-collaterals {
    display: flex !important;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 30px;
}

.cart-collaterals .cross-sells {
    flex: 1; /* Automatically takes available space */
    min-width: 50%;
}

/* =========================================
   8. CART TOTALS CARD (The Right Side)
   ========================================= */
.cart-collaterals .cart_totals {
    flex: 0 0 400px; /* Fixed width, won't shrink */
    float: none !important; /* Disabling the old float */
    width: 100% !important;
    max-width: 450px;
    background: #ffffff !important;
    padding: 35px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.06) !important;
    border: 1px solid #e2e8f0 !important;
}

.cart-collaterals .cart_totals h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #0A192F !important;
    text-transform: uppercase;
    margin-bottom: 20px !important;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

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

.cart-collaterals table.shop_table th {
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    color: #64748b !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    text-align: left !important;
}

.cart-collaterals table.shop_table td {
    text-align: right !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 800 !important;
    color: #0A192F !important;
    padding: 15px 0 !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Proceed to Checkout Button */
.wc-proceed-to-checkout .checkout-button {
    background-color: #0A192F !important; /* Shamal Navy */
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px !important;
    border-radius: 50px !important; /* Perfect Pill */
    width: 100%;
    display: block;
    margin-top: 25px;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background-color: #5185b3 !important; /* Shamal Azure */
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(10, 25, 47, 0.15) !important;
}

/* =========================================
   9. CROSS-SELL PRODUCT CARDS
   ========================================= */
.cross-sells > h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #0A192F !important;
    margin-bottom: 25px !important;
    text-transform: uppercase !important;
}

.cross-sells ul.products li.product {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.cross-sells ul.products li.product:hover {
    box-shadow: 0 12px 30px rgba(10, 25, 47, 0.08) !important;
    transform: translateY(-5px);
    border-color: #cbd5e1 !important;
}

.cross-sells ul.products li.product img {
    border-radius: 8px !important;
    margin-bottom: 15px !important;
    background-color: #f8fafc !important;
}

.cross-sells ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    color: #0A192F !important;
    margin: 0 0 15px 0 !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

.cross-sells ul.products li.product .button {
    margin-top: auto !important; 
    display: block !important;
    width: 100% !important;
    background-color: #0A192F !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 12px 0 !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
}

.cross-sells ul.products li.product .button:hover {
    background-color: #5185b3 !important;
}

/* Cleanup empty WooCommerce tags */
.cross-sells ul.products li.product p { margin: 0 !important; padding: 0 !important; }
.cross-sells ul.products li.product br { display: none !important; }

/* =========================================
   10. MOBILE OPTIMIZATION
   ========================================= */
@media (max-width: 992px) {
    .cart-collaterals {
        flex-direction: column;
    }
    .cart-collaterals .cross-sells,
    .cart-collaterals .cart_totals {
        flex: 1 1 100%;
        width: 100% !important;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .woocommerce-cart .coupon {
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
    }
    .woocommerce-cart .coupon input.input-text {
        width: 100% !important;
    }
    .woocommerce-cart button[name="apply_coupon"],
    .woocommerce-cart button[name="update_cart"] {
        width: 100%;
        float: none;
    }
}



/* =========================================
   EMPTY CART & NOTIFICATION UI
   ========================================= */

/* 1. CENTER THE ENTIRE EMPTY CART VIEW */
.woocommerce-cart .woocommerce {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* 2. THE EMPTY CART MESSAGE CARD */
.cart-empty.woocommerce-info {
    background: #ffffff !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 12px !important;
    padding: 60px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #0A192F !important;
    box-shadow: 0 10px 30px rgba(10, 25, 47, 0.04) !important;
    margin-bottom: 30px !important;
    display: block !important; 
    text-align: center !important;
}

/* Remove default WooCommerce icon from the info box */
.cart-empty.woocommerce-info::before {
    display: none !important;
}

/* 3. RETURN TO SHOP BUTTON (Navy Pill) */
.return-to-shop {
    text-align: center;
    margin-top: 10px;
}

.return-to-shop .button.wc-backward {
    display: inline-block !important;
    background-color: #0A192F !important; /* Shamal Navy */
    color: #ffffff !important;
    padding: 16px 45px !important;
    border-radius: 50px !important; /* Perfect Pill */
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(10, 25, 47, 0.1) !important;
}

.return-to-shop .button.wc-backward:hover {
    background-color: #5185b3 !important; /* Shamal Azure */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 25, 47, 0.15) !important;
}

/* Remove any stray br tags Phlox/WooCommerce injects */
.return-to-shop .button.wc-backward br {
    display: none !important;
}/* End custom CSS */