.elementor-11 .elementor-element.elementor-element-d9e9ab9{--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:5px;--padding-bottom:200px;--padding-left:5px;--padding-right:5px;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-81ef76a *//* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;500;600;700&display=swap');

/* =========================
   WRAPPER
========================= */
.custom-cart-wrapper{
    max-width: 1000px;
    margin: 30px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    font-family: 'Hind Siliguri', sans-serif;
}

/* HEADER */
.custom-cart-header{
    padding: 18px;
    background: linear-gradient(135deg,#ff3d3d,#ff7a18);
    color: #fff;
    text-align: center;
}

.custom-cart-header h2{
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

/* BODY */
.custom-cart-body{
    padding: 10px;
}

/* CART ITEM */
.cart-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-bottom: 1px solid #eee;
}

/* IMAGE */
.cart-img img{
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 12px;
}

/* INFO */
.cart-info{
    flex: 2;
}

.cart-info h3{
    font-size: 14px;
    margin: 0 0 5px;
    font-weight: 600;
}

.cart-price{
    font-size: 13px;
    color: #444;
}

/* SAVE BADGE */
.save-badge{
    display: inline-block;
    margin-top: 5px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 50px;
    background: #eaffea;
    color: #1a7f1a;
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse{
    0%{transform: scale(1);}
    50%{transform: scale(1.05);}
    100%{transform: scale(1);}
}

/* QTY + SUBTOTAL */
.cart-qty{
    font-weight: 600;
}

.cart-subtotal{
    font-weight: 600;
}

/* REMOVE */
.cart-remove a{
    color: red;
    font-size: 18px;
    text-decoration: none;
}

/* FOOTER */
.cart-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.cart-total{
    font-size: 16px;
    font-weight: 600;
}

.cart-checkout-btn{
    background: #ff3d3d;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cart-checkout-btn:hover{
    background: #e60000;
    transform: translateY(-2px);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px){

    .cart-item{
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 10px;
    }

    .cart-img img{
        width: 55px;
        height: 55px;
    }

    .cart-info{
        flex: 1;
        min-width: 120px;
    }

    .cart-info h3{
        font-size: 12px;
        margin: 0 0 3px;
        line-height: 1.2;
    }

    .cart-price{
        font-size: 11px;
    }

    .cart-qty,
    .cart-subtotal{
        font-size: 12px;
        white-space: nowrap;
    }

    .save-badge{
        font-size: 10px;
        padding: 3px 8px;
    }

    .cart-remove a{
        font-size: 16px;
    }

    /* ✅ MOBILE FOOTER CENTER FIX */
    .cart-footer{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .cart-total{
        width: 100%;
        text-align: center;
        font-size: 18px;
    }

    .cart-checkout-btn{
        width: 100%;
        text-align: center;
    }
}/* End custom CSS */