/*
|--------------------------------------------------------------------------
| GLOBAL CART SPACING
|--------------------------------------------------------------------------
*/

.swiggy-cart {
    margin-bottom: 15px;
}

/*
|--------------------------------------------------------------------------
| HOME / SHOP / CATEGORY
|--------------------------------------------------------------------------
*/

.product .swiggy-cart {
    width: 180px;
    margin: 0 auto 15px !important;
    display: block;
}

/*
|--------------------------------------------------------------------------
| SINGLE PRODUCT PAGE
|--------------------------------------------------------------------------
*/

.single-product .swiggy-cart,
.woocommerce div.product .swiggy-cart {
    width: 180px;
    display: inline-block;
    vertical-align: middle;
}

/*
|--------------------------------------------------------------------------
| ALIGN SINGLE PRODUCT
|--------------------------------------------------------------------------
*/

.single-product form.cart .swiggy-cart,
.woocommerce div.product form.cart .swiggy-cart {
    margin-left: 10px;
}

/*
|--------------------------------------------------------------------------
| ADD BUTTON
|--------------------------------------------------------------------------
*/

.swiggy-cart .add-btn.button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

/*
|--------------------------------------------------------------------------
| QUANTITY BOX
|--------------------------------------------------------------------------
*/

.qty-box {
    width: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 6px;
}

/*
|--------------------------------------------------------------------------
| BUTTONS + QTY
|--------------------------------------------------------------------------
*/

.qty-box .button,
.qty {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0;
    border-radius: 0 !important;
    min-height: 42px;
}

/*
|--------------------------------------------------------------------------
| QUANTITY TEXT
|--------------------------------------------------------------------------
*/

.qty {
    font-weight: 600;
    font-size: 16px;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

/*
|--------------------------------------------------------------------------
| MOBILE RESPONSIVE
|--------------------------------------------------------------------------
*/

@media (max-width: 767px) {

    .product .swiggy-cart,
    .single-product .swiggy-cart,
    .woocommerce div.product .swiggy-cart {
        width: 130px;
    }

    .qty-box .button,
    .qty,
    .swiggy-cart .add-btn.button {
        min-height: 38px;
        font-size: 14px;
    }

    .qty {
        font-size: 14px;
    }
}