.elementor-992 .elementor-element.elementor-element-e673a3f{--display:flex;}body.elementor-page-992:not(.elementor-motion-effects-element-type-background), body.elementor-page-992 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}/* Start custom CSS *//* =========================================
   MYNTRA STYLE CART UI – FINAL COMPLETE CSS v3.0
   Fixes: savings banner sidebar issue + popup styling
   Compatible: Elementor + WPR Cart + WooCommerce
========================================= */

/* ===== HIDE DEFAULT TABLE DESIGN ===== */
.wpr-shop-table thead,
.wpr-shop-table .product-price,
.wpr-shop-table .product-subtotal {
    display: none !important;
}

.wpr-shop-table {
    border: none !important;
}

.wpr-shop-table tr {
    border: none !important;
}

/* ===== CART ROW AS CARD DESIGN ===== */
.woocommerce-cart-form__cart-item.cart_item {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    border-radius: 18px !important;
    padding: 20px !important;
    margin-bottom: 18px !important;
    border: 1px solid #eaeaec !important;
    position: relative !important;
}

/* ===== PRODUCT IMAGE (LEFT) ===== */
.product-thumbnail {
    width: 140px !important;
    min-width: 140px !important;
}

.product-thumbnail img {
    width: 140px !important;
    height: 140px !important;
    object-fit: cover !important;
    border-radius: 8px !important;
}

/* ===== PRODUCT NAME SECTION ===== */
.product-name {
    flex: 1 !important;
    padding-right: 220px !important;
}

.product-name a {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #000000 !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 6px !important;
}

/* ===== DELIVERY TEXT ===== */
.myntra-meta {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #7e818c !important;
    margin-top: 8px !important;
    display: flex !important;
    align-items: center !important;
}

.myntra-meta::before {
    content: "✓" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 19px !important;
    height: 19px !important;
    background: #e7f5ec !important;
    color: #03a685 !important;
    border-radius: 50% !important;
    margin-right: 12px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
}

/* ===== CONTROLS (SIZE + QTY) ===== */
.myntra-controls {
    width: 230px;
    display: flex !important;
    gap: 14px !important;
    margin-top: 14px !important;
}

.myntra-size,
.myntra-qty {
    height: 34px !important;
    padding: 0 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    border: 1px solid #E3E5E9 !important;
    background: #fff !important;
    color: #282c3f !important;
    min-width: 100px !important;
    box-shadow: none !important;
    outline: none !important;
}

.myntra-size {
    pointer-events: none !important;
    background: #f5f5f6 !important;
    cursor: default !important;
}

.myntra-qty {
    cursor: pointer !important;
}

.myntra-qty:focus {
    border-color: #282c3f !important;
}

/* ===== RATING BADGE ON IMAGE ===== */
.myntra-rating {
    position: absolute !important;
    left: 35px !important;
    bottom: 25px !important;
    background: rgba(255,255,255,0.95) !important;
    padding: 6px 12px !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #000 !important;
    backdrop-filter: blur(4px) !important;
}

/* ===== PRICE BOX (RIGHT SIDE) ===== */
.myntra-price-box {
    position: absolute !important;
    right: 25px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    text-align: right !important;
    min-width: 180px !important;
}

.myntra-price-line {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: flex-end !important;
}

.myntra-sale {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #000 !important;
}

.myntra-mrp {
    font-size: 16px !important;
    color: #919191 !important;
    text-decoration: line-through !important;
    font-weight: 500 !important;
}

.myntra-saving {
    color: #00882B !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

/* ===== REMOVE BUTTON (CROSS ICON TOP RIGHT) ===== */
.product-remove {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
}

.product-remove a {
    font-size: 26px !important;
    color: #7e818c !important;
    text-decoration: none !important;
    font-weight: 700 !important;
}

.product-remove a:hover {
    color: #ff3f6c !important;
}

/* ===== QUANTITY INPUT (HIDDEN BUT WORKING BACKEND) ===== */
.product-quantity .quantity {
    display: none !important;
}

/* ===== TABLE CELLS CLEANUP ===== */
.wpr-shop-table td {
    border: none !important;
    background: transparent !important;
}

/* ===== TOTAL SAVINGS BANNER – FIXED POSITION (not sidebar) ===== */
/* Force the banner to sit inline above the cart table, not float */
#myntra-total-savings-banner {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: #e8f5e9 !important;
    border: 1.5px solid #a5d6a7 !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    margin: 0 0 20px 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #1b5e20 !important;
    /* CRITICAL: override any Elementor column/float behaviour */
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    position: relative !important;
    float: none !important;
    clear: both !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
}

/* ===== POPUP BUTTON HOVER STATES ===== */
#myntra-confirm-yes:hover {
    background: #e03660 !important;
}

#myntra-confirm-no:hover {
    background: #f5f5f6 !important;
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 768px) {

    .woocommerce-cart-form__cart-item.cart_item {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 16px !important;
    }

    .product-thumbnail img {
        width: 100% !important;
        height: auto !important;
    }

    .product-name {
        padding-right: 0 !important;
        width: 100% !important;
    }

    .myntra-price-box {
        position: static !important;
        transform: none !important;
        text-align: left !important;
        margin-top: 10px !important;
    }

    .myntra-sale {
        font-size: 24px !important;
    }

    .myntra-mrp {
        font-size: 20px !important;
    }

    .myntra-saving {
        font-size: 18px !important;
        text-align: right !important;
    }

    .myntra-controls {
        width: 100% !important;
        gap: 10px !important;
    }

    .myntra-size,
    .myntra-qty {
        flex: 1 !important;
        min-width: auto !important;
    }

    #myntra-total-savings-banner {
        font-size: 13px !important;
        padding: 12px 14px !important;
    }
}/* End custom CSS */