.elementor-1482 .elementor-element.elementor-element-9659c13{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-2a519246 *//* =========================================
   ESTAILO STYLE CART PAGE (Global)
   ========================================= */

/* 1. FONTS & COLORS */
.woocommerce-cart .entry-content {
    font-family: 'Nunito Sans', sans-serif;
    background-color: #f9f9f9; /* Light Grey Background */
}

/* 2. LAYOUT CONTAINER (Desktop) */
@media (min-width: 921px) {
    .woocommerce-cart .woocommerce {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: flex-start;
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* Left Side: Product List */
    .woocommerce-cart .woocommerce-cart-form {
        flex: 1 1 60%;
        background: #fff;
        padding: 30px;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    }

    /* Right Side: Cart Totals (Sticky) */
    .woocommerce-cart .cart-collaterals {
        flex: 1 1 30%;
        position: sticky;
        top: 100px; /* Header height ke hisaab se adjust karein */
    }
}

/* 3. PRODUCT TABLE STYLING */
.woocommerce-cart table.cart {
    border: none !important;
    border-radius: 0 !important;
}

.woocommerce-cart table.cart thead {
    background: #fdf0f5; /* Light Pink Header */
    color: #000;
}
.woocommerce-cart table.cart thead th {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px !important;
    border: none !important;
}

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

/* Product Image */
.woocommerce-cart table.cart img {
    width: 90px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Product Name */
.woocommerce-cart table.cart td.product-name a {
    color: #000;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
}

/* Price */
.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart td.product-subtotal {
    font-weight: 800;
    color: #ff146e; /* Pink Price */
    font-size: 15px;
}

/* Remove Icon (X) */
.woocommerce-cart table.cart td.product-remove a.remove {
    color: #999 !important;
    background: #fff !important;
    border: 1px solid #eee;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 22px;
    font-size: 16px;
    transition: all 0.3s;
}
.woocommerce-cart table.cart td.product-remove a.remove:hover {
    background: #ff146e !important;
    color: #fff !important;
    border-color: #ff146e;
}

/* 4. CART TOTALS BOX (Right Side) */
.cart-collaterals .cart_totals {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 100% !important;
    float: none !important;
}

.cart-collaterals h2 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.cart-collaterals table.shop_table {
    border: none !important;
    border-radius: 0 !important;
}
.cart-collaterals table.shop_table th {
    font-weight: 600;
    color: #666;
}
.cart-collaterals table.shop_table tr.order-total th,
.cart-collaterals table.shop_table tr.order-total td {
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: #000;
    font-weight: 800;
    font-size: 18px;
}

/* 5. CHECKOUT BUTTON */
.wc-proceed-to-checkout a.checkout-button {
    background-color: #ff146e !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 16px 30px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    width: 100%;
    display: block;
    text-align: center;
    box-shadow: 0 4px 0 #bf0045;
    transition: all 0.2s;
    margin-top: 15px;
}
.wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #bf0045;
}


/* =========================================
   MOBILE SPECIFIC (APP-LIKE FEEL)
   ========================================= */
@media (max-width: 767px) {
    .woocommerce-cart .woocommerce {
        padding: 10px;
        padding-bottom: 80px; /* Space for sticky button */
    }

    /* Hide Table Headers */
    .woocommerce-cart table.cart thead {
        display: none;
    }

    /* Make Rows into Cards */
    .woocommerce-cart table.cart tbody tr.cart_item {
        display: grid;
        grid-template-columns: 90px 1fr 30px; /* Image | Details | Remove */
        grid-template-rows: auto auto auto;
        gap: 10px;
        background: #fff;
        margin-bottom: 15px;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
        border: 1px solid #f0f0f0;
        align-items: start;
        position: relative;
    }

    /* 1. Image Position */
    .woocommerce-cart table.cart td.product-thumbnail {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
        border: none !important;
        padding: 0 !important;
    }
    .woocommerce-cart table.cart td.product-thumbnail img {
        width: 100% !important;
        height: auto;
        border-radius: 8px;
    }

    /* 2. Product Name Position */
    .woocommerce-cart table.cart td.product-name {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
        border: none !important;
        padding: 0 !important;
    }
    .woocommerce-cart table.cart td.product-name a {
        font-size: 14px;
        line-height: 1.3;
    }

    /* 3. Price Position */
    .woocommerce-cart table.cart td.product-price {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        border: none !important;
        padding: 5px 0 0 0 !important;
        font-size: 14px;
        color: #666;
    }

    /* 4. Quantity & Subtotal Position */
    .woocommerce-cart table.cart td.product-quantity {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
        border: none !important;
        padding: 10px 0 0 0 !important;
        display: flex;
        align-items: center;
    }
    
    /* Hide Subtotal on Mobile Card (Clean Look) */
    .woocommerce-cart table.cart td.product-subtotal {
        display: none; 
    }

    /* 5. Remove Button (Top Right) */
    .woocommerce-cart table.cart td.product-remove {
        grid-column: 3 / 4;
        grid-row: 1 / 2;
        border: none !important;
        padding: 0 !important;
        text-align: right;
    }
    
    /* --- STICKY CHECKOUT BUTTON (ESTAILO STYLE) --- */
    .cart-collaterals {
        margin-top: 20px;
    }
    
    /* Floating Bottom Bar Container */
    .wc-proceed-to-checkout {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 15px 20px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        z-index: 999;
        display: flex;
        justify-content: center;
    }
    
    /* Full Width Sticky Button */
    .wc-proceed-to-checkout a.checkout-button {
        margin: 0;
        width: 100%;
        font-size: 15px !important;
        padding: 14px !important;
    }
    
    /* Ensure footer doesn't hide content */
    body {
        margin-bottom: 60px;
    }
}/* End custom CSS */