

.product-summary-wrapper{
    max-width: 1000px;
    width: 100%;
    box-shadow: 0px 0px 10px 0px rgba(187, 187, 187, 0.5);
    padding: 15px;
    margin-top: 20px;
}

.product-summary-container{
    display: flex;
    gap: 20px;
    border: 1px solid #c9c9c97a;
    padding: 10px;
    align-items: center;
    margin-bottom: 10px;
}

.product-image-wrap{
    max-width: 70px;
    height: 70px;
    width: 100%;
}

.product-image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.product-checkout-desc-wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}


.cart-counter-wrapper{
    background-color: #dfdbdb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:  5px;
    width: 150px;
    margin-top: 10px;
    border-radius: 30px;
}

.checkout-counter-wrapper{
    width: 120px;
    border: 1px solid #c9c9c97a;
    background-color: #fff;
}


.count-handler{
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
    outline: none;
    border: none;

}

.checkout-handler{
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.8rem !important;
}

.count-handler:hover{
    background-color:  var(--primary-color);
    color: #fff;
}

.add-more-button{
    border: 1px solid #c9c9c97a;
    background: transparent;
    margin-top: 7px;
    padding: 7px 12px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    outline: none;
   
}

.add-more-button:hover{
    background-color:  var(--primary-color);
    color: #fff;
}

.cart-action-wrap{
    gap: 15px !important;
}



.pay-btn{
    background-color:  rgb(53, 182, 96);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    outline: none;
    margin-top: 10px;
    font-weight: 700;
}

.pay-btn:hover{
    background-color:  rgb(28, 139, 28);
}

.back-btn{
    padding: 10px 20px;
    border: 1px solid #c9c9c97a;
    border-radius: 5px;
    margin-top: 10px;
    background: transparent;
}


.back-btn:hover{
    background-color:  var(--primary-color);
    color: #fff;
}

.delete-icon-wrapper i{
     opacity: 0.7;
}

.delete-icon-wrapper i:hover{
    opacity: 1;
    color: var(--secondary-color);
}


@media screen and (max-width: 576px) {
    .checkout-counter-wrapper {
        width: 93px;
        padding: 0px;
    }


    .cart-action-wrap{
        gap: 10px !important;
    }

    .product-image-wrap{
        max-width: 50px;
        height: 50px;
        width: 100%;
    }
    
    .checkout-price{
        font-size: 0.8rem !important;
    }

    .checkout-product-name{
        font-size: 0.8rem !important;
    }


    .checkout-counter{
        font-size: 0.8rem !important;
    }
    
.checkout-handler{
   font-size: 1.2rem !important;
}

.delete-icon-wrapper{
    font-size: 0.8rem !important;
}

.pay-btn, .back-btn, .add-more-button{
    font-size: 0.8rem !important;
}

}

@media screen and (max-width: 485px) {
    .product-checkout-desc-wrap{
        flex-direction: column;
        align-items: flex-start !important;
        position: relative;
    }

    .delete-icon-wrapper{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 10px;
        
    }
    
}