.custom-quantity-cart-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /*margin: 20px 0;*/
}

.custom-quantity-cart-wrapper .custom-quantity-box {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: calc(50% - 7.5px);
}

.custom-quantity-cart-wrapper .qty-btn {
    background: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.custom-quantity-cart-wrapper .qty-btn img {
    width:25px;
}

.custom-quantity-cart-wrapper .qty-btn:hover {
    background: #e8e8e8;
}

.custom-quantity-cart-wrapper .qty-input {
    border: none;
    text-align: center;
    flex: 1;
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
    width: 100%;
}

.custom-quantity-cart-wrapper .custom-add-to-cart {
    padding: 12px 24px;
    border: solid 1px #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    background: #fff;
    color: #0a0c37;
    text-transform: uppercase;
    width: calc(50% - 7.5px);
}

.custom-quantity-cart-wrapper .custom-buy-now {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    background: #720014;
    color: white;
    width: 100%;
    order: 3;
}
.custom-quantity-cart-wrapper .custom-buy-now:hover {
    background: #04093c;
}

.custom-quantity-cart-wrapper .custom-buy-now img {
    width: 20px;
    margin-left:20px;
    transition:all 0.5s ease-in-out;
}

.custom-quantity-cart-wrapper .custom-buy-now:hover img {
    width: 20px;
    transform: translateX(10px);
    transition:all 0.5s ease-in-out;
}
