.elementor-3457 .elementor-element.elementor-element-ce194d8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:30px;--padding-bottom:50px;--padding-left:10px;--padding-right:10px;}.elementor-3457 .elementor-element.elementor-element-3aafab6{--display:flex;}@media(max-width:767px){.elementor-3457 .elementor-element.elementor-element-ce194d8{--padding-top:30px;--padding-bottom:0px;--padding-left:10px;--padding-right:10px;}}@media(min-width:768px){.elementor-3457 .elementor-element.elementor-element-ce194d8{--content-width:1320px;}}/* Start custom CSS for container, class: .elementor-element-ce194d8 *//* ========================================================
   1. Primary Button: Proceed to Checkout Styling
   ======================================================== */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    background-color: #017DA5 !important; /* Brand Blue */
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 14px 30px !important;
    border-radius: 5px !important; /* Matching 5px Rounded Corners */
    text-transform: none !important;
    transition: all 0.3s ease !important;
    display: block !important;
    text-align: center !important;
    border: none !important;
    box-shadow: none !important;
}

/* Hover state for Proceed to Checkout */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    background-color: #01688a !important; /* Darker Blue on Hover */
    transform: translateY(-1px);
}

/* ========================================================
   2. Secondary Buttons: Update Cart & Apply Coupon Styling
   ======================================================== */
.woocommerce-cart button[name="update_cart"],
.woocommerce-cart button[name="apply_coupon"] {
    background-color: transparent !important;
    color: #017DA5 !important;
    border: 1px solid #017DA5 !important; /* Outline Style */
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 12px 24px !important;
    border-radius: 5px !important; /* Matching 5px Rounded Corners */
    text-transform: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

/* Hover state for Secondary Buttons */
.woocommerce-cart button[name="update_cart"]:hover:not([disabled]),
.woocommerce-cart button[name="apply_coupon"]:hover {
    background-color: #017DA5 !important;
    color: #ffffff !important;
}

/* Disabled state for Update Cart */
.woocommerce-cart button[name="update_cart"]:disabled {
    opacity: 0.5 !important;
    color: #a0a0a0 !important;
    border-color: #d0d0d0 !important;
    background-color: transparent !important;
    cursor: not-allowed !important;
}

/* ========================================================
   3. Inputs Fields (Coupon Input & Quantity Field) Styling
   ======================================================== */
/* Quantity Input Box */
.woocommerce-cart .quantity input.qty {
    border: 1px solid #d3d3d3 !important;
    border-radius: 5px !important;
    padding: 8px 5px !important; 
    width: 65px !important;       
    min-width: 65px !important;
    text-align: center !important; 
    font-size: 15px !important;
    height: 40px !important;
    transition: border-color 0.3s ease !important;
    display: inline-block !important;
}

/* Coupon Code Input Field */
.woocommerce-cart #coupon_code {
    border: 1px solid #d3d3d3 !important;
    border-radius: 5px !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    height: 44px !important;
    transition: border-color 0.3s ease !important;
}

/* Input Focus state */
.woocommerce-cart #coupon_code:focus,
.woocommerce-cart .quantity input.qty:focus {
    border-color: #017DA5 !important;
    outline: none !important;
}

/* ========================================================
   4. Remove (X) Link Styling
   ======================================================== */
.woocommerce-cart a.remove {
    color: #ff5252 !important; /* Red close icon */
    font-size: 22px !important;
    transition: all 0.2s ease !important;
}

.woocommerce-cart a.remove:hover {
    background-color: #fff0f0 !important;
    color: #d32f2f !important;
    border-radius: 50% !important;
}

/* ========================================================
   5. Mobile Responsive Layout Fixes (767px and below)
   ======================================================== */
@media (max-width: 767px) {
    /* Pure product row ko ek card ki shakal mein dhalne ke liye */
    .woocommerce-cart table.shop_table_responsive tr.cart_item {
        position: relative !important;
        padding: 45px 15px 15px 15px !important; /* Top space for absolute close button */
        margin-bottom: 20px !important;
        border: 1px solid #ebebeb !important;
        border-radius: 8px !important;
        background-color: #ffffff !important;
        display: block !important;
    }

    /* Vertical Gaps/Spacings ko kam karne ke liye */
    .woocommerce-cart table.shop_table_responsive tr td {
        padding: 8px 0 !important; /* Minimal spacing between rows inside card */
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: right !important;
        border-bottom: 1px solid #f3f3f3 !important; /* Halka divider */
    }

    /* Last row cell ka divider khatam karne ke liye */
    .woocommerce-cart table.shop_table_responsive tr td:last-child {
        border-bottom: none !important;
    }

    /* Left-side labels ki styling (Product, Price, etc.) */
    .woocommerce-cart table.shop_table_responsive tr td::before {
        font-weight: 600 !important;
        color: #333333 !important;
        text-align: left !important;
        font-size: 14px !important;
    }

    /* Cross (X) icon ko absolute top-right par alignment dene ke liye */
    .woocommerce-cart table.shop_table_responsive tr td.product-remove {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        padding: 0 !important;
        border: none !important;
        width: auto !important;
        display: block !important;
    }

    .woocommerce-cart table.shop_table_responsive tr td.product-remove::before {
        display: none !important; /* Mobile label ko hide kiya */
    }

    /* Product Thumbnail ke aas-paas ka space theek karne ke liye */
    .woocommerce-cart table.shop_table_responsive tr td.product-thumbnail {
        justify-content: space-between !important;
    }

    .woocommerce-cart table.shop_table_responsive tr td.product-thumbnail::before {
        content: "Product Image" !important;
        font-weight: 600 !important;
    }

    .woocommerce-cart table.shop_table_responsive tr td.product-thumbnail img {
        width: 45px !important;
        height: 45px !important;
        border-radius: 4px !important;
    }

    /* Quantity input align theek karne ke liye */
    .woocommerce-cart table.shop_table_responsive tr td.product-quantity {
        justify-content: space-between !important;
    }

    .woocommerce-cart table.shop_table_responsive tr td.product-quantity .quantity {
        margin: 0 !important;
    }

    /* Coupon fields ko mobile par stack (ek ke niche ek) karne ke liye */
    .woocommerce-cart .coupon {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .woocommerce-cart #coupon_code,
    .woocommerce-cart button[name="apply_coupon"] {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Action buttons (Update Cart) layout */
    .woocommerce-cart .actions {
        padding: 15px 0 !important;
        text-align: center !important;
    }

    .woocommerce-cart button[name="update_cart"] {
        width: 100% !important;
    }
}/* End custom CSS */